2008-11-15 06:06:14 +08:00
|
|
|
include(LLVMProcessSources)
|
2010-09-14 07:59:48 +08:00
|
|
|
include(LLVMConfig)
|
2008-09-22 09:08:49 +08:00
|
|
|
|
|
|
|
macro(add_llvm_library name)
|
2008-11-15 10:08:08 +08:00
|
|
|
llvm_process_sources( ALL_FILES ${ARGN} )
|
|
|
|
add_library( ${name} ${ALL_FILES} )
|
2011-02-19 06:06:14 +08:00
|
|
|
set_property( GLOBAL APPEND PROPERTY LLVM_LIBS ${name} )
|
2008-09-23 02:21:51 +08:00
|
|
|
if( LLVM_COMMON_DEPENDS )
|
|
|
|
add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} )
|
|
|
|
endif( LLVM_COMMON_DEPENDS )
|
2010-10-14 23:54:41 +08:00
|
|
|
|
|
|
|
if( BUILD_SHARED_LIBS )
|
2011-03-13 00:48:54 +08:00
|
|
|
llvm_config( ${name} ${LLVM_LINK_COMPONENTS} )
|
2010-10-14 23:54:41 +08:00
|
|
|
endif()
|
|
|
|
|
2011-03-30 04:51:08 +08: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} )
|
|
|
|
|
2008-10-22 10:56:07 +08:00
|
|
|
install(TARGETS ${name}
|
2009-06-12 10:49:53 +08:00
|
|
|
LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX}
|
|
|
|
ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX})
|
2009-08-16 13:16:43 +08:00
|
|
|
# The LLVM Target library shall be built before its sublibraries
|
|
|
|
# (asmprinter, etc) because those may use tablegenned files which
|
|
|
|
# generation is triggered by the main LLVM target library. Necessary
|
|
|
|
# for parallel builds:
|
|
|
|
if( CURRENT_LLVM_TARGET )
|
2009-08-16 17:44:27 +08:00
|
|
|
add_dependencies(${name} ${CURRENT_LLVM_TARGET})
|
2009-08-16 13:16:43 +08:00
|
|
|
endif()
|
2011-02-21 06:06:10 +08:00
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Libraries")
|
2008-09-22 09:08:49 +08:00
|
|
|
endmacro(add_llvm_library name)
|
|
|
|
|
|
|
|
|
2009-11-10 10:45:37 +08:00
|
|
|
macro(add_llvm_loadable_module name)
|
2010-10-23 03:03:24 +08:00
|
|
|
if( NOT LLVM_ON_UNIX OR CYGWIN )
|
2009-11-10 10:45:37 +08:00
|
|
|
message(STATUS "Loadable modules not supported on this platform.
|
|
|
|
${name} ignored.")
|
2010-12-10 10:15:36 +08:00
|
|
|
# Add empty "phony" target
|
|
|
|
add_custom_target(${name})
|
2009-11-10 10:45:37 +08:00
|
|
|
else()
|
|
|
|
llvm_process_sources( ALL_FILES ${ARGN} )
|
2010-12-22 16:30:17 +08:00
|
|
|
if (MODULE)
|
|
|
|
set(libkind MODULE)
|
|
|
|
else()
|
|
|
|
set(libkind SHARED)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library( ${name} ${libkind} ${ALL_FILES} )
|
2009-11-10 10:45:37 +08:00
|
|
|
set_target_properties( ${name} PROPERTIES PREFIX "" )
|
2009-11-10 23:30:33 +08:00
|
|
|
|
2011-03-13 00:48:54 +08:00
|
|
|
llvm_config( ${name} ${LLVM_LINK_COMPONENTS} )
|
2011-03-30 04:51:08 +08:00
|
|
|
link_system_libs( ${name} )
|
2011-03-13 00:48:54 +08:00
|
|
|
|
2009-11-10 23:30:33 +08: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()
|
|
|
|
|
2009-11-10 10:45:37 +08:00
|
|
|
install(TARGETS ${name}
|
|
|
|
LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX}
|
|
|
|
ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX})
|
|
|
|
endif()
|
2011-02-21 06:06:10 +08:00
|
|
|
|
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Loadable modules")
|
2009-11-10 10:45:37 +08:00
|
|
|
endmacro(add_llvm_loadable_module name)
|
|
|
|
|
|
|
|
|
2008-09-22 09:08:49 +08:00
|
|
|
macro(add_llvm_executable name)
|
2008-11-15 10:08:08 +08:00
|
|
|
llvm_process_sources( ALL_FILES ${ARGN} )
|
2009-11-23 08:21:43 +08: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-30 04:51:08 +08:00
|
|
|
target_link_libraries( ${name} ${LLVM_USED_LIBS} )
|
|
|
|
llvm_config( ${name} ${LLVM_LINK_COMPONENTS} )
|
2009-08-14 12:38:57 +08:00
|
|
|
if( LLVM_COMMON_DEPENDS )
|
|
|
|
add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} )
|
|
|
|
endif( LLVM_COMMON_DEPENDS )
|
2011-03-30 04:51:08 +08:00
|
|
|
link_system_libs( ${name} )
|
2008-09-22 09:08:49 +08:00
|
|
|
endmacro(add_llvm_executable name)
|
|
|
|
|
|
|
|
|
|
|
|
macro(add_llvm_tool name)
|
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR})
|
2009-11-23 08:32:42 +08:00
|
|
|
if( NOT LLVM_BUILD_TOOLS )
|
2009-11-23 08:21:43 +08:00
|
|
|
set(EXCLUDE_FROM_ALL ON)
|
|
|
|
endif()
|
2010-09-26 04:25:25 +08:00
|
|
|
add_llvm_executable(${name} ${ARGN})
|
2009-11-23 08:32:42 +08:00
|
|
|
if( LLVM_BUILD_TOOLS )
|
|
|
|
install(TARGETS ${name} RUNTIME DESTINATION bin)
|
|
|
|
endif()
|
2011-02-21 06:06:10 +08:00
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Tools")
|
2008-09-22 09:08:49 +08:00
|
|
|
endmacro(add_llvm_tool name)
|
|
|
|
|
|
|
|
|
|
|
|
macro(add_llvm_example name)
|
|
|
|
# set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_EXAMPLES_BINARY_DIR})
|
2009-11-23 08:32:42 +08:00
|
|
|
if( NOT LLVM_BUILD_EXAMPLES )
|
2009-11-23 08:21:43 +08:00
|
|
|
set(EXCLUDE_FROM_ALL ON)
|
|
|
|
endif()
|
2010-09-26 04:25:25 +08:00
|
|
|
add_llvm_executable(${name} ${ARGN})
|
2009-11-23 08:32:42 +08:00
|
|
|
if( LLVM_BUILD_EXAMPLES )
|
|
|
|
install(TARGETS ${name} RUNTIME DESTINATION examples)
|
|
|
|
endif()
|
2011-02-21 06:06:10 +08:00
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Examples")
|
2008-09-22 09:08:49 +08:00
|
|
|
endmacro(add_llvm_example name)
|
2008-09-26 12:40:32 +08:00
|
|
|
|
|
|
|
|
2011-02-21 06:06:10 +08: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 12:40:32 +08:00
|
|
|
macro(add_llvm_target target_name)
|
|
|
|
if( TABLEGEN_OUTPUT )
|
|
|
|
add_custom_target(${target_name}Table_gen
|
|
|
|
DEPENDS ${TABLEGEN_OUTPUT})
|
|
|
|
add_dependencies(${target_name}Table_gen ${LLVM_COMMON_DEPENDS})
|
|
|
|
endif( TABLEGEN_OUTPUT )
|
|
|
|
include_directories(BEFORE ${CMAKE_CURRENT_BINARY_DIR})
|
2009-06-24 01:57:35 +08:00
|
|
|
add_llvm_library(LLVM${target_name} ${ARGN} ${TABLEGEN_OUTPUT})
|
2009-06-24 05:05:21 +08:00
|
|
|
if ( TABLEGEN_OUTPUT )
|
|
|
|
add_dependencies(LLVM${target_name} ${target_name}Table_gen)
|
2011-02-21 06:06:10 +08:00
|
|
|
set_target_properties(${target_name}Table_gen PROPERTIES FOLDER "Tablegenning")
|
2009-06-24 05:05:21 +08:00
|
|
|
endif (TABLEGEN_OUTPUT)
|
2011-02-20 10:55:27 +08:00
|
|
|
set( CURRENT_LLVM_TARGET LLVM${target_name} )
|
2008-09-26 12:40:32 +08:00
|
|
|
endmacro(add_llvm_target)
|