2009-04-05 06:52:02 +08:00
|
|
|
# See docs/CMake.html for instructions about how to build LLVM with CMake.
|
|
|
|
|
2008-10-31 05:22:00 +08:00
|
|
|
project(LLVM)
|
2010-08-03 23:07:17 +08:00
|
|
|
cmake_minimum_required(VERSION 2.8)
|
2008-09-22 09:08:49 +08:00
|
|
|
|
2010-08-04 01:28:09 +08: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 11:00:02 +08:00
|
|
|
set(PACKAGE_VERSION "3.0")
|
2010-12-20 17:47:13 +08:00
|
|
|
|
2011-02-21 06:06:10 +08:00
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
|
|
|
|
2010-08-04 01:28:09 +08:00
|
|
|
include(VersionFromVCS)
|
2010-12-20 17:47:13 +08: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-04 01:28:09 +08:00
|
|
|
|
2008-09-22 09:08:49 +08:00
|
|
|
set(PACKAGE_NAME llvm)
|
2009-01-29 01:49:03 +08:00
|
|
|
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
|
2008-10-25 11:49:35 +08:00
|
|
|
set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu")
|
2008-09-22 09:08:49 +08:00
|
|
|
|
2008-11-14 11:43:18 +08: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 23:11:25 +08:00
|
|
|
string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
|
|
|
|
|
2008-09-22 09:08:49 +08:00
|
|
|
set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
2008-10-29 10:33:15 +08:00
|
|
|
set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include)
|
2008-09-22 09:08:49 +08: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 10:49:53 +08:00
|
|
|
set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
|
2008-09-22 09:08:49 +08:00
|
|
|
|
2009-07-14 05:58:44 +08: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 09:47:07 +08:00
|
|
|
set(LLVM_ALL_TARGETS
|
|
|
|
ARM
|
|
|
|
CBackend
|
|
|
|
CellSPU
|
|
|
|
CppBackend
|
|
|
|
Mips
|
2010-03-05 23:15:55 +08:00
|
|
|
MBlaze
|
2009-07-10 04:27:09 +08:00
|
|
|
MSP430
|
2008-11-10 09:47:07 +08:00
|
|
|
PowerPC
|
2010-09-28 22:02:36 +08:00
|
|
|
PTX
|
2008-11-10 09:47:07 +08:00
|
|
|
Sparc
|
|
|
|
X86
|
|
|
|
XCore
|
|
|
|
)
|
|
|
|
|
2011-03-24 01:42:13 +08:00
|
|
|
# List of targets with JIT support:
|
2011-07-22 00:28:51 +08:00
|
|
|
set(LLVM_TARGETS_WITH_JIT X86 PowerPC ARM Mips)
|
2011-03-24 01:42:13 +08:00
|
|
|
|
2008-09-26 12:40:32 +08:00
|
|
|
if( MSVC )
|
|
|
|
set(LLVM_TARGETS_TO_BUILD X86
|
2008-11-10 09:47:07 +08:00
|
|
|
CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
|
2008-09-26 12:40:32 +08:00
|
|
|
else( MSVC )
|
2008-11-10 09:47:07 +08:00
|
|
|
set(LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS}
|
|
|
|
CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
|
2008-09-26 12:40:32 +08:00
|
|
|
endif( MSVC )
|
2008-09-22 09:08:49 +08:00
|
|
|
|
2011-01-11 20:31:54 +08: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 23:42:54 +08: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 06:18:38 +08:00
|
|
|
set(LLVM_TARGET_ARCH "host"
|
|
|
|
CACHE STRING "Set target to use for LLVM JIT or use \"host\" for automatic detection.")
|
|
|
|
|
2008-11-19 07:45:21 +08:00
|
|
|
option(LLVM_ENABLE_THREADS "Use threads if available." ON)
|
|
|
|
|
2008-11-10 09:47:07 +08:00
|
|
|
if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
|
|
|
|
set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
|
|
|
|
endif()
|
|
|
|
|
2009-06-17 04:12:29 +08:00
|
|
|
set(LLVM_ENUM_TARGETS "")
|
2008-11-10 09:47:07 +08:00
|
|
|
foreach(c ${LLVM_TARGETS_TO_BUILD})
|
|
|
|
list(FIND LLVM_ALL_TARGETS ${c} idx)
|
|
|
|
if( idx LESS 0 )
|
2009-08-12 16:37:37 +08:00
|
|
|
message(FATAL_ERROR "The target `${c}' does not exist.
|
2008-11-10 09:47:07 +08:00
|
|
|
It should be one of\n${LLVM_ALL_TARGETS}")
|
2009-06-17 04:12:29 +08:00
|
|
|
else()
|
|
|
|
set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n")
|
2008-11-10 09:47:07 +08:00
|
|
|
endif()
|
|
|
|
endforeach(c)
|
|
|
|
|
2009-06-17 04:12:29 +08: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 09:08:49 +08:00
|
|
|
set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
|
|
|
|
|
2009-04-05 06:41:07 +08:00
|
|
|
include(AddLLVMDefinitions)
|
|
|
|
|
2009-08-18 23:29:35 +08:00
|
|
|
option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
|
2008-11-21 03:13:51 +08:00
|
|
|
|
2011-03-02 06:31:19 +08: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-04 04:57:36 +08:00
|
|
|
|
2011-03-02 06:31:19 +08: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-04 04:57:36 +08: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-21 03:13:51 +08:00
|
|
|
endif()
|
|
|
|
|
2011-11-05 03:04:35 +08:00
|
|
|
# Define an option controlling whether we should build for 32-bit on 64-bit
|
|
|
|
# platforms, where supported.
|
|
|
|
if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
|
|
|
|
# TODO: support other platforms and toolchains.
|
|
|
|
option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Define the default arguments to use with 'lit', and an option for the user to
|
|
|
|
# override.
|
|
|
|
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")
|
|
|
|
|
|
|
|
# On Win32/Cygwin, provide an option to specify the path to the GnuWin32 tools.
|
|
|
|
if( WIN32 AND CYGWIN )
|
|
|
|
set(LLVM_LIT_TOOLS_DIR "" CACHE PATH "Path to GnuWin32 tools")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# On Win32 using MS tools, provide an option to set the number of parallel jobs
|
|
|
|
# to use.
|
|
|
|
if( MSVC_IDE AND ( MSVC90 OR MSVC10 ) )
|
|
|
|
# Only Visual Studio 2008 and 2010 officially supports /MP. Visual Studio
|
|
|
|
# 2005 supports it but it is experimental.
|
|
|
|
set(LLVM_COMPILER_JOBS "0" CACHE STRING
|
|
|
|
"Number of parallel compiler jobs. 0 means use all processors. Default is 0.")
|
|
|
|
endif()
|
|
|
|
|
2011-11-05 03:04:37 +08:00
|
|
|
# Define options to control the inclusion and default build behavior for
|
|
|
|
# components which may not strictly be necessary (tools, runtime, examples, and
|
|
|
|
# tests).
|
|
|
|
#
|
|
|
|
# This is primarily to support building smaller or faster project files.
|
|
|
|
option(LLVM_INCLUDE_TOOLS "Generate build targets for the LLVM tools." ON)
|
|
|
|
option(LLVM_BUILD_TOOLS
|
|
|
|
"Build the LLVM tools. If OFF, just generate build targets." ON)
|
|
|
|
|
|
|
|
option(LLVM_INCLUDE_RUNTIME "Generate build targets for the LLVM runtimes" ON)
|
|
|
|
option(LLVM_BUILD_RUNTIME
|
|
|
|
"Build the LLVM runtime libraries. If OFF, just generate build targets." ON)
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
option(LLVM_BUILD_TESTS
|
|
|
|
"Build LLVM unit tests. If OFF, just generate build targets." OFF)
|
|
|
|
option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON)
|
|
|
|
|
2011-04-15 13:18:47 +08:00
|
|
|
# All options referred to from HandleLLVMOptions have to be specified
|
2011-03-02 06:31:19 +08:00
|
|
|
# BEFORE this include, otherwise options will not be correctly set on
|
|
|
|
# first cmake run
|
|
|
|
include(config-ix)
|
|
|
|
include(HandleLLVMOptions)
|
|
|
|
|
2011-02-04 04:57:36 +08: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 22:34:39 +08:00
|
|
|
|
2008-09-22 09:08:49 +08: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-15 04:13:58 +08:00
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
|
2008-10-29 10:33:15 +08:00
|
|
|
include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
|
2008-09-22 09:08:49 +08:00
|
|
|
|
2009-10-12 12:00:11 +08:00
|
|
|
if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
|
2011-07-18 01:35:15 +08:00
|
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -include llvm/Support/Solaris.h")
|
2009-10-12 12:00:11 +08:00
|
|
|
endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
|
|
|
|
|
2008-09-22 09:08:49 +08:00
|
|
|
include(AddLLVM)
|
2008-09-26 12:40:32 +08:00
|
|
|
include(TableGen)
|
2008-09-22 09:08:49 +08:00
|
|
|
|
2011-01-08 04:31:03 +08: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-19 06:06:14 +08:00
|
|
|
# Put this before tblgen. Else we have a circular dependence.
|
2008-09-22 09:08:49 +08:00
|
|
|
add_subdirectory(lib/Support)
|
2011-10-02 00:41:13 +08:00
|
|
|
add_subdirectory(lib/TableGen)
|
2008-09-23 02:21:51 +08:00
|
|
|
|
2008-11-10 09:32:14 +08:00
|
|
|
add_subdirectory(utils/TableGen)
|
|
|
|
|
2008-11-15 08:24:38 +08:00
|
|
|
add_subdirectory(include/llvm)
|
2008-09-23 02:21:51 +08:00
|
|
|
|
2011-02-19 06:06:14 +08:00
|
|
|
add_subdirectory(lib)
|
2008-09-26 12:40:32 +08:00
|
|
|
|
2009-07-21 02:30:25 +08:00
|
|
|
add_subdirectory(utils/FileCheck)
|
2010-12-10 01:54:44 +08:00
|
|
|
add_subdirectory(utils/FileUpdate)
|
2009-09-24 14:23:57 +08:00
|
|
|
add_subdirectory(utils/count)
|
|
|
|
add_subdirectory(utils/not)
|
2010-09-14 01:52:38 +08:00
|
|
|
add_subdirectory(utils/llvm-lit)
|
2009-07-21 02:30:25 +08:00
|
|
|
|
2009-03-06 09:16:52 +08:00
|
|
|
add_subdirectory(projects)
|
2008-09-22 09:08:49 +08:00
|
|
|
|
2010-09-26 04:43:06 +08:00
|
|
|
if( LLVM_INCLUDE_TOOLS )
|
|
|
|
add_subdirectory(tools)
|
|
|
|
endif()
|
2008-10-22 10:56:07 +08:00
|
|
|
|
2011-04-26 13:48:41 +08:00
|
|
|
if( LLVM_INCLUDE_RUNTIME )
|
|
|
|
add_subdirectory(runtime)
|
|
|
|
endif()
|
|
|
|
|
2010-09-26 04:43:06 +08:00
|
|
|
if( LLVM_INCLUDE_EXAMPLES )
|
|
|
|
add_subdirectory(examples)
|
|
|
|
endif()
|
2010-09-24 17:01:13 +08:00
|
|
|
|
2010-09-26 04:43:06 +08:00
|
|
|
if( LLVM_INCLUDE_TESTS )
|
|
|
|
add_subdirectory(test)
|
|
|
|
add_subdirectory(utils/unittest)
|
|
|
|
add_subdirectory(unittests)
|
2010-10-26 13:08:27 +08:00
|
|
|
if (MSVC)
|
2010-10-12 03:55:38 +08:00
|
|
|
# This utility is used to prevent chrashing tests from calling Dr. Watson on
|
|
|
|
# Windows.
|
|
|
|
add_subdirectory(utils/KillTheDoctor)
|
|
|
|
endif()
|
2010-09-26 04:43:06 +08:00
|
|
|
endif()
|
2010-09-24 17:01:13 +08:00
|
|
|
|
2010-08-09 11:26:43 +08:00
|
|
|
add_subdirectory(cmake/modules)
|
|
|
|
|
2009-10-28 03:57:29 +08:00
|
|
|
install(DIRECTORY include/
|
|
|
|
DESTINATION include
|
|
|
|
FILES_MATCHING
|
2009-10-30 19:42:08 +08:00
|
|
|
PATTERN "*.def"
|
2009-10-28 03:57:29 +08:00
|
|
|
PATTERN "*.h"
|
|
|
|
PATTERN "*.td"
|
2009-10-28 04:04:22 +08:00
|
|
|
PATTERN "*.inc"
|
2011-02-27 21:32:50 +08:00
|
|
|
PATTERN "LICENSE.TXT"
|
2008-10-22 10:56:07 +08:00
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
)
|
|
|
|
|
2009-10-28 03:57:29 +08:00
|
|
|
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/
|
|
|
|
DESTINATION include
|
|
|
|
FILES_MATCHING
|
|
|
|
PATTERN "*.def"
|
|
|
|
PATTERN "*.h"
|
|
|
|
PATTERN "*.gen"
|
2009-10-28 04:04:22 +08:00
|
|
|
PATTERN "*.inc"
|
2009-10-28 03:57:29 +08:00
|
|
|
# Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def"
|
|
|
|
PATTERN "CMakeFiles" EXCLUDE
|
|
|
|
PATTERN ".svn" EXCLUDE
|
2008-10-22 10:56:07 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# TODO: make and install documentation.
|
2010-10-15 05:11:51 +08: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 11:19:18 +08: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()
|