2009-04-05 00:52:02 +02:00
|
|
|
# See docs/CMake.html for instructions about how to build LLVM with CMake.
|
|
|
|
|
2008-10-30 22:22:00 +01:00
|
|
|
project(LLVM)
|
2010-08-03 17:07:17 +02:00
|
|
|
cmake_minimum_required(VERSION 2.8)
|
2008-09-22 03:08:49 +02:00
|
|
|
|
2010-08-03 19:28:09 +02:00
|
|
|
# Add path for custom modules
|
|
|
|
set(CMAKE_MODULE_PATH
|
|
|
|
${CMAKE_MODULE_PATH}
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake"
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules"
|
|
|
|
)
|
|
|
|
|
2010-09-23 16:19:21 +02:00
|
|
|
set(PACKAGE_VERSION "2.9")
|
2010-12-20 10:47:13 +01:00
|
|
|
|
2010-08-03 19:28:09 +02:00
|
|
|
include(VersionFromVCS)
|
2010-12-20 10:47:13 +01:00
|
|
|
|
|
|
|
option(LLVM_APPEND_VC_REV
|
|
|
|
"Append the version control system revision id to LLVM version" OFF)
|
|
|
|
|
|
|
|
if( LLVM_APPEND_VC_REV )
|
|
|
|
add_version_info_from_vcs(PACKAGE_VERSION)
|
|
|
|
endif()
|
2010-08-03 19:28:09 +02:00
|
|
|
|
2008-09-22 03:08:49 +02:00
|
|
|
set(PACKAGE_NAME llvm)
|
2009-01-28 18:49:03 +01:00
|
|
|
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
|
2008-10-25 05:49:35 +02:00
|
|
|
set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu")
|
2008-09-22 03:08:49 +02:00
|
|
|
|
2008-11-14 04:43:18 +01:00
|
|
|
if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE )
|
|
|
|
message(FATAL_ERROR "In-source builds are not allowed.
|
|
|
|
CMake would overwrite the makefiles distributed with LLVM.
|
|
|
|
Please create a directory and run cmake from there, passing the path
|
|
|
|
to this source directory as the last argument.
|
|
|
|
This process created the file `CMakeCache.txt' and the directory `CMakeFiles'.
|
|
|
|
Please delete them.")
|
|
|
|
endif()
|
|
|
|
|
2010-11-27 14:10:11 +01:00
|
|
|
# Run-time build mode; It is used for unittests.
|
|
|
|
if(MSVC_IDE)
|
|
|
|
# Expect "$(Configuration)", "$(OutDir)", etc.
|
|
|
|
# It is expanded by msbuild or similar.
|
|
|
|
set(RUNTIME_BUILD_MODE "${CMAKE_CFG_INTDIR}")
|
|
|
|
elseif(NOT CMAKE_BUILD_TYPE STREQUAL "")
|
|
|
|
# Expect "Release" "Debug", etc.
|
|
|
|
# Or unittests could not run.
|
|
|
|
set(RUNTIME_BUILD_MODE ${CMAKE_BUILD_TYPE})
|
|
|
|
else()
|
|
|
|
# It might be "."
|
|
|
|
set(RUNTIME_BUILD_MODE "${CMAKE_CFG_INTDIR}")
|
|
|
|
endif()
|
|
|
|
|
2009-06-03 17:11:25 +02:00
|
|
|
string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
|
|
|
|
|
2008-09-22 03:08:49 +02:00
|
|
|
set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
2008-10-29 03:33:15 +01:00
|
|
|
set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include)
|
2008-09-22 03:08:49 +02:00
|
|
|
set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
set(LLVM_TOOLS_BINARY_DIR ${LLVM_BINARY_DIR}/bin)
|
|
|
|
set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)
|
2009-06-12 04:49:53 +02:00
|
|
|
set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
|
2008-09-22 03:08:49 +02:00
|
|
|
|
2009-07-13 23:58:44 +02:00
|
|
|
if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR )
|
|
|
|
file(GLOB_RECURSE
|
|
|
|
tablegenned_files_on_include_dir
|
|
|
|
"${LLVM_MAIN_SRC_DIR}/include/llvm/*.gen")
|
|
|
|
file(GLOB_RECURSE
|
|
|
|
tablegenned_files_on_lib_dir
|
|
|
|
"${LLVM_MAIN_SRC_DIR}/lib/Target/*.inc")
|
|
|
|
if( tablegenned_files_on_include_dir OR tablegenned_files_on_lib_dir)
|
|
|
|
message(FATAL_ERROR "Apparently there is a previous in-source build,
|
|
|
|
probably as the result of running `configure' and `make' on
|
|
|
|
${LLVM_MAIN_SRC_DIR}.
|
|
|
|
This may cause problems. The suspicious files are:
|
|
|
|
${tablegenned_files_on_lib_dir}
|
|
|
|
${tablegenned_files_on_include_dir}
|
|
|
|
Please clean the source directory.")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2008-11-10 02:47:07 +01:00
|
|
|
set(LLVM_ALL_TARGETS
|
|
|
|
Alpha
|
|
|
|
ARM
|
2009-08-02 19:32:37 +02:00
|
|
|
Blackfin
|
2008-11-10 02:47:07 +01:00
|
|
|
CBackend
|
|
|
|
CellSPU
|
|
|
|
CppBackend
|
|
|
|
Mips
|
2010-03-05 16:15:55 +01:00
|
|
|
MBlaze
|
2009-07-09 22:27:09 +02:00
|
|
|
MSP430
|
2008-11-10 02:47:07 +01:00
|
|
|
PowerPC
|
2010-09-28 16:02:36 +02:00
|
|
|
PTX
|
2008-11-10 02:47:07 +01:00
|
|
|
Sparc
|
2009-07-20 02:24:17 +02:00
|
|
|
SystemZ
|
2008-11-10 02:47:07 +01:00
|
|
|
X86
|
|
|
|
XCore
|
|
|
|
)
|
|
|
|
|
2008-09-26 06:40:32 +02:00
|
|
|
if( MSVC )
|
|
|
|
set(LLVM_TARGETS_TO_BUILD X86
|
2008-11-10 02:47:07 +01:00
|
|
|
CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
|
2008-09-26 06:40:32 +02:00
|
|
|
else( MSVC )
|
2008-11-10 02:47:07 +01:00
|
|
|
set(LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS}
|
|
|
|
CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
|
2008-09-26 06:40:32 +02:00
|
|
|
endif( MSVC )
|
2008-09-22 03:08:49 +02:00
|
|
|
|
2010-10-19 10:21:25 +02:00
|
|
|
set(CLANG_RESOURCE_DIR "" CACHE STRING
|
|
|
|
"Relative directory from the Clang binary to its resource files.")
|
|
|
|
|
2011-01-11 13:31:54 +01:00
|
|
|
option(LLVM_ENABLE_CBE_PRINTF_A "Set to ON if CBE is enabled for printf %a output" ON)
|
|
|
|
if(LLVM_ENABLE_CBE_PRINTF_A)
|
|
|
|
set(ENABLE_CBE_PRINTF_A 1)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
option(LLVM_ENABLE_TIMESTAMPS "Enable embedding timestamp information in build" ON)
|
|
|
|
if(LLVM_ENABLE_TIMESTAMPS)
|
|
|
|
set(ENABLE_TIMESTAMPS 1)
|
|
|
|
endif()
|
|
|
|
|
2009-11-12 07:48:09 +01:00
|
|
|
set(C_INCLUDE_DIRS "" CACHE STRING
|
|
|
|
"Colon separated list of directories clang will search for headers.")
|
|
|
|
|
2009-09-14 00:18:38 +02:00
|
|
|
set(LLVM_TARGET_ARCH "host"
|
|
|
|
CACHE STRING "Set target to use for LLVM JIT or use \"host\" for automatic detection.")
|
|
|
|
|
2010-11-11 05:09:35 +01:00
|
|
|
set(LIT_ARGS_DEFAULT "-sv")
|
|
|
|
if (MSVC OR XCODE)
|
|
|
|
set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
|
|
|
|
endif()
|
|
|
|
set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}"
|
|
|
|
CACHE STRING "Default options for lit")
|
|
|
|
|
2008-11-19 00:45:21 +01:00
|
|
|
option(LLVM_ENABLE_THREADS "Use threads if available." ON)
|
|
|
|
|
2009-06-03 17:11:25 +02:00
|
|
|
if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
|
2009-06-04 11:26:16 +02:00
|
|
|
option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
|
2009-06-03 17:11:25 +02:00
|
|
|
else()
|
2009-06-04 11:26:16 +02:00
|
|
|
option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
|
2009-06-03 17:11:25 +02:00
|
|
|
endif()
|
|
|
|
|
2009-06-04 11:26:16 +02:00
|
|
|
if( LLVM_ENABLE_ASSERTIONS )
|
2009-07-05 20:43:52 +02:00
|
|
|
# MSVC doesn't like _DEBUG on release builds. See PR 4379.
|
2009-07-06 01:58:20 +02:00
|
|
|
if( NOT MSVC )
|
2009-07-05 20:43:52 +02:00
|
|
|
add_definitions( -D_DEBUG )
|
|
|
|
endif()
|
2009-06-04 11:26:16 +02:00
|
|
|
# On Release builds cmake automatically defines NDEBUG, so we
|
|
|
|
# explicitly undefine it:
|
|
|
|
if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
|
|
|
|
add_definitions( -UNDEBUG )
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
|
|
|
|
add_definitions( -DNDEBUG )
|
|
|
|
endif()
|
2009-06-03 17:11:25 +02:00
|
|
|
endif()
|
|
|
|
|
2008-11-10 02:47:07 +01:00
|
|
|
if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
|
|
|
|
set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
|
|
|
|
endif()
|
|
|
|
|
2009-06-16 22:12:29 +02:00
|
|
|
set(LLVM_ENUM_TARGETS "")
|
2008-11-10 02:47:07 +01:00
|
|
|
foreach(c ${LLVM_TARGETS_TO_BUILD})
|
|
|
|
list(FIND LLVM_ALL_TARGETS ${c} idx)
|
|
|
|
if( idx LESS 0 )
|
2009-08-12 10:37:37 +02:00
|
|
|
message(FATAL_ERROR "The target `${c}' does not exist.
|
2008-11-10 02:47:07 +01:00
|
|
|
It should be one of\n${LLVM_ALL_TARGETS}")
|
2009-06-16 22:12:29 +02:00
|
|
|
else()
|
|
|
|
set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n")
|
2008-11-10 02:47:07 +01:00
|
|
|
endif()
|
|
|
|
endforeach(c)
|
|
|
|
|
2009-06-16 22:12:29 +02:00
|
|
|
# Produce llvm/Config/Targets.def
|
|
|
|
configure_file(
|
|
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
|
|
|
|
${LLVM_BINARY_DIR}/include/llvm/Config/Targets.def
|
|
|
|
)
|
|
|
|
|
2008-09-22 03:08:49 +02:00
|
|
|
set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
|
|
|
|
|
2009-04-05 00:41:07 +02:00
|
|
|
include(AddLLVMDefinitions)
|
|
|
|
|
2008-09-22 03:08:49 +02:00
|
|
|
if(WIN32)
|
2008-10-30 18:15:54 +01:00
|
|
|
if(CYGWIN)
|
|
|
|
set(LLVM_ON_WIN32 0)
|
|
|
|
set(LLVM_ON_UNIX 1)
|
|
|
|
else(CYGWIN)
|
|
|
|
set(LLVM_ON_WIN32 1)
|
|
|
|
set(LLVM_ON_UNIX 0)
|
|
|
|
endif(CYGWIN)
|
2008-09-22 03:08:49 +02:00
|
|
|
set(LTDL_SHLIB_EXT ".dll")
|
|
|
|
set(EXEEXT ".exe")
|
|
|
|
# Maximum path length is 160 for non-unicode paths
|
|
|
|
set(MAXPATHLEN 160)
|
|
|
|
else(WIN32)
|
|
|
|
if(UNIX)
|
|
|
|
set(LLVM_ON_WIN32 0)
|
|
|
|
set(LLVM_ON_UNIX 1)
|
2009-09-22 08:09:37 +02:00
|
|
|
if(APPLE)
|
|
|
|
set(LTDL_SHLIB_EXT ".dylib")
|
|
|
|
else(APPLE)
|
|
|
|
set(LTDL_SHLIB_EXT ".so")
|
|
|
|
endif(APPLE)
|
2008-09-22 03:08:49 +02:00
|
|
|
set(EXEEXT "")
|
|
|
|
# FIXME: Maximum path length is currently set to 'safe' fixed value
|
|
|
|
set(MAXPATHLEN 2024)
|
|
|
|
else(UNIX)
|
|
|
|
MESSAGE(SEND_ERROR "Unable to determine platform")
|
|
|
|
endif(UNIX)
|
|
|
|
endif(WIN32)
|
|
|
|
|
2009-08-18 17:29:35 +02:00
|
|
|
option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
|
2008-11-20 20:13:51 +01:00
|
|
|
|
|
|
|
if( LLVM_ENABLE_PIC )
|
2011-01-09 15:34:39 +01:00
|
|
|
if( XCODE )
|
|
|
|
# Xcode has -mdynamic-no-pic on by default, which overrides -fPIC. I don't
|
|
|
|
# know how to disable this, so just force ENABLE_PIC off for now.
|
|
|
|
message(WARNING "-fPIC not supported with Xcode.")
|
|
|
|
elseif( WIN32 )
|
|
|
|
# On Windows all code is PIC. MinGW warns if -fPIC is used.
|
|
|
|
else()
|
|
|
|
include(CheckCXXCompilerFlag)
|
|
|
|
check_cxx_compiler_flag("-fPIC" SUPPORTS_FPIC_FLAG)
|
|
|
|
if( SUPPORTS_FPIC_FLAG )
|
2009-11-08 01:34:22 +01:00
|
|
|
message(STATUS "Building with -fPIC")
|
2011-01-09 15:34:39 +01:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
|
2011-01-09 18:38:31 +01:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
|
2011-01-09 15:34:39 +01:00
|
|
|
else( SUPPORTS_FPIC_FLAG )
|
|
|
|
message(WARNING "-fPIC not supported.")
|
|
|
|
endif()
|
|
|
|
endif()
|
2008-11-20 20:13:51 +01:00
|
|
|
endif()
|
|
|
|
|
2011-01-09 15:34:39 +01:00
|
|
|
include(config-ix)
|
|
|
|
|
2008-09-22 03:08:49 +02:00
|
|
|
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 )
|
|
|
|
|
|
|
|
# set(CMAKE_VERBOSE_MAKEFILE true)
|
|
|
|
|
2009-04-05 00:41:07 +02:00
|
|
|
add_llvm_definitions( -D__STDC_LIMIT_MACROS )
|
|
|
|
add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
|
2008-09-22 03:08:49 +02:00
|
|
|
|
2009-12-01 20:11:36 +01:00
|
|
|
# MSVC has a gazillion warnings with this.
|
|
|
|
if( MSVC )
|
|
|
|
option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." OFF)
|
|
|
|
else( MSVC )
|
|
|
|
option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." ON)
|
|
|
|
endif()
|
|
|
|
|
2009-12-01 03:21:51 +01:00
|
|
|
option(LLVM_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
|
|
|
|
option(LLVM_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
|
|
|
|
|
2008-11-04 04:27:24 +01:00
|
|
|
if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
|
|
|
|
# TODO: support other platforms and toolchains.
|
2008-11-19 01:10:39 +01:00
|
|
|
option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
|
|
|
|
if( LLVM_BUILD_32_BITS )
|
2008-11-04 04:27:24 +01:00
|
|
|
message(STATUS "Building 32 bits executables and libraries.")
|
2009-04-05 00:41:07 +02:00
|
|
|
add_llvm_definitions( -m32 )
|
2008-11-19 01:10:39 +01:00
|
|
|
list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
|
|
|
|
list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
|
|
|
|
endif( LLVM_BUILD_32_BITS )
|
2008-11-04 04:27:24 +01:00
|
|
|
endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
|
|
|
|
|
2008-09-22 03:08:49 +02:00
|
|
|
if( MSVC )
|
2010-08-05 03:25:48 +02:00
|
|
|
include(ChooseMSVCCRT)
|
|
|
|
|
2010-12-18 01:18:58 +01:00
|
|
|
# Add definitions that make MSVC much less annoying.
|
|
|
|
add_llvm_definitions(
|
|
|
|
# For some reason MS wants to deprecate a bunch of standard functions...
|
|
|
|
-D_CRT_SECURE_NO_DEPRECATE
|
|
|
|
-D_CRT_SECURE_NO_WARNINGS
|
|
|
|
-D_CRT_NONSTDC_NO_DEPRECATE
|
|
|
|
-D_CRT_NONSTDC_NO_WARNINGS
|
|
|
|
-D_SCL_SECURE_NO_DEPRECATE
|
|
|
|
-D_SCL_SECURE_NO_WARNINGS
|
|
|
|
|
|
|
|
-wd4146 # Suppress 'unary minus operator applied to unsigned type, result still unsigned'
|
|
|
|
-wd4180 # Suppress 'qualifier applied to function type has no meaning; ignored'
|
|
|
|
-wd4224 # Suppress 'nonstandard extension used : formal parameter 'identifier' was previously defined as a type'
|
|
|
|
-wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data'
|
|
|
|
-wd4267 # Suppress ''var' : conversion from 'size_t' to 'type', possible loss of data'
|
|
|
|
-wd4275 # Suppress 'An exported class was derived from a class that was not exported.'
|
|
|
|
-wd4291 # Suppress ''declaration' : no matching operator delete found; memory will not be freed if initialization throws an exception'
|
|
|
|
-wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized'
|
|
|
|
-wd4351 # Suppress 'new behavior: elements of array 'array' will be default initialized'
|
|
|
|
-wd4355 # Suppress ''this' : used in base member initializer list'
|
|
|
|
-wd4503 # Suppress ''identifier' : decorated name length exceeded, name was truncated'
|
|
|
|
-wd4624 # Suppress ''derived class' : destructor could not be generated because a base class destructor is inaccessible'
|
|
|
|
-wd4715 # Suppress ''function' : not all control paths return a value'
|
|
|
|
-wd4800 # Suppress ''type' : forcing value to bool 'true' or 'false' (performance warning)'
|
|
|
|
|
|
|
|
-w14062 # Promote "enumerator in switch of enum is not handled" to level 1 warning.
|
|
|
|
)
|
2009-07-19 03:35:10 +02:00
|
|
|
|
2009-12-01 03:21:51 +01:00
|
|
|
# Enable warnings
|
|
|
|
if (LLVM_ENABLE_WARNINGS)
|
|
|
|
add_llvm_definitions( /W4 /Wall )
|
|
|
|
if (LLVM_ENABLE_PEDANTIC)
|
|
|
|
# No MSVC equivalent available
|
|
|
|
endif (LLVM_ENABLE_PEDANTIC)
|
|
|
|
endif (LLVM_ENABLE_WARNINGS)
|
|
|
|
if (LLVM_ENABLE_WERROR)
|
|
|
|
add_llvm_definitions( /WX )
|
|
|
|
endif (LLVM_ENABLE_WERROR)
|
2009-12-01 00:50:14 +01:00
|
|
|
elseif( CMAKE_COMPILER_IS_GNUCXX )
|
2009-12-01 03:21:51 +01:00
|
|
|
if (LLVM_ENABLE_WARNINGS)
|
|
|
|
add_llvm_definitions( -Wall -W -Wno-unused-parameter -Wwrite-strings )
|
|
|
|
if (LLVM_ENABLE_PEDANTIC)
|
|
|
|
add_llvm_definitions( -pedantic -Wno-long-long )
|
|
|
|
endif (LLVM_ENABLE_PEDANTIC)
|
|
|
|
endif (LLVM_ENABLE_WARNINGS)
|
|
|
|
if (LLVM_ENABLE_WERROR)
|
|
|
|
add_llvm_definitions( -Werror )
|
|
|
|
endif (LLVM_ENABLE_WERROR)
|
2008-09-22 03:08:49 +02:00
|
|
|
endif( MSVC )
|
|
|
|
|
2008-10-29 03:33:15 +01:00
|
|
|
include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
|
2008-09-22 03:08:49 +02:00
|
|
|
|
2009-10-12 06:00:11 +02:00
|
|
|
if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
|
2010-11-29 19:16:10 +01:00
|
|
|
SET(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-include llvm/Support/Solaris.h")
|
2009-10-12 06:00:11 +02:00
|
|
|
endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
|
|
|
|
|
2008-09-22 03:08:49 +02:00
|
|
|
include(AddLLVM)
|
2008-09-26 06:40:32 +02:00
|
|
|
include(TableGen)
|
2008-09-22 03:08:49 +02:00
|
|
|
|
2010-09-11 04:13:39 +02:00
|
|
|
if( MINGW )
|
|
|
|
get_system_libs(LLVM_SYSTEM_LIBS_LIST)
|
|
|
|
foreach(l ${LLVM_SYSTEM_LIBS_LIST})
|
|
|
|
set(LLVM_SYSTEM_LIBS "${LLVM_SYSTEM_LIBS} -l${l}")
|
|
|
|
endforeach()
|
|
|
|
set(CMAKE_CXX_STANDARD_LIBRARIES "${CMAKE_CXX_STANDARD_LIBRARIES}${LLVM_SYSTEM_LIBS}")
|
|
|
|
set(CMAKE_C_STANDARD_LIBRARIES "${CMAKE_C_STANDARD_LIBRARIES}${LLVM_SYSTEM_LIBS}")
|
|
|
|
endif()
|
|
|
|
|
2011-01-07 21:31:03 +01:00
|
|
|
if( MINGW )
|
|
|
|
# People report that -O3 is unreliable on MinGW. The traditional
|
|
|
|
# build also uses -O2 for that reason:
|
|
|
|
llvm_replace_compiler_option(CMAKE_CXX_FLAGS_RELEASE "-O3" "-O2")
|
|
|
|
endif()
|
|
|
|
|
2008-09-22 03:08:49 +02:00
|
|
|
add_subdirectory(lib/Support)
|
2008-09-22 20:21:51 +02:00
|
|
|
|
2010-11-29 19:16:10 +01:00
|
|
|
# Everything else depends on Support:
|
2008-09-22 20:21:51 +02:00
|
|
|
set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} )
|
|
|
|
|
2008-11-09 19:53:19 +01:00
|
|
|
set(LLVM_TABLEGEN "tblgen" CACHE
|
2008-11-10 03:35:55 +01:00
|
|
|
STRING "Native TableGen executable. Saves building one when cross-compiling.")
|
2009-06-11 06:16:10 +02:00
|
|
|
# Effective tblgen executable to be used:
|
|
|
|
set(LLVM_TABLEGEN_EXE ${LLVM_TABLEGEN})
|
2008-11-09 19:53:19 +01:00
|
|
|
|
2008-11-10 02:32:14 +01:00
|
|
|
add_subdirectory(utils/TableGen)
|
|
|
|
|
2008-11-09 19:53:19 +01:00
|
|
|
if( CMAKE_CROSSCOMPILING )
|
2008-11-10 02:32:14 +01:00
|
|
|
# This adds a dependency on target `tblgen', so must go after utils/TableGen
|
2008-11-09 19:53:19 +01:00
|
|
|
include( CrossCompileLLVM )
|
|
|
|
endif( CMAKE_CROSSCOMPILING )
|
|
|
|
|
2008-11-15 01:24:38 +01:00
|
|
|
add_subdirectory(include/llvm)
|
2008-09-22 20:21:51 +02:00
|
|
|
|
2008-09-22 03:08:49 +02:00
|
|
|
add_subdirectory(lib/VMCore)
|
|
|
|
add_subdirectory(lib/CodeGen)
|
|
|
|
add_subdirectory(lib/CodeGen/SelectionDAG)
|
|
|
|
add_subdirectory(lib/CodeGen/AsmPrinter)
|
|
|
|
add_subdirectory(lib/Bitcode/Reader)
|
|
|
|
add_subdirectory(lib/Bitcode/Writer)
|
|
|
|
add_subdirectory(lib/Transforms/Utils)
|
|
|
|
add_subdirectory(lib/Transforms/Instrumentation)
|
2010-01-04 22:58:55 +01:00
|
|
|
add_subdirectory(lib/Transforms/InstCombine)
|
2008-09-22 03:08:49 +02:00
|
|
|
add_subdirectory(lib/Transforms/Scalar)
|
|
|
|
add_subdirectory(lib/Transforms/IPO)
|
|
|
|
add_subdirectory(lib/Transforms/Hello)
|
|
|
|
add_subdirectory(lib/Linker)
|
|
|
|
add_subdirectory(lib/Analysis)
|
|
|
|
add_subdirectory(lib/Analysis/IPA)
|
2009-06-24 00:01:43 +02:00
|
|
|
add_subdirectory(lib/MC)
|
2010-01-22 03:04:33 +01:00
|
|
|
add_subdirectory(lib/MC/MCParser)
|
2010-07-20 20:25:19 +02:00
|
|
|
add_subdirectory(lib/MC/MCDisassembler)
|
2010-11-15 04:21:41 +01:00
|
|
|
add_subdirectory(lib/Object)
|
2008-09-26 06:40:32 +02:00
|
|
|
|
2009-07-20 20:30:25 +02:00
|
|
|
add_subdirectory(utils/FileCheck)
|
2010-12-09 18:54:44 +01:00
|
|
|
add_subdirectory(utils/FileUpdate)
|
2009-09-24 08:23:57 +02:00
|
|
|
add_subdirectory(utils/count)
|
|
|
|
add_subdirectory(utils/not)
|
2010-09-13 19:52:38 +02:00
|
|
|
add_subdirectory(utils/llvm-lit)
|
2009-07-20 20:30:25 +02:00
|
|
|
|
2009-08-14 06:55:21 +02:00
|
|
|
set(LLVM_ENUM_ASM_PRINTERS "")
|
|
|
|
set(LLVM_ENUM_ASM_PARSERS "")
|
2009-11-25 05:30:13 +01:00
|
|
|
set(LLVM_ENUM_DISASSEMBLERS "")
|
2009-08-14 06:55:21 +02:00
|
|
|
foreach(t ${LLVM_TARGETS_TO_BUILD})
|
2008-09-26 06:40:32 +02:00
|
|
|
message(STATUS "Targeting ${t}")
|
|
|
|
add_subdirectory(lib/Target/${t})
|
2009-07-15 09:04:27 +02:00
|
|
|
add_subdirectory(lib/Target/${t}/TargetInfo)
|
2010-11-14 22:17:13 +01:00
|
|
|
set( td ${LLVM_MAIN_SRC_DIR}/lib/Target/${t} )
|
|
|
|
file(GLOB asmp_file "${td}/*AsmPrinter.cpp")
|
|
|
|
if( asmp_file )
|
2010-11-29 19:16:10 +01:00
|
|
|
set(LLVM_ENUM_ASM_PRINTERS
|
2010-11-14 20:12:57 +01:00
|
|
|
"${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
|
2010-11-14 21:15:05 +01:00
|
|
|
endif()
|
2010-11-14 22:17:13 +01:00
|
|
|
if( EXISTS ${td}/InstPrinter/CMakeLists.txt )
|
2010-10-02 04:38:42 +02:00
|
|
|
add_subdirectory(lib/Target/${t}/InstPrinter)
|
2010-11-14 22:17:13 +01:00
|
|
|
endif()
|
|
|
|
if( EXISTS ${td}/AsmParser/CMakeLists.txt )
|
2009-08-14 06:55:21 +02:00
|
|
|
add_subdirectory(lib/Target/${t}/AsmParser)
|
2010-11-29 19:16:10 +01:00
|
|
|
set(LLVM_ENUM_ASM_PARSERS
|
2009-08-14 06:55:21 +02:00
|
|
|
"${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
|
2010-11-14 22:17:13 +01:00
|
|
|
endif()
|
|
|
|
if( EXISTS ${td}/Disassembler/CMakeLists.txt )
|
2009-11-25 05:30:13 +01:00
|
|
|
add_subdirectory(lib/Target/${t}/Disassembler)
|
|
|
|
set(LLVM_ENUM_DISASSEMBLERS
|
|
|
|
"${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n")
|
2010-11-14 22:17:13 +01:00
|
|
|
endif()
|
2009-08-16 07:16:43 +02:00
|
|
|
set(CURRENT_LLVM_TARGET)
|
2008-09-26 06:40:32 +02:00
|
|
|
endforeach(t)
|
|
|
|
|
2009-06-16 22:12:29 +02:00
|
|
|
# Produce llvm/Config/AsmPrinters.def
|
|
|
|
configure_file(
|
|
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
|
|
|
|
${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def
|
|
|
|
)
|
|
|
|
|
2009-07-17 22:42:00 +02:00
|
|
|
# Produce llvm/Config/AsmParsers.def
|
|
|
|
configure_file(
|
|
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
|
|
|
|
${LLVM_BINARY_DIR}/include/llvm/Config/AsmParsers.def
|
|
|
|
)
|
|
|
|
|
2009-11-25 05:30:13 +01:00
|
|
|
# Produce llvm/Config/Disassemblers.def
|
|
|
|
configure_file(
|
|
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in
|
|
|
|
${LLVM_BINARY_DIR}/include/llvm/Config/Disassemblers.def
|
|
|
|
)
|
|
|
|
|
2008-09-22 03:08:49 +02:00
|
|
|
add_subdirectory(lib/ExecutionEngine)
|
|
|
|
add_subdirectory(lib/ExecutionEngine/Interpreter)
|
|
|
|
add_subdirectory(lib/ExecutionEngine/JIT)
|
2010-11-18 00:35:07 +01:00
|
|
|
add_subdirectory(lib/ExecutionEngine/MCJIT)
|
2008-09-22 03:08:49 +02:00
|
|
|
add_subdirectory(lib/Target)
|
|
|
|
add_subdirectory(lib/AsmParser)
|
|
|
|
add_subdirectory(lib/Archive)
|
|
|
|
|
2009-03-06 02:16:52 +01:00
|
|
|
add_subdirectory(projects)
|
2008-09-22 03:08:49 +02:00
|
|
|
|
2010-09-25 22:43:06 +02:00
|
|
|
option(LLVM_BUILD_TOOLS
|
|
|
|
"Build the LLVM tools. If OFF, just generate build targets." ON)
|
|
|
|
option(LLVM_INCLUDE_TOOLS "Generate build targets for the LLVM tools." ON)
|
|
|
|
if( LLVM_INCLUDE_TOOLS )
|
|
|
|
add_subdirectory(tools)
|
|
|
|
endif()
|
2008-10-22 04:56:07 +02:00
|
|
|
|
2010-09-25 22:43:06 +02:00
|
|
|
option(LLVM_BUILD_EXAMPLES
|
|
|
|
"Build the LLVM example programs. If OFF, just generate build targets." OFF)
|
|
|
|
option(LLVM_INCLUDE_EXAMPLES "Generate build targets for the LLVM examples" ON)
|
|
|
|
if( LLVM_INCLUDE_EXAMPLES )
|
|
|
|
add_subdirectory(examples)
|
|
|
|
endif()
|
2010-09-24 11:01:13 +02:00
|
|
|
|
2010-09-25 22:43:06 +02:00
|
|
|
option(LLVM_BUILD_TESTS
|
|
|
|
"Build LLVM unit tests. If OFF, just generate build targes." OFF)
|
|
|
|
option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON)
|
|
|
|
if( LLVM_INCLUDE_TESTS )
|
|
|
|
add_subdirectory(test)
|
|
|
|
add_subdirectory(utils/unittest)
|
|
|
|
add_subdirectory(unittests)
|
2010-10-26 07:08:27 +02:00
|
|
|
if (MSVC)
|
2010-10-11 21:55:38 +02:00
|
|
|
# This utility is used to prevent chrashing tests from calling Dr. Watson on
|
|
|
|
# Windows.
|
|
|
|
add_subdirectory(utils/KillTheDoctor)
|
|
|
|
endif()
|
2010-09-25 22:43:06 +02:00
|
|
|
endif()
|
2010-09-24 11:01:13 +02:00
|
|
|
|
2010-08-09 05:26:43 +02:00
|
|
|
add_subdirectory(cmake/modules)
|
|
|
|
|
2009-10-27 20:57:29 +01:00
|
|
|
install(DIRECTORY include/
|
|
|
|
DESTINATION include
|
|
|
|
FILES_MATCHING
|
2009-10-30 12:42:08 +01:00
|
|
|
PATTERN "*.def"
|
2009-10-27 20:57:29 +01:00
|
|
|
PATTERN "*.h"
|
|
|
|
PATTERN "*.td"
|
2009-10-27 21:04:22 +01:00
|
|
|
PATTERN "*.inc"
|
2008-10-22 04:56:07 +02:00
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
)
|
|
|
|
|
2009-10-27 20:57:29 +01:00
|
|
|
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/
|
|
|
|
DESTINATION include
|
|
|
|
FILES_MATCHING
|
|
|
|
PATTERN "*.def"
|
|
|
|
PATTERN "*.h"
|
|
|
|
PATTERN "*.gen"
|
2009-10-27 21:04:22 +01:00
|
|
|
PATTERN "*.inc"
|
2009-10-27 20:57:29 +01:00
|
|
|
# Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def"
|
|
|
|
PATTERN "CMakeFiles" EXCLUDE
|
|
|
|
PATTERN ".svn" EXCLUDE
|
2008-10-22 04:56:07 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
# TODO: make and install documentation.
|
2010-10-14 23:11:51 +02:00
|
|
|
|
|
|
|
set(CPACK_PACKAGE_VENDOR "LLVM")
|
|
|
|
set(CPACK_PACKAGE_VERSION_MAJOR 2)
|
|
|
|
set(CPACK_PACKAGE_VERSION_MINOR 9)
|
|
|
|
add_version_info_from_vcs(CPACK_PACKAGE_VERSION_PATCH)
|
|
|
|
include(CPack)
|
2010-11-19 04:19:18 +01:00
|
|
|
|
|
|
|
# Workaround for MSVS10 to avoid the Dialog Hell
|
|
|
|
# FIXME: This could be removed with future version of CMake.
|
|
|
|
if(MSVC_VERSION EQUAL 1600)
|
|
|
|
set(LLVM_SLN_FILENAME "${CMAKE_CURRENT_BINARY_DIR}/LLVM.sln")
|
|
|
|
if( EXISTS "${LLVM_SLN_FILENAME}" )
|
|
|
|
file(APPEND "${LLVM_SLN_FILENAME}" "\n# This should be regenerated!\n")
|
|
|
|
endif()
|
|
|
|
endif()
|