X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=CMakeLists.txt;h=4ee8d204007464003038419c351b6bd3f6da6e02;hb=7b9ffe4a6db2e59c18510aac4ba30902653e13eb;hp=327a6935c56a0fe432c1c48a17e32e704cb13c6b;hpb=4b442836fcb77e6d6b731a6d6bb3f31b36bc8870;p=oota-llvm.git diff --git a/CMakeLists.txt b/CMakeLists.txt index 327a6935c56..4ee8d204007 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,8 @@ project(LLVM) cmake_minimum_required(VERSION 2.6.1) set(PACKAGE_NAME llvm) -set(PACKAGE_VERSION svn) +set(PACKAGE_VERSION 2.6svn) +set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu") if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE ) @@ -104,6 +105,17 @@ endif( EXISTS ${LLVM_TOOLS_BINARY_DIR}/llvm-config ) include(config-ix) +option(LLVM_ENABLE_PIC "Build Position-Independent Code" OFF) + +if( LLVM_ENABLE_PIC ) + if( SUPPORTS_FPIC_FLAG ) + message(STATUS "Building with -fPIC") + add_definitions(-fPIC) + else( SUPPORTS_FPIC_FLAG ) + message(STATUS "Warning: -fPIC not supported.") + endif() +endif() + set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} ) set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib ) set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib ) @@ -118,14 +130,14 @@ set(LLVM_PLO_FLAGS "" CACHE if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 ) # TODO: support other platforms and toolchains. - option(BUILD_32_BITS "Build 32 bits executables and libraries." OFF) - if( BUILD_32_BITS ) + option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF) + if( LLVM_BUILD_32_BITS ) message(STATUS "Building 32 bits executables and libraries.") add_definitions( -m32 ) - set( CMAKE_EXE_LINKER_FLAGS "-m32 ${CMAKE_EXE_LINKER_FLAGS}" ) - set( CMAKE_LINK_LIBRARY_FLAG "-m32 ${CMAKE_LINK_LIBRARY_FLAG}" ) + list(APPEND CMAKE_EXE_LINKER_FLAGS -m32) + list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32) set( LLVM_PLO_FLAGS -melf_i386 ${LLVM_PLO_FLAGS} ) - endif( BUILD_32_BITS ) + endif( LLVM_BUILD_32_BITS ) endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 ) if( MSVC ) @@ -191,6 +203,7 @@ add_subdirectory(lib/AsmParser) add_subdirectory(lib/Debugger) add_subdirectory(lib/Archive) +add_subdirectory(projects) add_subdirectory(tools) add_subdirectory(examples)