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"
|
|
|
|
)
|
|
|
|
|
2011-03-08 04:00:02 +01:00
|
|
|
set(PACKAGE_VERSION "3.0")
|
2010-12-20 10:47:13 +01:00
|
|
|
|
2011-02-20 23:06:10 +01:00
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
|
|
|
|
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()
|
|
|
|
|
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
|
|
|
|
)
|
|
|
|
|
2011-03-23 18:42:13 +01:00
|
|
|
# List of targets with JIT support:
|
|
|
|
set(LLVM_TARGETS_WITH_JIT X86 PowerPC ARM)
|
|
|
|
|
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
|
|
|
|
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()
|
|
|
|
|
2011-01-21 16:42:54 +01:00
|
|
|
option(LLVM_ENABLE_FFI "Use libffi to call external functions from the interpreter" OFF)
|
|
|
|
set(FFI_LIBRARY_DIR "" CACHE PATH "Additional directory, where CMake should search for libffi.so")
|
|
|
|
set(FFI_INCLUDE_DIR "" CACHE PATH "Additional directory, where CMake should search for ffi.h or ffi/ffi.h")
|
|
|
|
|
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.")
|
|
|
|
|
2008-11-19 00:45:21 +01:00
|
|
|
option(LLVM_ENABLE_THREADS "Use threads if available." ON)
|
|
|
|
|
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)
|
|
|
|
|
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
|
|
|
|
2011-03-01 23:31:19 +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()
|
2011-02-03 21:57:36 +01:00
|
|
|
|
2011-03-01 23:31:19 +01:00
|
|
|
option(LLVM_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
|
|
|
|
option(LLVM_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
|
2011-02-03 21:57:36 +01:00
|
|
|
|
|
|
|
if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
|
|
|
|
option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
|
|
|
|
else()
|
|
|
|
option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
|
2008-11-20 20:13:51 +01:00
|
|
|
endif()
|
|
|
|
|
2011-04-15 07:18:47 +02:00
|
|
|
# All options referred to from HandleLLVMOptions have to be specified
|
2011-03-01 23:31:19 +01:00
|
|
|
# BEFORE this include, otherwise options will not be correctly set on
|
|
|
|
# first cmake run
|
|
|
|
include(config-ix)
|
|
|
|
include(HandleLLVMOptions)
|
|
|
|
|
2011-02-03 21:57:36 +01:00
|
|
|
configure_file(
|
|
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake
|
|
|
|
${LLVM_BINARY_DIR}/include/llvm/Config/config.h)
|
|
|
|
|
|
|
|
configure_file(
|
|
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/llvm-config.h.cmake
|
|
|
|
${LLVM_BINARY_DIR}/include/llvm/Config/llvm-config.h)
|
|
|
|
|
|
|
|
configure_file(
|
|
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/Support/DataTypes.h.cmake
|
|
|
|
${LLVM_BINARY_DIR}/include/llvm/Support/DataTypes.h)
|
2011-01-09 15:34:39 +01:00
|
|
|
|
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 )
|
|
|
|
|
2011-02-14 21:13:58 +01:00
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
|
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
|
|
|
|
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()
|
|
|
|
|
2011-02-18 23:06:14 +01:00
|
|
|
# Put this before tblgen. Else we have a circular dependence.
|
2008-09-22 03:08:49 +02:00
|
|
|
add_subdirectory(lib/Support)
|
2008-09-22 20:21:51 +02:00
|
|
|
|
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
|
|
|
|
2011-02-18 23:06:14 +01:00
|
|
|
add_subdirectory(lib)
|
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-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
|
|
|
|
2011-04-26 07:48:41 +02:00
|
|
|
option(LLVM_BUILD_RUNTIME
|
2011-04-29 04:12:06 +02:00
|
|
|
"Build the LLVM runtime libraries. If OFF, just generate build targets." ON)
|
2011-04-26 07:48:41 +02:00
|
|
|
option(LLVM_INCLUDE_RUNTIME "Generate build targets for the LLVM runtimes" ON)
|
|
|
|
if( LLVM_INCLUDE_RUNTIME )
|
|
|
|
add_subdirectory(runtime)
|
|
|
|
endif()
|
|
|
|
|
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
|
2011-04-26 07:48:41 +02:00
|
|
|
"Build LLVM unit tests. If OFF, just generate build targets." OFF)
|
2010-09-25 22:43:06 +02:00
|
|
|
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"
|
2011-02-27 14:32:50 +01:00
|
|
|
PATTERN "LICENSE.TXT"
|
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()
|