2008-11-14 22:06:14 +00:00
|
|
|
include(LLVMProcessSources)
|
2011-04-05 17:02:48 +00:00
|
|
|
include(LLVM-Config)
|
2008-09-22 01:08:49 +00:00
|
|
|
|
|
|
|
macro(add_llvm_library name)
|
2008-11-15 02:08:08 +00:00
|
|
|
llvm_process_sources( ALL_FILES ${ARGN} )
|
|
|
|
add_library( ${name} ${ALL_FILES} )
|
2011-02-18 22:06:14 +00:00
|
|
|
set_property( GLOBAL APPEND PROPERTY LLVM_LIBS ${name} )
|
2008-09-22 18:21:51 +00:00
|
|
|
if( LLVM_COMMON_DEPENDS )
|
|
|
|
add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} )
|
|
|
|
endif( LLVM_COMMON_DEPENDS )
|
2010-10-14 15:54:41 +00:00
|
|
|
|
|
|
|
if( BUILD_SHARED_LIBS )
|
2011-03-12 16:48:54 +00:00
|
|
|
llvm_config( ${name} ${LLVM_LINK_COMPONENTS} )
|
2010-10-14 15:54:41 +00:00
|
|
|
endif()
|
|
|
|
|
2011-03-29 20:51:08 +00:00
|
|
|
# Ensure that the system libraries always comes last on the
|
|
|
|
# list. Without this, linking the unit tests on MinGW fails.
|
|
|
|
link_system_libs( ${name} )
|
|
|
|
|
2011-04-29 02:12:06 +00:00
|
|
|
if( EXCLUDE_FROM_ALL )
|
|
|
|
set_target_properties( ${name} PROPERTIES EXCLUDE_FROM_ALL ON)
|
|
|
|
else()
|
|
|
|
install(TARGETS ${name}
|
|
|
|
LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX}
|
|
|
|
ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX})
|
|
|
|
endif()
|
2011-02-20 22:06:10 +00:00
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Libraries")
|
2011-11-29 01:31:52 +00:00
|
|
|
|
|
|
|
# Add the explicit dependency information for this library.
|
|
|
|
#
|
|
|
|
# It would be nice to verify that we have the dependencies for this library
|
|
|
|
# name, but using get_property(... SET) doesn't suffice to determine if a
|
|
|
|
# property has been set to an empty value.
|
|
|
|
get_property(lib_deps GLOBAL PROPERTY LLVMBUILD_LIB_DEPS_${name})
|
|
|
|
target_link_libraries(${name} ${lib_deps})
|
2008-09-22 01:08:49 +00:00
|
|
|
endmacro(add_llvm_library name)
|
|
|
|
|
2009-11-10 02:45:37 +00:00
|
|
|
macro(add_llvm_loadable_module name)
|
2010-10-22 19:03:24 +00:00
|
|
|
if( NOT LLVM_ON_UNIX OR CYGWIN )
|
2009-11-10 02:45:37 +00:00
|
|
|
message(STATUS "Loadable modules not supported on this platform.
|
|
|
|
${name} ignored.")
|
2010-12-10 02:15:36 +00:00
|
|
|
# Add empty "phony" target
|
|
|
|
add_custom_target(${name})
|
2009-11-10 02:45:37 +00:00
|
|
|
else()
|
|
|
|
llvm_process_sources( ALL_FILES ${ARGN} )
|
2010-12-22 08:30:17 +00:00
|
|
|
if (MODULE)
|
|
|
|
set(libkind MODULE)
|
|
|
|
else()
|
|
|
|
set(libkind SHARED)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library( ${name} ${libkind} ${ALL_FILES} )
|
2009-11-10 02:45:37 +00:00
|
|
|
set_target_properties( ${name} PROPERTIES PREFIX "" )
|
2009-11-10 15:30:33 +00:00
|
|
|
|
2011-03-12 16:48:54 +00:00
|
|
|
llvm_config( ${name} ${LLVM_LINK_COMPONENTS} )
|
2011-03-29 20:51:08 +00:00
|
|
|
link_system_libs( ${name} )
|
2011-03-12 16:48:54 +00:00
|
|
|
|
2009-11-10 15:30:33 +00:00
|
|
|
if (APPLE)
|
|
|
|
# Darwin-specific linker flags for loadable modules.
|
|
|
|
set_target_properties(${name} PROPERTIES
|
|
|
|
LINK_FLAGS "-Wl,-flat_namespace -Wl,-undefined -Wl,suppress")
|
|
|
|
endif()
|
|
|
|
|
2011-04-26 14:55:27 +00:00
|
|
|
if( EXCLUDE_FROM_ALL )
|
2011-04-29 02:12:06 +00:00
|
|
|
set_target_properties( ${name} PROPERTIES EXCLUDE_FROM_ALL ON)
|
2011-04-26 14:55:27 +00:00
|
|
|
else()
|
|
|
|
install(TARGETS ${name}
|
|
|
|
LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX}
|
|
|
|
ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX})
|
|
|
|
endif()
|
2009-11-10 02:45:37 +00:00
|
|
|
endif()
|
2011-02-20 22:06:10 +00:00
|
|
|
|
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Loadable modules")
|
2009-11-10 02:45:37 +00:00
|
|
|
endmacro(add_llvm_loadable_module name)
|
|
|
|
|
|
|
|
|
2008-09-22 01:08:49 +00:00
|
|
|
macro(add_llvm_executable name)
|
2008-11-15 02:08:08 +00:00
|
|
|
llvm_process_sources( ALL_FILES ${ARGN} )
|
2009-11-23 00:21:43 +00:00
|
|
|
if( EXCLUDE_FROM_ALL )
|
|
|
|
add_executable(${name} EXCLUDE_FROM_ALL ${ALL_FILES})
|
|
|
|
else()
|
|
|
|
add_executable(${name} ${ALL_FILES})
|
|
|
|
endif()
|
|
|
|
set(EXCLUDE_FROM_ALL OFF)
|
2011-03-29 20:51:08 +00:00
|
|
|
llvm_config( ${name} ${LLVM_LINK_COMPONENTS} )
|
2009-08-14 04:38:57 +00:00
|
|
|
if( LLVM_COMMON_DEPENDS )
|
|
|
|
add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} )
|
|
|
|
endif( LLVM_COMMON_DEPENDS )
|
2011-03-29 20:51:08 +00:00
|
|
|
link_system_libs( ${name} )
|
2008-09-22 01:08:49 +00:00
|
|
|
endmacro(add_llvm_executable name)
|
|
|
|
|
|
|
|
|
|
|
|
macro(add_llvm_tool name)
|
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR})
|
2009-11-23 00:32:42 +00:00
|
|
|
if( NOT LLVM_BUILD_TOOLS )
|
2009-11-23 00:21:43 +00:00
|
|
|
set(EXCLUDE_FROM_ALL ON)
|
|
|
|
endif()
|
2010-09-25 20:25:25 +00:00
|
|
|
add_llvm_executable(${name} ${ARGN})
|
2009-11-23 00:32:42 +00:00
|
|
|
if( LLVM_BUILD_TOOLS )
|
|
|
|
install(TARGETS ${name} RUNTIME DESTINATION bin)
|
|
|
|
endif()
|
2011-02-20 22:06:10 +00:00
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Tools")
|
2008-09-22 01:08:49 +00:00
|
|
|
endmacro(add_llvm_tool name)
|
|
|
|
|
|
|
|
|
|
|
|
macro(add_llvm_example name)
|
|
|
|
# set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_EXAMPLES_BINARY_DIR})
|
2009-11-23 00:32:42 +00:00
|
|
|
if( NOT LLVM_BUILD_EXAMPLES )
|
2009-11-23 00:21:43 +00:00
|
|
|
set(EXCLUDE_FROM_ALL ON)
|
|
|
|
endif()
|
2010-09-25 20:25:25 +00:00
|
|
|
add_llvm_executable(${name} ${ARGN})
|
2009-11-23 00:32:42 +00:00
|
|
|
if( LLVM_BUILD_EXAMPLES )
|
|
|
|
install(TARGETS ${name} RUNTIME DESTINATION examples)
|
|
|
|
endif()
|
2011-02-20 22:06:10 +00:00
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Examples")
|
2008-09-22 01:08:49 +00:00
|
|
|
endmacro(add_llvm_example name)
|
2008-09-26 04:40:32 +00:00
|
|
|
|
|
|
|
|
2011-02-20 22:06:10 +00:00
|
|
|
macro(add_llvm_utility name)
|
|
|
|
add_llvm_executable(${name} ${ARGN})
|
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Utils")
|
|
|
|
endmacro(add_llvm_utility name)
|
|
|
|
|
|
|
|
|
2008-09-26 04:40:32 +00:00
|
|
|
macro(add_llvm_target target_name)
|
2011-07-25 20:17:01 +00:00
|
|
|
include_directories(BEFORE
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR})
|
2009-06-23 17:57:35 +00:00
|
|
|
add_llvm_library(LLVM${target_name} ${ARGN} ${TABLEGEN_OUTPUT})
|
2011-02-20 02:55:27 +00:00
|
|
|
set( CURRENT_LLVM_TARGET LLVM${target_name} )
|
2008-09-26 04:40:32 +00:00
|
|
|
endmacro(add_llvm_target)
|
2012-04-26 19:43:35 +00:00
|
|
|
|
|
|
|
# Add external project that may want to be built as part of llvm such as Clang,
|
|
|
|
# lld, and Polly. This adds two options. One for the source directory of the
|
|
|
|
# project, which defaults to ${CMAKE_CURRENT_SOURCE_DIR}/${name}. Another to
|
|
|
|
# enable or disable building it with everthing else.
|
|
|
|
macro(add_llvm_external_project name)
|
|
|
|
string(TOUPPER ${name} nameUPPER)
|
|
|
|
set(LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/${name}"
|
|
|
|
CACHE PATH "Path to ${name} source directory")
|
|
|
|
if (NOT ${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR} STREQUAL ""
|
|
|
|
AND EXISTS ${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR}/CMakeLists.txt)
|
|
|
|
option(LLVM_EXTERNAL_${nameUPPER}_BUILD
|
|
|
|
"Whether to build ${name} as part of LLVM" ON)
|
|
|
|
if (LLVM_EXTERNAL_${nameUPPER}_BUILD)
|
|
|
|
add_subdirectory(${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR} ${name})
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endmacro(add_llvm_external_project)
|
2012-06-21 05:16:58 +00:00
|
|
|
|
|
|
|
# Generic support for adding a unittest.
|
|
|
|
function(add_unittest test_suite test_dirname)
|
|
|
|
string(REGEX MATCH "([^/]+)$" test_name ${test_dirname})
|
|
|
|
if (CMAKE_BUILD_TYPE)
|
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/${test_dirname}/${CMAKE_BUILD_TYPE})
|
|
|
|
else()
|
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/${test_dirname})
|
|
|
|
endif()
|
|
|
|
if( NOT LLVM_BUILD_TESTS )
|
|
|
|
set(EXCLUDE_FROM_ALL ON)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_llvm_executable(${test_name} ${ARGN})
|
|
|
|
target_link_libraries(${test_name}
|
|
|
|
gtest
|
|
|
|
gtest_main
|
|
|
|
LLVMSupport # gtest needs it for raw_ostream.
|
|
|
|
)
|
|
|
|
|
|
|
|
add_dependencies(${test_suite} ${test_name})
|
|
|
|
get_target_property(test_suite_folder ${test_suite} FOLDER)
|
|
|
|
if (NOT ${test_suite_folder} STREQUAL "NOTFOUND")
|
|
|
|
set_property(TARGET ${test_name} PROPERTY FOLDER "${test_suite_folder}")
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
# Visual Studio 2012 only supports up to 8 template parameters in
|
|
|
|
# std::tr1::tuple by default, but gtest requires 10
|
|
|
|
if (MSVC AND MSVC_VERSION EQUAL 1700)
|
|
|
|
set_property(TARGET ${test_name} APPEND PROPERTY COMPILE_DEFINITIONS _VARIADIC_MAX=10)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
include_directories(${LLVM_MAIN_SRC_DIR}/utils/unittest/googletest/include)
|
|
|
|
set_property(TARGET ${test_name} APPEND PROPERTY COMPILE_DEFINITIONS GTEST_HAS_RTTI=0)
|
|
|
|
if (LLVM_COMPILER_IS_GCC_COMPATIBLE)
|
|
|
|
set_property(TARGET ${test_name} APPEND_STRING PROPERTY COMPILE_FLAGS " -fno-rtti")
|
|
|
|
elseif (MSVC)
|
|
|
|
set_property(TARGET ${test_name} APPEND_STRING PROPERTY COMPILE_FLAGS " /GR-")
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (NOT LLVM_ENABLE_THREADS)
|
|
|
|
set_property(TARGET ${test_name} APPEND PROPERTY COMPILE_DEFINITIONS GTEST_HAS_PTHREAD=0)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (SUPPORTS_NO_VARIADIC_MACROS_FLAG)
|
|
|
|
set_property(TARGET ${test_name} APPEND_STRING PROPERTY COMPILE_FLAGS " -Wno-variadic-macros")
|
|
|
|
endif ()
|
|
|
|
endfunction()
|