2008-10-30 21:22:00 +00:00
|
|
|
project(LLVM)
|
2008-09-22 01:08:49 +00:00
|
|
|
cmake_minimum_required(VERSION 2.6.1)
|
|
|
|
|
|
|
|
set(PACKAGE_NAME llvm)
|
|
|
|
set(PACKAGE_VERSION svn)
|
2008-10-25 03:49:35 +00:00
|
|
|
set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu")
|
2008-09-22 01:08:49 +00:00
|
|
|
|
2008-11-14 03:43:18 +00: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()
|
|
|
|
|
2008-09-22 01:08:49 +00:00
|
|
|
include(FindPerl)
|
|
|
|
|
|
|
|
set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
2008-10-29 02:33:15 +00:00
|
|
|
set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include)
|
2008-09-22 01:08:49 +00: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)
|
|
|
|
|
2008-11-10 01:47:07 +00:00
|
|
|
set(LLVM_ALL_TARGETS
|
|
|
|
Alpha
|
|
|
|
ARM
|
|
|
|
CBackend
|
|
|
|
CellSPU
|
|
|
|
CppBackend
|
|
|
|
IA64
|
|
|
|
Mips
|
|
|
|
MSIL
|
|
|
|
PIC16
|
|
|
|
PowerPC
|
|
|
|
Sparc
|
|
|
|
X86
|
|
|
|
XCore
|
|
|
|
)
|
|
|
|
|
2008-09-26 04:40:32 +00:00
|
|
|
if( MSVC )
|
|
|
|
set(LLVM_TARGETS_TO_BUILD X86
|
2008-11-10 01:47:07 +00:00
|
|
|
CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
|
2008-09-26 04:40:32 +00:00
|
|
|
else( MSVC )
|
2008-11-10 01:47:07 +00:00
|
|
|
set(LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS}
|
|
|
|
CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
|
2008-09-26 04:40:32 +00:00
|
|
|
endif( MSVC )
|
2008-09-22 01:08:49 +00:00
|
|
|
|
2008-11-10 01:47:07 +00:00
|
|
|
if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
|
|
|
|
set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
|
|
|
|
endif()
|
|
|
|
|
|
|
|
foreach(c ${LLVM_TARGETS_TO_BUILD})
|
|
|
|
list(FIND LLVM_ALL_TARGETS ${c} idx)
|
|
|
|
if( idx LESS 0 )
|
|
|
|
message(FATAL_ERROR "The target `${c}' does not exists.
|
|
|
|
It should be one of\n${LLVM_ALL_TARGETS}")
|
|
|
|
endif()
|
|
|
|
endforeach(c)
|
|
|
|
|
2008-09-22 01:08:49 +00:00
|
|
|
set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
|
|
|
|
|
|
|
|
# Add path for custom modules
|
|
|
|
set(CMAKE_MODULE_PATH
|
|
|
|
${CMAKE_MODULE_PATH}
|
|
|
|
"${LLVM_MAIN_SRC_DIR}/cmake"
|
|
|
|
"${LLVM_MAIN_SRC_DIR}/cmake/modules"
|
|
|
|
)
|
|
|
|
|
|
|
|
if(WIN32)
|
2008-10-30 17:15:54 +00: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 01:08:49 +00: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)
|
|
|
|
set(LTDL_SHLIB_EXT ".so")
|
|
|
|
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)
|
|
|
|
|
|
|
|
if( EXISTS ${LLVM_TOOLS_BINARY_DIR}/llvm-config )
|
|
|
|
set(HAVE_LLVM_CONFIG 1)
|
|
|
|
endif( EXISTS ${LLVM_TOOLS_BINARY_DIR}/llvm-config )
|
|
|
|
|
2008-10-25 03:29:36 +00:00
|
|
|
include(config-ix)
|
2008-09-22 01:08:49 +00: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)
|
|
|
|
|
|
|
|
add_definitions( -D__STDC_LIMIT_MACROS )
|
2008-10-30 17:21:37 +00:00
|
|
|
add_definitions( -D__STDC_CONSTANT_MACROS )
|
2008-09-22 01:08:49 +00:00
|
|
|
|
2008-11-04 03:27:24 +00:00
|
|
|
set(LLVM_PLO_FLAGS "" CACHE
|
|
|
|
STRING "Flags for creating partially linked objects.")
|
|
|
|
|
|
|
|
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 )
|
|
|
|
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}" )
|
|
|
|
set( LLVM_PLO_FLAGS -melf_i386 ${LLVM_PLO_FLAGS} )
|
|
|
|
endif( BUILD_32_BITS )
|
|
|
|
endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
|
|
|
|
|
2008-09-22 01:08:49 +00:00
|
|
|
if( MSVC )
|
|
|
|
add_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS )
|
|
|
|
add_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS )
|
|
|
|
add_definitions( -D_SCL_SECURE_NO_DEPRECATE )
|
2008-09-24 19:27:54 +00:00
|
|
|
add_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 )
|
|
|
|
add_definitions( -wd4355 -wd4715 )
|
2008-09-22 01:08:49 +00:00
|
|
|
endif( MSVC )
|
|
|
|
|
2008-10-29 02:33:15 +00:00
|
|
|
include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
|
2008-09-22 01:08:49 +00:00
|
|
|
|
|
|
|
include(AddLLVM)
|
|
|
|
include(AddPartiallyLinkedObject)
|
2008-09-26 04:40:32 +00:00
|
|
|
include(TableGen)
|
2008-09-22 01:08:49 +00:00
|
|
|
|
|
|
|
add_subdirectory(lib/Support)
|
|
|
|
add_subdirectory(lib/System)
|
2008-09-22 18:21:51 +00:00
|
|
|
|
|
|
|
# Everything else depends on Support and System:
|
|
|
|
set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} )
|
|
|
|
|
2008-11-09 18:53:19 +00:00
|
|
|
set(LLVM_TABLEGEN "tblgen" CACHE
|
2008-11-10 02:35:55 +00:00
|
|
|
STRING "Native TableGen executable. Saves building one when cross-compiling.")
|
2008-11-09 18:53:19 +00:00
|
|
|
|
2008-11-10 01:32:14 +00:00
|
|
|
add_subdirectory(utils/TableGen)
|
|
|
|
|
2008-11-09 18:53:19 +00:00
|
|
|
if( CMAKE_CROSSCOMPILING )
|
2008-11-10 01:32:14 +00:00
|
|
|
# This adds a dependency on target `tblgen', so must go after utils/TableGen
|
2008-11-09 18:53:19 +00:00
|
|
|
include( CrossCompileLLVM )
|
|
|
|
endif( CMAKE_CROSSCOMPILING )
|
|
|
|
|
2008-11-15 00:24:38 +00:00
|
|
|
add_subdirectory(include/llvm)
|
2008-09-22 18:21:51 +00:00
|
|
|
|
2008-09-22 01:08:49 +00: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)
|
|
|
|
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)
|
2008-09-26 04:40:32 +00:00
|
|
|
|
|
|
|
foreach(t ${LLVM_TARGETS_TO_BUILD})
|
|
|
|
message(STATUS "Targeting ${t}")
|
|
|
|
add_subdirectory(lib/Target/${t})
|
2008-11-14 22:21:02 +00:00
|
|
|
if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
|
2008-09-26 04:40:32 +00:00
|
|
|
add_subdirectory(lib/Target/${t}/AsmPrinter)
|
2008-11-14 22:21:02 +00:00
|
|
|
endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
|
2008-09-26 04:40:32 +00:00
|
|
|
endforeach(t)
|
|
|
|
|
2008-09-22 01:08:49 +00:00
|
|
|
add_subdirectory(lib/ExecutionEngine)
|
|
|
|
add_subdirectory(lib/ExecutionEngine/Interpreter)
|
|
|
|
add_subdirectory(lib/ExecutionEngine/JIT)
|
|
|
|
add_subdirectory(lib/Target)
|
|
|
|
add_subdirectory(lib/AsmParser)
|
|
|
|
add_subdirectory(lib/Debugger)
|
|
|
|
add_subdirectory(lib/Archive)
|
|
|
|
|
|
|
|
add_subdirectory(tools)
|
|
|
|
|
|
|
|
add_subdirectory(examples)
|
2008-10-22 02:56:07 +00:00
|
|
|
|
|
|
|
install(DIRECTORY include
|
|
|
|
DESTINATION .
|
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
PATTERN "*.cmake" EXCLUDE
|
|
|
|
PATTERN "*.in" EXCLUDE
|
|
|
|
)
|
|
|
|
|
|
|
|
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include
|
|
|
|
DESTINATION .
|
|
|
|
)
|
|
|
|
|
|
|
|
# TODO: make and install documentation.
|