Oscar Fuentes | 751ea9d | 2008-11-14 22:06:14 +0000 | [diff] [blame] | 1 | include(LLVMProcessSources) |
Oscar Fuentes | d8a6dd6 | 2011-04-05 17:02:48 +0000 | [diff] [blame] | 2 | include(LLVM-Config) |
John Brawn | c23801d | 2015-09-29 14:33:58 +0000 | [diff] [blame] | 3 | include(DetermineGCCCompatible) |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 4 | |
NAKAMURA Takumi | e42fd0d | 2014-01-07 10:24:14 +0000 | [diff] [blame] | 5 | function(llvm_update_compile_flags name) |
NAKAMURA Takumi | b524c22 | 2014-01-28 11:40:04 +0000 | [diff] [blame] | 6 | get_property(sources TARGET ${name} PROPERTY SOURCES) |
| 7 | if("${sources}" MATCHES "\\.c(;|$)") |
NAKAMURA Takumi | a679f43 | 2014-01-28 09:44:06 +0000 | [diff] [blame] | 8 | set(update_src_props ON) |
NAKAMURA Takumi | e42fd0d | 2014-01-07 10:24:14 +0000 | [diff] [blame] | 9 | endif() |
NAKAMURA Takumi | a679f43 | 2014-01-28 09:44:06 +0000 | [diff] [blame] | 10 | |
Reid Kleckner | 8c18019 | 2016-03-30 17:28:21 +0000 | [diff] [blame] | 11 | # LLVM_REQUIRES_EH is an internal flag that individual targets can use to |
| 12 | # force EH |
| 13 | if(LLVM_REQUIRES_EH OR LLVM_ENABLE_EH) |
Dan Liew | a5bdc84 | 2014-07-22 15:41:18 +0000 | [diff] [blame] | 14 | if(NOT (LLVM_REQUIRES_RTTI OR LLVM_ENABLE_RTTI)) |
| 15 | message(AUTHOR_WARNING "Exception handling requires RTTI. Enabling RTTI for ${name}") |
| 16 | set(LLVM_REQUIRES_RTTI ON) |
| 17 | endif() |
Andrey Bokhanko | b7201cc | 2016-09-01 14:39:54 +0000 | [diff] [blame] | 18 | if(MSVC) |
| 19 | list(APPEND LLVM_COMPILE_FLAGS "/EHsc") |
| 20 | endif() |
NAKAMURA Takumi | a679f43 | 2014-01-28 09:44:06 +0000 | [diff] [blame] | 21 | else() |
| 22 | if(LLVM_COMPILER_IS_GCC_COMPATIBLE) |
NAKAMURA Takumi | 13961cb | 2014-01-30 22:55:25 +0000 | [diff] [blame] | 23 | list(APPEND LLVM_COMPILE_FLAGS "-fno-exceptions") |
NAKAMURA Takumi | a679f43 | 2014-01-28 09:44:06 +0000 | [diff] [blame] | 24 | elseif(MSVC) |
| 25 | list(APPEND LLVM_COMPILE_DEFINITIONS _HAS_EXCEPTIONS=0) |
NAKAMURA Takumi | 13961cb | 2014-01-30 22:55:25 +0000 | [diff] [blame] | 26 | list(APPEND LLVM_COMPILE_FLAGS "/EHs-c-") |
NAKAMURA Takumi | a679f43 | 2014-01-28 09:44:06 +0000 | [diff] [blame] | 27 | endif() |
| 28 | endif() |
| 29 | |
Dan Liew | a5bdc84 | 2014-07-22 15:41:18 +0000 | [diff] [blame] | 30 | # LLVM_REQUIRES_RTTI is an internal flag that individual |
| 31 | # targets can use to force RTTI |
Tom Stellard | 18bf626 | 2015-11-04 20:57:43 +0000 | [diff] [blame] | 32 | set(LLVM_CONFIG_HAS_RTTI YES CACHE INTERNAL "") |
Dan Liew | a5bdc84 | 2014-07-22 15:41:18 +0000 | [diff] [blame] | 33 | if(NOT (LLVM_REQUIRES_RTTI OR LLVM_ENABLE_RTTI)) |
Tom Stellard | 18bf626 | 2015-11-04 20:57:43 +0000 | [diff] [blame] | 34 | set(LLVM_CONFIG_HAS_RTTI NO CACHE INTERNAL "") |
NAKAMURA Takumi | e42fd0d | 2014-01-07 10:24:14 +0000 | [diff] [blame] | 35 | list(APPEND LLVM_COMPILE_DEFINITIONS GTEST_HAS_RTTI=0) |
| 36 | if (LLVM_COMPILER_IS_GCC_COMPATIBLE) |
NAKAMURA Takumi | 13961cb | 2014-01-30 22:55:25 +0000 | [diff] [blame] | 37 | list(APPEND LLVM_COMPILE_FLAGS "-fno-rtti") |
NAKAMURA Takumi | e42fd0d | 2014-01-07 10:24:14 +0000 | [diff] [blame] | 38 | elseif (MSVC) |
NAKAMURA Takumi | 13961cb | 2014-01-30 22:55:25 +0000 | [diff] [blame] | 39 | list(APPEND LLVM_COMPILE_FLAGS "/GR-") |
NAKAMURA Takumi | e42fd0d | 2014-01-07 10:24:14 +0000 | [diff] [blame] | 40 | endif () |
Andrey Bokhanko | b7201cc | 2016-09-01 14:39:54 +0000 | [diff] [blame] | 41 | elseif(MSVC) |
| 42 | list(APPEND LLVM_COMPILE_FLAGS "/GR") |
NAKAMURA Takumi | e42fd0d | 2014-01-07 10:24:14 +0000 | [diff] [blame] | 43 | endif() |
| 44 | |
NAKAMURA Takumi | 13961cb | 2014-01-30 22:55:25 +0000 | [diff] [blame] | 45 | # Assume that; |
| 46 | # - LLVM_COMPILE_FLAGS is list. |
| 47 | # - PROPERTY COMPILE_FLAGS is string. |
Andrew Wilkins | 9211396 | 2015-09-01 03:14:31 +0000 | [diff] [blame] | 48 | string(REPLACE ";" " " target_compile_flags " ${LLVM_COMPILE_FLAGS}") |
NAKAMURA Takumi | 13961cb | 2014-01-30 22:55:25 +0000 | [diff] [blame] | 49 | |
NAKAMURA Takumi | a679f43 | 2014-01-28 09:44:06 +0000 | [diff] [blame] | 50 | if(update_src_props) |
NAKAMURA Takumi | b524c22 | 2014-01-28 11:40:04 +0000 | [diff] [blame] | 51 | foreach(fn ${sources}) |
NAKAMURA Takumi | a679f43 | 2014-01-28 09:44:06 +0000 | [diff] [blame] | 52 | get_filename_component(suf ${fn} EXT) |
| 53 | if("${suf}" STREQUAL ".cpp") |
NAKAMURA Takumi | d40cdc9 | 2014-01-31 17:32:42 +0000 | [diff] [blame] | 54 | set_property(SOURCE ${fn} APPEND_STRING PROPERTY |
| 55 | COMPILE_FLAGS "${target_compile_flags}") |
NAKAMURA Takumi | a679f43 | 2014-01-28 09:44:06 +0000 | [diff] [blame] | 56 | endif() |
| 57 | endforeach() |
| 58 | else() |
| 59 | # Update target props, since all sources are C++. |
| 60 | set_property(TARGET ${name} APPEND_STRING PROPERTY |
| 61 | COMPILE_FLAGS "${target_compile_flags}") |
| 62 | endif() |
| 63 | |
NAKAMURA Takumi | e42fd0d | 2014-01-07 10:24:14 +0000 | [diff] [blame] | 64 | set_property(TARGET ${name} APPEND PROPERTY COMPILE_DEFINITIONS ${LLVM_COMPILE_DEFINITIONS}) |
| 65 | endfunction() |
| 66 | |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 67 | function(add_llvm_symbol_exports target_name export_file) |
| 68 | if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") |
NAKAMURA Takumi | bbd2aaa | 2013-12-29 16:15:26 +0000 | [diff] [blame] | 69 | set(native_export_file "${target_name}.exports") |
NAKAMURA Takumi | 8121075 | 2013-12-29 16:15:18 +0000 | [diff] [blame] | 70 | add_custom_command(OUTPUT ${native_export_file} |
| 71 | COMMAND sed -e "s/^/_/" < ${export_file} > ${native_export_file} |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 72 | DEPENDS ${export_file} |
| 73 | VERBATIM |
| 74 | COMMENT "Creating export file for ${target_name}") |
| 75 | set_property(TARGET ${target_name} APPEND_STRING PROPERTY |
NAKAMURA Takumi | 8121075 | 2013-12-29 16:15:18 +0000 | [diff] [blame] | 76 | LINK_FLAGS " -Wl,-exported_symbols_list,${CMAKE_CURRENT_BINARY_DIR}/${native_export_file}") |
Chandler Carruth | 2aff750 | 2016-07-19 22:46:39 +0000 | [diff] [blame] | 77 | elseif(${CMAKE_SYSTEM_NAME} MATCHES "AIX") |
| 78 | set_property(TARGET ${target_name} APPEND_STRING PROPERTY |
| 79 | LINK_FLAGS " -Wl,-bE:${export_file}") |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 80 | elseif(LLVM_HAVE_LINK_VERSION_SCRIPT) |
| 81 | # Gold and BFD ld require a version script rather than a plain list. |
NAKAMURA Takumi | bbd2aaa | 2013-12-29 16:15:26 +0000 | [diff] [blame] | 82 | set(native_export_file "${target_name}.exports") |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 83 | # FIXME: Don't write the "local:" line on OpenBSD. |
NAKAMURA Takumi | 8121075 | 2013-12-29 16:15:18 +0000 | [diff] [blame] | 84 | add_custom_command(OUTPUT ${native_export_file} |
| 85 | COMMAND echo "{" > ${native_export_file} |
| 86 | COMMAND grep -q "[[:alnum:]]" ${export_file} && echo " global:" >> ${native_export_file} || : |
| 87 | COMMAND sed -e "s/$/;/" -e "s/^/ /" < ${export_file} >> ${native_export_file} |
| 88 | COMMAND echo " local: *;" >> ${native_export_file} |
| 89 | COMMAND echo "};" >> ${native_export_file} |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 90 | DEPENDS ${export_file} |
| 91 | VERBATIM |
| 92 | COMMENT "Creating export file for ${target_name}") |
Rafael Espindola | ec1d069 | 2015-06-22 12:34:54 +0000 | [diff] [blame] | 93 | if (${CMAKE_SYSTEM_NAME} MATCHES "SunOS") |
| 94 | set_property(TARGET ${target_name} APPEND_STRING PROPERTY |
| 95 | LINK_FLAGS " -Wl,-M,${CMAKE_CURRENT_BINARY_DIR}/${native_export_file}") |
| 96 | else() |
| 97 | set_property(TARGET ${target_name} APPEND_STRING PROPERTY |
| 98 | LINK_FLAGS " -Wl,--version-script,${CMAKE_CURRENT_BINARY_DIR}/${native_export_file}") |
| 99 | endif() |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 100 | else() |
NAKAMURA Takumi | bbd2aaa | 2013-12-29 16:15:26 +0000 | [diff] [blame] | 101 | set(native_export_file "${target_name}.def") |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 102 | |
NAKAMURA Takumi | 8121075 | 2013-12-29 16:15:18 +0000 | [diff] [blame] | 103 | add_custom_command(OUTPUT ${native_export_file} |
NAKAMURA Takumi | 3eb0666 | 2015-07-05 08:56:38 +0000 | [diff] [blame] | 104 | COMMAND ${PYTHON_EXECUTABLE} -c "import sys;print(''.join(['EXPORTS\\n']+sys.stdin.readlines(),))" |
| 105 | < ${export_file} > ${native_export_file} |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 106 | DEPENDS ${export_file} |
| 107 | VERBATIM |
| 108 | COMMENT "Creating export file for ${target_name}") |
Chris Bieneman | 970555b | 2014-10-30 22:37:58 +0000 | [diff] [blame] | 109 | set(export_file_linker_flag "${CMAKE_CURRENT_BINARY_DIR}/${native_export_file}") |
| 110 | if(MSVC) |
Reid Kleckner | ec6789b | 2015-04-22 16:23:00 +0000 | [diff] [blame] | 111 | set(export_file_linker_flag "/DEF:\"${export_file_linker_flag}\"") |
NAKAMURA Takumi | 0a062bd | 2013-12-29 16:19:13 +0000 | [diff] [blame] | 112 | endif() |
Chris Bieneman | 970555b | 2014-10-30 22:37:58 +0000 | [diff] [blame] | 113 | set_property(TARGET ${target_name} APPEND_STRING PROPERTY |
| 114 | LINK_FLAGS " ${export_file_linker_flag}") |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 115 | endif() |
| 116 | |
| 117 | add_custom_target(${target_name}_exports DEPENDS ${native_export_file}) |
NAKAMURA Takumi | 14f1f44 | 2014-01-27 17:39:38 +0000 | [diff] [blame] | 118 | set_target_properties(${target_name}_exports PROPERTIES FOLDER "Misc") |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 119 | |
| 120 | get_property(srcs TARGET ${target_name} PROPERTY SOURCES) |
| 121 | foreach(src ${srcs}) |
| 122 | get_filename_component(extension ${src} EXT) |
| 123 | if(extension STREQUAL ".cpp") |
| 124 | set(first_source_file ${src}) |
| 125 | break() |
| 126 | endif() |
| 127 | endforeach() |
| 128 | |
| 129 | # Force re-linking when the exports file changes. Actually, it |
| 130 | # forces recompilation of the source file. The LINK_DEPENDS target |
| 131 | # property only works for makefile-based generators. |
Quentin Colombet | cb2ae8d | 2014-01-16 06:43:55 +0000 | [diff] [blame] | 132 | # FIXME: This is not safe because this will create the same target |
| 133 | # ${native_export_file} in several different file: |
| 134 | # - One where we emitted ${target_name}_exports |
| 135 | # - One where we emitted the build command for the following object. |
| 136 | # set_property(SOURCE ${first_source_file} APPEND PROPERTY |
| 137 | # OBJECT_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${native_export_file}) |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 138 | |
| 139 | set_property(DIRECTORY APPEND |
| 140 | PROPERTY ADDITIONAL_MAKE_CLEAN_FILES ${native_export_file}) |
| 141 | |
| 142 | add_dependencies(${target_name} ${target_name}_exports) |
NAKAMURA Takumi | 679e772 | 2014-02-21 14:17:29 +0000 | [diff] [blame] | 143 | |
| 144 | # Add dependency to *_exports later -- CMake issue 14747 |
| 145 | list(APPEND LLVM_COMMON_DEPENDS ${target_name}_exports) |
| 146 | set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE) |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 147 | endfunction(add_llvm_symbol_exports) |
| 148 | |
Rafael Espindola | 19c39ee | 2014-12-04 17:54:35 +0000 | [diff] [blame] | 149 | if(NOT WIN32 AND NOT APPLE) |
NAKAMURA Takumi | 8b1578f | 2015-01-06 09:44:29 +0000 | [diff] [blame] | 150 | execute_process( |
| 151 | COMMAND ${CMAKE_C_COMPILER} -Wl,--version |
| 152 | OUTPUT_VARIABLE stdout |
NAKAMURA Takumi | 2f3e3dd | 2015-01-06 09:44:44 +0000 | [diff] [blame] | 153 | ERROR_QUIET |
NAKAMURA Takumi | 8b1578f | 2015-01-06 09:44:29 +0000 | [diff] [blame] | 154 | ) |
Rafael Espindola | 19c39ee | 2014-12-04 17:54:35 +0000 | [diff] [blame] | 155 | if("${stdout}" MATCHES "GNU gold") |
| 156 | set(LLVM_LINKER_IS_GOLD ON) |
| 157 | endif() |
| 158 | endif() |
| 159 | |
Rafael Espindola | 8cb7876 | 2014-11-02 12:14:22 +0000 | [diff] [blame] | 160 | function(add_link_opts target_name) |
Rafael Espindola | 24766f9 | 2015-04-06 15:04:31 +0000 | [diff] [blame] | 161 | # Don't use linker optimizations in debug builds since it slows down the |
| 162 | # linker in a context where the optimizations are not important. |
| 163 | if (NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG") |
Rafael Espindola | 8cb7876 | 2014-11-02 12:14:22 +0000 | [diff] [blame] | 164 | |
Rafael Espindola | 24766f9 | 2015-04-06 15:04:31 +0000 | [diff] [blame] | 165 | # Pass -O3 to the linker. This enabled different optimizations on different |
| 166 | # linkers. |
Chandler Carruth | 2aff750 | 2016-07-19 22:46:39 +0000 | [diff] [blame] | 167 | if(NOT (${CMAKE_SYSTEM_NAME} MATCHES "Darwin|SunOS|AIX" OR WIN32)) |
Nico Weber | 62588e1 | 2013-12-30 03:36:05 +0000 | [diff] [blame] | 168 | set_property(TARGET ${target_name} APPEND_STRING PROPERTY |
Rafael Espindola | 24766f9 | 2015-04-06 15:04:31 +0000 | [diff] [blame] | 169 | LINK_FLAGS " -Wl,-O3") |
| 170 | endif() |
| 171 | |
| 172 | if(LLVM_LINKER_IS_GOLD) |
| 173 | # With gold gc-sections is always safe. |
NAKAMURA Takumi | 748627c | 2014-10-20 12:12:21 +0000 | [diff] [blame] | 174 | set_property(TARGET ${target_name} APPEND_STRING PROPERTY |
| 175 | LINK_FLAGS " -Wl,--gc-sections") |
Rafael Espindola | 24766f9 | 2015-04-06 15:04:31 +0000 | [diff] [blame] | 176 | # Note that there is a bug with -Wl,--icf=safe so it is not safe |
| 177 | # to enable. See https://sourceware.org/bugzilla/show_bug.cgi?id=17704. |
| 178 | endif() |
| 179 | |
| 180 | if(NOT LLVM_NO_DEAD_STRIP) |
| 181 | if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") |
| 182 | # ld64's implementation of -dead_strip breaks tools that use plugins. |
| 183 | set_property(TARGET ${target_name} APPEND_STRING PROPERTY |
| 184 | LINK_FLAGS " -Wl,-dead_strip") |
Rafael Espindola | c32ed57 | 2015-06-22 15:06:17 +0000 | [diff] [blame] | 185 | elseif(${CMAKE_SYSTEM_NAME} MATCHES "SunOS") |
| 186 | set_property(TARGET ${target_name} APPEND_STRING PROPERTY |
| 187 | LINK_FLAGS " -Wl,-z -Wl,discard-unused=sections") |
Rafael Espindola | 24766f9 | 2015-04-06 15:04:31 +0000 | [diff] [blame] | 188 | elseif(NOT WIN32 AND NOT LLVM_LINKER_IS_GOLD) |
| 189 | # Object files are compiled with -ffunction-data-sections. |
| 190 | # Versions of bfd ld < 2.23.1 have a bug in --gc-sections that breaks |
| 191 | # tools that use plugins. Always pass --gc-sections once we require |
| 192 | # a newer linker. |
| 193 | set_property(TARGET ${target_name} APPEND_STRING PROPERTY |
| 194 | LINK_FLAGS " -Wl,--gc-sections") |
| 195 | endif() |
Nico Weber | 62588e1 | 2013-12-30 03:36:05 +0000 | [diff] [blame] | 196 | endif() |
| 197 | endif() |
Rafael Espindola | 8cb7876 | 2014-11-02 12:14:22 +0000 | [diff] [blame] | 198 | endfunction(add_link_opts) |
Nico Weber | 62588e1 | 2013-12-30 03:36:05 +0000 | [diff] [blame] | 199 | |
NAKAMURA Takumi | baa9f53 | 2013-12-30 06:48:30 +0000 | [diff] [blame] | 200 | # Set each output directory according to ${CMAKE_CONFIGURATION_TYPES}. |
| 201 | # Note: Don't set variables CMAKE_*_OUTPUT_DIRECTORY any more, |
| 202 | # or a certain builder, for eaxample, msbuild.exe, would be confused. |
John Brawn | c11ef2a | 2015-09-30 15:20:51 +0000 | [diff] [blame] | 203 | function(set_output_directory target) |
Ramkumar Ramachandra | cad135a | 2015-11-10 18:26:34 +0000 | [diff] [blame] | 204 | cmake_parse_arguments(ARG "" "BINARY_DIR;LIBRARY_DIR" "" ${ARGN}) |
NAKAMURA Takumi | 38d45a2 | 2014-07-04 04:23:15 +0000 | [diff] [blame] | 205 | |
John Brawn | c11ef2a | 2015-09-30 15:20:51 +0000 | [diff] [blame] | 206 | # module_dir -- corresponding to LIBRARY_OUTPUT_DIRECTORY. |
NAKAMURA Takumi | 44f64ea | 2014-07-13 13:33:26 +0000 | [diff] [blame] | 207 | # It affects output of add_library(MODULE). |
| 208 | if(WIN32 OR CYGWIN) |
| 209 | # DLL platform |
John Brawn | c11ef2a | 2015-09-30 15:20:51 +0000 | [diff] [blame] | 210 | set(module_dir ${ARG_BINARY_DIR}) |
NAKAMURA Takumi | 44f64ea | 2014-07-13 13:33:26 +0000 | [diff] [blame] | 211 | else() |
John Brawn | c11ef2a | 2015-09-30 15:20:51 +0000 | [diff] [blame] | 212 | set(module_dir ${ARG_LIBRARY_DIR}) |
NAKAMURA Takumi | 44f64ea | 2014-07-13 13:33:26 +0000 | [diff] [blame] | 213 | endif() |
NAKAMURA Takumi | baa9f53 | 2013-12-30 06:48:30 +0000 | [diff] [blame] | 214 | if(NOT "${CMAKE_CFG_INTDIR}" STREQUAL ".") |
| 215 | foreach(build_mode ${CMAKE_CONFIGURATION_TYPES}) |
| 216 | string(TOUPPER "${build_mode}" CONFIG_SUFFIX) |
John Brawn | c11ef2a | 2015-09-30 15:20:51 +0000 | [diff] [blame] | 217 | if(ARG_BINARY_DIR) |
| 218 | string(REPLACE ${CMAKE_CFG_INTDIR} ${build_mode} bi ${ARG_BINARY_DIR}) |
| 219 | set_target_properties(${target} PROPERTIES "RUNTIME_OUTPUT_DIRECTORY_${CONFIG_SUFFIX}" ${bi}) |
| 220 | endif() |
| 221 | if(ARG_LIBRARY_DIR) |
| 222 | string(REPLACE ${CMAKE_CFG_INTDIR} ${build_mode} li ${ARG_LIBRARY_DIR}) |
| 223 | set_target_properties(${target} PROPERTIES "ARCHIVE_OUTPUT_DIRECTORY_${CONFIG_SUFFIX}" ${li}) |
| 224 | endif() |
| 225 | if(module_dir) |
| 226 | string(REPLACE ${CMAKE_CFG_INTDIR} ${build_mode} mi ${module_dir}) |
| 227 | set_target_properties(${target} PROPERTIES "LIBRARY_OUTPUT_DIRECTORY_${CONFIG_SUFFIX}" ${mi}) |
| 228 | endif() |
NAKAMURA Takumi | baa9f53 | 2013-12-30 06:48:30 +0000 | [diff] [blame] | 229 | endforeach() |
| 230 | else() |
John Brawn | c11ef2a | 2015-09-30 15:20:51 +0000 | [diff] [blame] | 231 | if(ARG_BINARY_DIR) |
| 232 | set_target_properties(${target} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${ARG_BINARY_DIR}) |
| 233 | endif() |
| 234 | if(ARG_LIBRARY_DIR) |
| 235 | set_target_properties(${target} PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${ARG_LIBRARY_DIR}) |
| 236 | endif() |
| 237 | if(module_dir) |
| 238 | set_target_properties(${target} PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${module_dir}) |
| 239 | endif() |
NAKAMURA Takumi | baa9f53 | 2013-12-30 06:48:30 +0000 | [diff] [blame] | 240 | endif() |
| 241 | endfunction() |
| 242 | |
Greg Bedwell | 95213c3 | 2015-06-12 15:58:29 +0000 | [diff] [blame] | 243 | # If on Windows and building with MSVC, add the resource script containing the |
| 244 | # VERSIONINFO data to the project. This embeds version resource information |
| 245 | # into the output .exe or .dll. |
| 246 | # TODO: Enable for MinGW Windows builds too. |
| 247 | # |
| 248 | function(add_windows_version_resource_file OUT_VAR) |
| 249 | set(sources ${ARGN}) |
| 250 | if (MSVC) |
| 251 | set(resource_file ${LLVM_SOURCE_DIR}/resources/windows_version_resource.rc) |
NAKAMURA Takumi | ec782b4 | 2015-06-14 21:47:29 +0000 | [diff] [blame] | 252 | if(EXISTS ${resource_file}) |
| 253 | set(sources ${sources} ${resource_file}) |
| 254 | source_group("Resource Files" ${resource_file}) |
| 255 | set(windows_resource_file ${resource_file} PARENT_SCOPE) |
| 256 | endif() |
Greg Bedwell | 95213c3 | 2015-06-12 15:58:29 +0000 | [diff] [blame] | 257 | endif(MSVC) |
| 258 | |
| 259 | set(${OUT_VAR} ${sources} PARENT_SCOPE) |
| 260 | endfunction(add_windows_version_resource_file) |
| 261 | |
| 262 | # set_windows_version_resource_properties(name resource_file... |
| 263 | # VERSION_MAJOR int |
| 264 | # Optional major version number (defaults to LLVM_VERSION_MAJOR) |
| 265 | # VERSION_MINOR int |
| 266 | # Optional minor version number (defaults to LLVM_VERSION_MINOR) |
| 267 | # VERSION_PATCHLEVEL int |
| 268 | # Optional patchlevel version number (defaults to LLVM_VERSION_PATCH) |
| 269 | # VERSION_STRING |
| 270 | # Optional version string (defaults to PACKAGE_VERSION) |
| 271 | # PRODUCT_NAME |
| 272 | # Optional product name string (defaults to "LLVM") |
| 273 | # ) |
| 274 | function(set_windows_version_resource_properties name resource_file) |
| 275 | cmake_parse_arguments(ARG |
| 276 | "" |
| 277 | "VERSION_MAJOR;VERSION_MINOR;VERSION_PATCHLEVEL;VERSION_STRING;PRODUCT_NAME" |
| 278 | "" |
| 279 | ${ARGN}) |
| 280 | |
| 281 | if (NOT DEFINED ARG_VERSION_MAJOR) |
| 282 | set(ARG_VERSION_MAJOR ${LLVM_VERSION_MAJOR}) |
| 283 | endif() |
| 284 | |
| 285 | if (NOT DEFINED ARG_VERSION_MINOR) |
| 286 | set(ARG_VERSION_MINOR ${LLVM_VERSION_MINOR}) |
| 287 | endif() |
| 288 | |
| 289 | if (NOT DEFINED ARG_VERSION_PATCHLEVEL) |
| 290 | set(ARG_VERSION_PATCHLEVEL ${LLVM_VERSION_PATCH}) |
| 291 | endif() |
| 292 | |
| 293 | if (NOT DEFINED ARG_VERSION_STRING) |
| 294 | set(ARG_VERSION_STRING ${PACKAGE_VERSION}) |
| 295 | endif() |
| 296 | |
| 297 | if (NOT DEFINED ARG_PRODUCT_NAME) |
| 298 | set(ARG_PRODUCT_NAME "LLVM") |
| 299 | endif() |
| 300 | |
| 301 | set_property(SOURCE ${resource_file} |
Peter Collingbourne | a89468b | 2015-06-18 01:15:18 +0000 | [diff] [blame] | 302 | PROPERTY COMPILE_FLAGS /nologo) |
| 303 | set_property(SOURCE ${resource_file} |
Greg Bedwell | 95213c3 | 2015-06-12 15:58:29 +0000 | [diff] [blame] | 304 | PROPERTY COMPILE_DEFINITIONS |
| 305 | "RC_VERSION_FIELD_1=${ARG_VERSION_MAJOR}" |
| 306 | "RC_VERSION_FIELD_2=${ARG_VERSION_MINOR}" |
| 307 | "RC_VERSION_FIELD_3=${ARG_VERSION_PATCHLEVEL}" |
| 308 | "RC_VERSION_FIELD_4=0" |
| 309 | "RC_FILE_VERSION=\"${ARG_VERSION_STRING}\"" |
| 310 | "RC_INTERNAL_NAME=\"${name}\"" |
| 311 | "RC_PRODUCT_NAME=\"${ARG_PRODUCT_NAME}\"" |
| 312 | "RC_PRODUCT_VERSION=\"${ARG_VERSION_STRING}\"") |
| 313 | endfunction(set_windows_version_resource_properties) |
| 314 | |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 315 | # llvm_add_library(name sources... |
NAKAMURA Takumi | 487f387 | 2014-02-13 11:25:17 +0000 | [diff] [blame] | 316 | # SHARED;STATIC |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 317 | # STATIC by default w/o BUILD_SHARED_LIBS. |
| 318 | # SHARED by default w/ BUILD_SHARED_LIBS. |
Axel Naumann | b457beb | 2016-01-12 07:44:58 +0000 | [diff] [blame] | 319 | # OBJECT |
| 320 | # Also create an OBJECT library target. Default if STATIC && SHARED. |
NAKAMURA Takumi | 487f387 | 2014-02-13 11:25:17 +0000 | [diff] [blame] | 321 | # MODULE |
| 322 | # Target ${name} might not be created on unsupported platforms. |
| 323 | # Check with "if(TARGET ${name})". |
Andrew Wilkins | 9211396 | 2015-09-01 03:14:31 +0000 | [diff] [blame] | 324 | # DISABLE_LLVM_LINK_LLVM_DYLIB |
| 325 | # Do not link this library to libLLVM, even if |
| 326 | # LLVM_LINK_LLVM_DYLIB is enabled. |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 327 | # OUTPUT_NAME name |
| 328 | # Corresponds to OUTPUT_NAME in target properties. |
| 329 | # DEPENDS targets... |
| 330 | # Same semantics as add_dependencies(). |
| 331 | # LINK_COMPONENTS components... |
| 332 | # Same as the variable LLVM_LINK_COMPONENTS. |
| 333 | # LINK_LIBS lib_targets... |
| 334 | # Same semantics as target_link_libraries(). |
NAKAMURA Takumi | dea00df | 2014-02-13 01:00:52 +0000 | [diff] [blame] | 335 | # ADDITIONAL_HEADERS |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 336 | # May specify header files for IDE generators. |
Chris Bieneman | 5e96fe9 | 2015-11-04 23:11:12 +0000 | [diff] [blame] | 337 | # SONAME |
| 338 | # Should set SONAME link flags and create symlinks |
John Brawn | 3546c2f | 2016-05-26 11:16:43 +0000 | [diff] [blame] | 339 | # PLUGIN_TOOL |
| 340 | # The tool (i.e. cmake target) that this plugin will link against |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 341 | # ) |
| 342 | function(llvm_add_library name) |
| 343 | cmake_parse_arguments(ARG |
Axel Naumann | b457beb | 2016-01-12 07:44:58 +0000 | [diff] [blame] | 344 | "MODULE;SHARED;STATIC;OBJECT;DISABLE_LLVM_LINK_LLVM_DYLIB;SONAME" |
John Brawn | 3546c2f | 2016-05-26 11:16:43 +0000 | [diff] [blame] | 345 | "OUTPUT_NAME;PLUGIN_TOOL" |
NAKAMURA Takumi | e3408ab | 2014-02-21 14:17:17 +0000 | [diff] [blame] | 346 | "ADDITIONAL_HEADERS;DEPENDS;LINK_COMPONENTS;LINK_LIBS;OBJLIBS" |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 347 | ${ARGN}) |
| 348 | list(APPEND LLVM_COMMON_DEPENDS ${ARG_DEPENDS}) |
NAKAMURA Takumi | dea00df | 2014-02-13 01:00:52 +0000 | [diff] [blame] | 349 | if(ARG_ADDITIONAL_HEADERS) |
| 350 | # Pass through ADDITIONAL_HEADERS. |
| 351 | set(ARG_ADDITIONAL_HEADERS ADDITIONAL_HEADERS ${ARG_ADDITIONAL_HEADERS}) |
| 352 | endif() |
NAKAMURA Takumi | e3408ab | 2014-02-21 14:17:17 +0000 | [diff] [blame] | 353 | if(ARG_OBJLIBS) |
| 354 | set(ALL_FILES ${ARG_OBJLIBS}) |
| 355 | else() |
| 356 | llvm_process_sources(ALL_FILES ${ARG_UNPARSED_ARGUMENTS} ${ARG_ADDITIONAL_HEADERS}) |
| 357 | endif() |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 358 | |
| 359 | if(ARG_MODULE) |
| 360 | if(ARG_SHARED OR ARG_STATIC) |
| 361 | message(WARNING "MODULE with SHARED|STATIC doesn't make sense.") |
| 362 | endif() |
John Brawn | 3546c2f | 2016-05-26 11:16:43 +0000 | [diff] [blame] | 363 | # Plugins that link against a tool are allowed even when plugins in general are not |
| 364 | if(NOT LLVM_ENABLE_PLUGINS AND NOT (ARG_PLUGIN_TOOL AND LLVM_EXPORT_SYMBOLS_FOR_PLUGINS)) |
NAKAMURA Takumi | 487f387 | 2014-02-13 11:25:17 +0000 | [diff] [blame] | 365 | message(STATUS "${name} ignored -- Loadable modules not supported on this platform.") |
| 366 | return() |
| 367 | endif() |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 368 | else() |
John Brawn | 3546c2f | 2016-05-26 11:16:43 +0000 | [diff] [blame] | 369 | if(ARG_PLUGIN_TOOL) |
| 370 | message(WARNING "PLUGIN_TOOL without MODULE doesn't make sense.") |
| 371 | endif() |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 372 | if(BUILD_SHARED_LIBS AND NOT ARG_STATIC) |
| 373 | set(ARG_SHARED TRUE) |
| 374 | endif() |
| 375 | if(NOT ARG_SHARED) |
| 376 | set(ARG_STATIC TRUE) |
| 377 | endif() |
| 378 | endif() |
| 379 | |
NAKAMURA Takumi | e3408ab | 2014-02-21 14:17:17 +0000 | [diff] [blame] | 380 | # Generate objlib |
Axel Naumann | b457beb | 2016-01-12 07:44:58 +0000 | [diff] [blame] | 381 | if((ARG_SHARED AND ARG_STATIC) OR ARG_OBJECT) |
NAKAMURA Takumi | e3408ab | 2014-02-21 14:17:17 +0000 | [diff] [blame] | 382 | # Generate an obj library for both targets. |
| 383 | set(obj_name "obj.${name}") |
| 384 | add_library(${obj_name} OBJECT EXCLUDE_FROM_ALL |
| 385 | ${ALL_FILES} |
| 386 | ) |
| 387 | llvm_update_compile_flags(${obj_name}) |
| 388 | set(ALL_FILES "$<TARGET_OBJECTS:${obj_name}>") |
| 389 | |
NAKAMURA Takumi | 679e772 | 2014-02-21 14:17:29 +0000 | [diff] [blame] | 390 | # Do add_dependencies(obj) later due to CMake issue 14747. |
| 391 | list(APPEND objlibs ${obj_name}) |
| 392 | |
NAKAMURA Takumi | e3408ab | 2014-02-21 14:17:17 +0000 | [diff] [blame] | 393 | set_target_properties(${obj_name} PROPERTIES FOLDER "Object Libraries") |
| 394 | endif() |
| 395 | |
| 396 | if(ARG_SHARED AND ARG_STATIC) |
| 397 | # static |
| 398 | set(name_static "${name}_static") |
| 399 | if(ARG_OUTPUT_NAME) |
NAKAMURA Takumi | b47a2c0 | 2014-02-28 00:28:13 +0000 | [diff] [blame] | 400 | set(output_name OUTPUT_NAME "${ARG_OUTPUT_NAME}") |
NAKAMURA Takumi | e3408ab | 2014-02-21 14:17:17 +0000 | [diff] [blame] | 401 | endif() |
| 402 | # DEPENDS has been appended to LLVM_COMMON_LIBS. |
| 403 | llvm_add_library(${name_static} STATIC |
| 404 | ${output_name} |
| 405 | OBJLIBS ${ALL_FILES} # objlib |
| 406 | LINK_LIBS ${ARG_LINK_LIBS} |
| 407 | LINK_COMPONENTS ${ARG_LINK_COMPONENTS} |
| 408 | ) |
| 409 | # FIXME: Add name_static to anywhere in TARGET ${name}'s PROPERTY. |
| 410 | set(ARG_STATIC) |
| 411 | endif() |
| 412 | |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 413 | if(ARG_MODULE) |
| 414 | add_library(${name} MODULE ${ALL_FILES}) |
Peter Collingbourne | b192a20 | 2016-11-28 21:59:14 +0000 | [diff] [blame] | 415 | llvm_setup_rpath(${name}) |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 416 | elseif(ARG_SHARED) |
Greg Bedwell | 95213c3 | 2015-06-12 15:58:29 +0000 | [diff] [blame] | 417 | add_windows_version_resource_file(ALL_FILES ${ALL_FILES}) |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 418 | add_library(${name} SHARED ${ALL_FILES}) |
Chris Bieneman | 61e900b | 2016-11-01 17:44:58 +0000 | [diff] [blame] | 419 | |
| 420 | llvm_setup_rpath(${name}) |
| 421 | |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 422 | else() |
| 423 | add_library(${name} STATIC ${ALL_FILES}) |
| 424 | endif() |
Greg Bedwell | 95213c3 | 2015-06-12 15:58:29 +0000 | [diff] [blame] | 425 | |
Chris Bieneman | 958edcb | 2016-11-19 01:32:09 +0000 | [diff] [blame] | 426 | setup_dependency_debugging(${name} ${LLVM_COMMON_DEPENDS}) |
| 427 | |
Greg Bedwell | 95213c3 | 2015-06-12 15:58:29 +0000 | [diff] [blame] | 428 | if(DEFINED windows_resource_file) |
| 429 | set_windows_version_resource_properties(${name} ${windows_resource_file}) |
| 430 | set(windows_resource_file ${windows_resource_file} PARENT_SCOPE) |
| 431 | endif() |
| 432 | |
John Brawn | c11ef2a | 2015-09-30 15:20:51 +0000 | [diff] [blame] | 433 | set_output_directory(${name} BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR} LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}) |
NAKAMURA Takumi | bb7483d | 2015-09-08 07:42:06 +0000 | [diff] [blame] | 434 | # $<TARGET_OBJECTS> doesn't require compile flags. |
| 435 | if(NOT obj_name) |
| 436 | llvm_update_compile_flags(${name}) |
| 437 | endif() |
Rafael Espindola | 8cb7876 | 2014-11-02 12:14:22 +0000 | [diff] [blame] | 438 | add_link_opts( ${name} ) |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 439 | if(ARG_OUTPUT_NAME) |
| 440 | set_target_properties(${name} |
| 441 | PROPERTIES |
| 442 | OUTPUT_NAME ${ARG_OUTPUT_NAME} |
| 443 | ) |
| 444 | endif() |
Oscar Fuentes | ffe32e1 | 2010-10-14 15:54:41 +0000 | [diff] [blame] | 445 | |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 446 | if(ARG_MODULE) |
NAKAMURA Takumi | e72e2e9 | 2014-02-13 11:19:21 +0000 | [diff] [blame] | 447 | set_target_properties(${name} PROPERTIES |
| 448 | PREFIX "" |
| 449 | SUFFIX ${LLVM_PLUGIN_EXT} |
| 450 | ) |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 451 | endif() |
| 452 | |
| 453 | if(ARG_SHARED) |
NAKAMURA Takumi | 543105f | 2014-04-10 15:47:04 +0000 | [diff] [blame] | 454 | if(WIN32) |
| 455 | set_target_properties(${name} PROPERTIES |
| 456 | PREFIX "" |
| 457 | ) |
| 458 | endif() |
Michal Gorny | 6b929d5 | 2016-10-04 06:09:18 +0000 | [diff] [blame] | 459 | |
| 460 | # Set SOVERSION on shared libraries that lack explicit SONAME |
| 461 | # specifier, on *nix systems that are not Darwin. |
| 462 | if(UNIX AND NOT APPLE AND NOT ARG_SONAME) |
| 463 | set_target_properties(${name} |
| 464 | PROPERTIES |
Michal Gorny | 6083191 | 2017-01-17 21:04:19 +0000 | [diff] [blame] | 465 | # Since 4.0.0, the ABI version is indicated by the major version |
| 466 | SOVERSION ${LLVM_VERSION_MAJOR} |
| 467 | VERSION ${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}${LLVM_VERSION_SUFFIX}) |
Michal Gorny | 6b929d5 | 2016-10-04 06:09:18 +0000 | [diff] [blame] | 468 | endif() |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 469 | endif() |
Oscar Fuentes | ffe32e1 | 2010-10-14 15:54:41 +0000 | [diff] [blame] | 470 | |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 471 | if(ARG_MODULE OR ARG_SHARED) |
Richard Smith | 2b91a7f | 2014-09-26 22:40:15 +0000 | [diff] [blame] | 472 | # Do not add -Dname_EXPORTS to the command-line when building files in this |
| 473 | # target. Doing so is actively harmful for the modules build because it |
| 474 | # creates extra module variants, and not useful because we don't use these |
| 475 | # macros. |
| 476 | set_target_properties( ${name} PROPERTIES DEFINE_SYMBOL "" ) |
| 477 | |
Nico Weber | 06473f8 | 2013-12-29 05:39:01 +0000 | [diff] [blame] | 478 | if (LLVM_EXPORTED_SYMBOL_FILE) |
| 479 | add_llvm_symbol_exports( ${name} ${LLVM_EXPORTED_SYMBOL_FILE} ) |
| 480 | endif() |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 481 | endif() |
| 482 | |
Andrew Wilkins | a4f3705 | 2015-11-10 23:19:21 +0000 | [diff] [blame] | 483 | if(ARG_SHARED AND UNIX) |
| 484 | if(NOT APPLE AND ARG_SONAME) |
| 485 | get_target_property(output_name ${name} OUTPUT_NAME) |
| 486 | if(${output_name} STREQUAL "output_name-NOTFOUND") |
| 487 | set(output_name ${name}) |
| 488 | endif() |
| 489 | set(library_name ${output_name}-${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}${LLVM_VERSION_SUFFIX}) |
| 490 | set(api_name ${output_name}-${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}${LLVM_VERSION_SUFFIX}) |
| 491 | set_target_properties(${name} PROPERTIES OUTPUT_NAME ${library_name}) |
| 492 | llvm_install_library_symlink(${api_name} ${library_name} SHARED |
| 493 | COMPONENT ${name} |
| 494 | ALWAYS_GENERATE) |
| 495 | llvm_install_library_symlink(${output_name} ${library_name} SHARED |
| 496 | COMPONENT ${name} |
| 497 | ALWAYS_GENERATE) |
| 498 | endif() |
| 499 | endif() |
| 500 | |
John Brawn | 3546c2f | 2016-05-26 11:16:43 +0000 | [diff] [blame] | 501 | if(ARG_MODULE AND LLVM_EXPORT_SYMBOLS_FOR_PLUGINS AND ARG_PLUGIN_TOOL AND (WIN32 OR CYGWIN)) |
| 502 | # On DLL platforms symbols are imported from the tool by linking against it. |
| 503 | set(llvm_libs ${ARG_PLUGIN_TOOL}) |
| 504 | elseif (DEFINED LLVM_LINK_COMPONENTS OR DEFINED ARG_LINK_COMPONENTS) |
Andrew Wilkins | 095e22d | 2016-02-12 01:42:43 +0000 | [diff] [blame] | 505 | if (LLVM_LINK_LLVM_DYLIB AND NOT ARG_DISABLE_LLVM_LINK_LLVM_DYLIB) |
| 506 | set(llvm_libs LLVM) |
| 507 | else() |
| 508 | llvm_map_components_to_libnames(llvm_libs |
| 509 | ${ARG_LINK_COMPONENTS} |
| 510 | ${LLVM_LINK_COMPONENTS} |
| 511 | ) |
| 512 | endif() |
Andrew Wilkins | 9211396 | 2015-09-01 03:14:31 +0000 | [diff] [blame] | 513 | else() |
Andrew Wilkins | 095e22d | 2016-02-12 01:42:43 +0000 | [diff] [blame] | 514 | # Components have not been defined explicitly in CMake, so add the |
| 515 | # dependency information for this library as defined by LLVMBuild. |
| 516 | # |
| 517 | # It would be nice to verify that we have the dependencies for this library |
| 518 | # name, but using get_property(... SET) doesn't suffice to determine if a |
| 519 | # property has been set to an empty value. |
| 520 | get_property(lib_deps GLOBAL PROPERTY LLVMBUILD_LIB_DEPS_${name}) |
Andrew Wilkins | 9211396 | 2015-09-01 03:14:31 +0000 | [diff] [blame] | 521 | endif() |
NAKAMURA Takumi | a39b612 | 2014-02-26 11:58:01 +0000 | [diff] [blame] | 522 | |
Chris Bieneman | 6650b02 | 2016-06-08 22:48:01 +0000 | [diff] [blame] | 523 | if(ARG_STATIC) |
| 524 | set(libtype INTERFACE) |
Steven Wu | ec6f56e | 2016-05-26 04:35:35 +0000 | [diff] [blame] | 525 | else() |
| 526 | # We can use PRIVATE since SO knows its dependent libs. |
Chris Bieneman | 6650b02 | 2016-06-08 22:48:01 +0000 | [diff] [blame] | 527 | set(libtype PRIVATE) |
| 528 | endif() |
| 529 | |
| 530 | target_link_libraries(${name} ${libtype} |
Steven Wu | ec6f56e | 2016-05-26 04:35:35 +0000 | [diff] [blame] | 531 | ${ARG_LINK_LIBS} |
| 532 | ${lib_deps} |
| 533 | ${llvm_libs} |
| 534 | ) |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 535 | |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 536 | if(LLVM_COMMON_DEPENDS) |
| 537 | add_dependencies(${name} ${LLVM_COMMON_DEPENDS}) |
NAKAMURA Takumi | 679e772 | 2014-02-21 14:17:29 +0000 | [diff] [blame] | 538 | # Add dependencies also to objlibs. |
| 539 | # CMake issue 14747 -- add_dependencies() might be ignored to objlib's user. |
| 540 | foreach(objlib ${objlibs}) |
NAKAMURA Takumi | 679e772 | 2014-02-21 14:17:29 +0000 | [diff] [blame] | 541 | add_dependencies(${objlib} ${LLVM_COMMON_DEPENDS}) |
| 542 | endforeach() |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 543 | endif() |
Chris Bieneman | bf2c412 | 2015-12-03 18:45:39 +0000 | [diff] [blame] | 544 | |
| 545 | if(ARG_SHARED OR ARG_MODULE) |
| 546 | llvm_externalize_debuginfo(${name}) |
| 547 | endif() |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 548 | endfunction() |
| 549 | |
| 550 | macro(add_llvm_library name) |
Chris Bieneman | 8427169 | 2015-04-16 16:56:18 +0000 | [diff] [blame] | 551 | cmake_parse_arguments(ARG |
Michael Gottesman | 31e9363 | 2016-09-09 19:45:34 +0000 | [diff] [blame] | 552 | "SHARED;BUILDTREE_ONLY" |
Chris Bieneman | 8427169 | 2015-04-16 16:56:18 +0000 | [diff] [blame] | 553 | "" |
| 554 | "" |
| 555 | ${ARGN}) |
Michael Gottesman | 31e9363 | 2016-09-09 19:45:34 +0000 | [diff] [blame] | 556 | if( BUILD_SHARED_LIBS OR ARG_SHARED ) |
| 557 | llvm_add_library(${name} SHARED ${ARG_UNPARSED_ARGUMENTS}) |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 558 | else() |
Michael Gottesman | 31e9363 | 2016-09-09 19:45:34 +0000 | [diff] [blame] | 559 | llvm_add_library(${name} ${ARG_UNPARSED_ARGUMENTS}) |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 560 | endif() |
Michael Gottesman | 31e9363 | 2016-09-09 19:45:34 +0000 | [diff] [blame] | 561 | |
| 562 | # Libraries that are meant to only be exposed via the build tree only are |
| 563 | # never installed and are only exported as a target in the special build tree |
| 564 | # config file. |
| 565 | if (NOT ARG_BUILDTREE_ONLY) |
Dan Liew | 80189d2 | 2015-06-29 18:45:56 +0000 | [diff] [blame] | 566 | set_property( GLOBAL APPEND PROPERTY LLVM_LIBS ${name} ) |
| 567 | endif() |
NAKAMURA Takumi | e7038df | 2014-02-10 09:05:11 +0000 | [diff] [blame] | 568 | |
Nick Lewycky | 61aed87 | 2011-04-29 02:12:06 +0000 | [diff] [blame] | 569 | if( EXCLUDE_FROM_ALL ) |
| 570 | set_target_properties( ${name} PROPERTIES EXCLUDE_FROM_ALL ON) |
Michael Gottesman | 31e9363 | 2016-09-09 19:45:34 +0000 | [diff] [blame] | 571 | elseif(ARG_BUILDTREE_ONLY) |
| 572 | set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS_BUILDTREE_ONLY ${name}) |
| 573 | else() |
Derek Schuff | eb22463 | 2016-09-16 18:50:39 +0000 | [diff] [blame] | 574 | if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY OR ${name} STREQUAL "LTO" OR |
| 575 | (LLVM_LINK_LLVM_DYLIB AND ${name} STREQUAL "LLVM")) |
Sumanth Gundapaneni | 279c73f | 2015-12-16 17:07:15 +0000 | [diff] [blame] | 576 | set(install_dir lib${LLVM_LIBDIR_SUFFIX}) |
Chris Bieneman | c2368aa | 2015-04-16 17:40:51 +0000 | [diff] [blame] | 577 | if(ARG_SHARED OR BUILD_SHARED_LIBS) |
Sumanth Gundapaneni | 279c73f | 2015-12-16 17:07:15 +0000 | [diff] [blame] | 578 | if(WIN32 OR CYGWIN OR MINGW) |
Chris Bieneman | a985e6b | 2015-04-16 18:08:33 +0000 | [diff] [blame] | 579 | set(install_type RUNTIME) |
Sumanth Gundapaneni | 279c73f | 2015-12-16 17:07:15 +0000 | [diff] [blame] | 580 | set(install_dir bin) |
Chris Bieneman | c2368aa | 2015-04-16 17:40:51 +0000 | [diff] [blame] | 581 | else() |
Chris Bieneman | a985e6b | 2015-04-16 18:08:33 +0000 | [diff] [blame] | 582 | set(install_type LIBRARY) |
Chris Bieneman | c2368aa | 2015-04-16 17:40:51 +0000 | [diff] [blame] | 583 | endif() |
Chris Bieneman | 8427169 | 2015-04-16 16:56:18 +0000 | [diff] [blame] | 584 | else() |
Chris Bieneman | a985e6b | 2015-04-16 18:08:33 +0000 | [diff] [blame] | 585 | set(install_type ARCHIVE) |
Chris Bieneman | 8427169 | 2015-04-16 16:56:18 +0000 | [diff] [blame] | 586 | endif() |
Chris Bieneman | 0d9289d | 2015-02-18 19:25:47 +0000 | [diff] [blame] | 587 | |
Justin Bogner | 4ce3e0c | 2016-11-04 21:55:23 +0000 | [diff] [blame] | 588 | if(${name} IN_LIST LLVM_DISTRIBUTION_COMPONENTS OR |
| 589 | NOT LLVM_DISTRIBUTION_COMPONENTS) |
| 590 | set(export_to_llvmexports EXPORT LLVMExports) |
Justin Bogner | 80bee97 | 2016-11-08 05:02:18 +0000 | [diff] [blame] | 591 | set_property(GLOBAL PROPERTY LLVM_HAS_EXPORTS True) |
Justin Bogner | 4ce3e0c | 2016-11-04 21:55:23 +0000 | [diff] [blame] | 592 | endif() |
| 593 | |
Chris Bieneman | a985e6b | 2015-04-16 18:08:33 +0000 | [diff] [blame] | 594 | install(TARGETS ${name} |
Justin Bogner | 4ce3e0c | 2016-11-04 21:55:23 +0000 | [diff] [blame] | 595 | ${export_to_llvmexports} |
| 596 | ${install_type} DESTINATION ${install_dir} |
| 597 | COMPONENT ${name}) |
Chris Bieneman | a985e6b | 2015-04-16 18:08:33 +0000 | [diff] [blame] | 598 | |
Chris Bieneman | 0d9289d | 2015-02-18 19:25:47 +0000 | [diff] [blame] | 599 | if (NOT CMAKE_CONFIGURATION_TYPES) |
| 600 | add_custom_target(install-${name} |
| 601 | DEPENDS ${name} |
| 602 | COMMAND "${CMAKE_COMMAND}" |
| 603 | -DCMAKE_INSTALL_COMPONENT=${name} |
| 604 | -P "${CMAKE_BINARY_DIR}/cmake_install.cmake") |
| 605 | endif() |
Hans Wennborg | 1654627 | 2013-08-24 00:20:36 +0000 | [diff] [blame] | 606 | endif() |
NAKAMURA Takumi | 8faf660 | 2014-02-09 16:36:16 +0000 | [diff] [blame] | 607 | set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS ${name}) |
Nick Lewycky | 61aed87 | 2011-04-29 02:12:06 +0000 | [diff] [blame] | 608 | endif() |
Oscar Fuentes | 3145e92 | 2011-02-20 22:06:10 +0000 | [diff] [blame] | 609 | set_target_properties(${name} PROPERTIES FOLDER "Libraries") |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 610 | endmacro(add_llvm_library name) |
| 611 | |
Oscar Fuentes | bbc1067 | 2009-11-10 02:45:37 +0000 | [diff] [blame] | 612 | macro(add_llvm_loadable_module name) |
NAKAMURA Takumi | 487f387 | 2014-02-13 11:25:17 +0000 | [diff] [blame] | 613 | llvm_add_library(${name} MODULE ${ARGN}) |
| 614 | if(NOT TARGET ${name}) |
NAKAMURA Takumi | a8c1c3f | 2010-12-10 02:15:36 +0000 | [diff] [blame] | 615 | # Add empty "phony" target |
| 616 | add_custom_target(${name}) |
Oscar Fuentes | bbc1067 | 2009-11-10 02:45:37 +0000 | [diff] [blame] | 617 | else() |
Oscar Fuentes | 638aaec | 2011-04-26 14:55:27 +0000 | [diff] [blame] | 618 | if( EXCLUDE_FROM_ALL ) |
Nick Lewycky | 61aed87 | 2011-04-29 02:12:06 +0000 | [diff] [blame] | 619 | set_target_properties( ${name} PROPERTIES EXCLUDE_FROM_ALL ON) |
Oscar Fuentes | 638aaec | 2011-04-26 14:55:27 +0000 | [diff] [blame] | 620 | else() |
Hans Wennborg | 1654627 | 2013-08-24 00:20:36 +0000 | [diff] [blame] | 621 | if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY) |
NAKAMURA Takumi | 44f64ea | 2014-07-13 13:33:26 +0000 | [diff] [blame] | 622 | if(WIN32 OR CYGWIN) |
| 623 | # DLL platform |
| 624 | set(dlldir "bin") |
| 625 | else() |
| 626 | set(dlldir "lib${LLVM_LIBDIR_SUFFIX}") |
| 627 | endif() |
Justin Bogner | 4ce3e0c | 2016-11-04 21:55:23 +0000 | [diff] [blame] | 628 | |
| 629 | if(${name} IN_LIST LLVM_DISTRIBUTION_COMPONENTS OR |
| 630 | NOT LLVM_DISTRIBUTION_COMPONENTS) |
| 631 | set(export_to_llvmexports EXPORT LLVMExports) |
Justin Bogner | 80bee97 | 2016-11-08 05:02:18 +0000 | [diff] [blame] | 632 | set_property(GLOBAL PROPERTY LLVM_HAS_EXPORTS True) |
Justin Bogner | 4ce3e0c | 2016-11-04 21:55:23 +0000 | [diff] [blame] | 633 | endif() |
| 634 | |
Hans Wennborg | 1654627 | 2013-08-24 00:20:36 +0000 | [diff] [blame] | 635 | install(TARGETS ${name} |
Justin Bogner | 4ce3e0c | 2016-11-04 21:55:23 +0000 | [diff] [blame] | 636 | ${export_to_llvmexports} |
| 637 | LIBRARY DESTINATION ${dlldir} |
| 638 | ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX}) |
Hans Wennborg | 1654627 | 2013-08-24 00:20:36 +0000 | [diff] [blame] | 639 | endif() |
NAKAMURA Takumi | 8faf660 | 2014-02-09 16:36:16 +0000 | [diff] [blame] | 640 | set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS ${name}) |
Oscar Fuentes | 638aaec | 2011-04-26 14:55:27 +0000 | [diff] [blame] | 641 | endif() |
Oscar Fuentes | bbc1067 | 2009-11-10 02:45:37 +0000 | [diff] [blame] | 642 | endif() |
Oscar Fuentes | 3145e92 | 2011-02-20 22:06:10 +0000 | [diff] [blame] | 643 | |
| 644 | set_target_properties(${name} PROPERTIES FOLDER "Loadable modules") |
Oscar Fuentes | bbc1067 | 2009-11-10 02:45:37 +0000 | [diff] [blame] | 645 | endmacro(add_llvm_loadable_module name) |
| 646 | |
| 647 | |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 648 | macro(add_llvm_executable name) |
Chris Bieneman | 8036e0b | 2016-11-17 04:36:59 +0000 | [diff] [blame] | 649 | cmake_parse_arguments(ARG "DISABLE_LLVM_LINK_LLVM_DYLIB;IGNORE_EXTERNALIZE_DEBUGINFO;NO_INSTALL_RPATH" "" "DEPENDS" ${ARGN}) |
Andrew Wilkins | 9211396 | 2015-09-01 03:14:31 +0000 | [diff] [blame] | 650 | llvm_process_sources( ALL_FILES ${ARG_UNPARSED_ARGUMENTS} ) |
Greg Bedwell | 95213c3 | 2015-06-12 15:58:29 +0000 | [diff] [blame] | 651 | |
Chris Bieneman | 8036e0b | 2016-11-17 04:36:59 +0000 | [diff] [blame] | 652 | list(APPEND LLVM_COMMON_DEPENDS ${ARG_DEPENDS}) |
| 653 | |
NAKAMURA Takumi | e6bc093 | 2015-08-27 16:10:47 +0000 | [diff] [blame] | 654 | # Generate objlib |
| 655 | if(LLVM_ENABLE_OBJLIB) |
| 656 | # Generate an obj library for both targets. |
| 657 | set(obj_name "obj.${name}") |
| 658 | add_library(${obj_name} OBJECT EXCLUDE_FROM_ALL |
| 659 | ${ALL_FILES} |
| 660 | ) |
| 661 | llvm_update_compile_flags(${obj_name}) |
| 662 | set(ALL_FILES "$<TARGET_OBJECTS:${obj_name}>") |
| 663 | |
| 664 | set_target_properties(${obj_name} PROPERTIES FOLDER "Object Libraries") |
| 665 | endif() |
| 666 | |
NAKAMURA Takumi | b5288ba | 2015-08-28 00:36:58 +0000 | [diff] [blame] | 667 | add_windows_version_resource_file(ALL_FILES ${ALL_FILES}) |
| 668 | |
Jordan Rose | 3d75297 | 2015-09-10 17:18:51 +0000 | [diff] [blame] | 669 | if(XCODE) |
| 670 | # Note: the dummy.cpp source file provides no definitions. However, |
| 671 | # it forces Xcode to properly link the static library. |
Jordan Rose | 85a22f8 | 2015-09-10 17:55:02 +0000 | [diff] [blame] | 672 | list(APPEND ALL_FILES "${LLVM_MAIN_SRC_DIR}/cmake/dummy.cpp") |
Jordan Rose | 3d75297 | 2015-09-10 17:18:51 +0000 | [diff] [blame] | 673 | endif() |
Chris Bieneman | 8036e0b | 2016-11-17 04:36:59 +0000 | [diff] [blame] | 674 | |
Oscar Fuentes | 0c2443a | 2009-11-23 00:21:43 +0000 | [diff] [blame] | 675 | if( EXCLUDE_FROM_ALL ) |
| 676 | add_executable(${name} EXCLUDE_FROM_ALL ${ALL_FILES}) |
| 677 | else() |
| 678 | add_executable(${name} ${ALL_FILES}) |
| 679 | endif() |
Greg Bedwell | 95213c3 | 2015-06-12 15:58:29 +0000 | [diff] [blame] | 680 | |
Chris Bieneman | 958edcb | 2016-11-19 01:32:09 +0000 | [diff] [blame] | 681 | setup_dependency_debugging(${name} ${LLVM_COMMON_DEPENDS}) |
| 682 | |
Jonas Hahnfeld | 277a09d | 2016-11-03 06:58:16 +0000 | [diff] [blame] | 683 | if(NOT ARG_NO_INSTALL_RPATH) |
| 684 | llvm_setup_rpath(${name}) |
| 685 | endif() |
Chris Bieneman | 61e900b | 2016-11-01 17:44:58 +0000 | [diff] [blame] | 686 | |
Greg Bedwell | 95213c3 | 2015-06-12 15:58:29 +0000 | [diff] [blame] | 687 | if(DEFINED windows_resource_file) |
| 688 | set_windows_version_resource_properties(${name} ${windows_resource_file}) |
| 689 | endif() |
| 690 | |
NAKAMURA Takumi | bb7483d | 2015-09-08 07:42:06 +0000 | [diff] [blame] | 691 | # $<TARGET_OBJECTS> doesn't require compile flags. |
| 692 | if(NOT LLVM_ENABLE_OBJLIB) |
| 693 | llvm_update_compile_flags(${name}) |
| 694 | endif() |
Rafael Espindola | 8cb7876 | 2014-11-02 12:14:22 +0000 | [diff] [blame] | 695 | add_link_opts( ${name} ) |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 696 | |
Richard Smith | 2b91a7f | 2014-09-26 22:40:15 +0000 | [diff] [blame] | 697 | # Do not add -Dname_EXPORTS to the command-line when building files in this |
| 698 | # target. Doing so is actively harmful for the modules build because it |
| 699 | # creates extra module variants, and not useful because we don't use these |
| 700 | # macros. |
| 701 | set_target_properties( ${name} PROPERTIES DEFINE_SYMBOL "" ) |
| 702 | |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 703 | if (LLVM_EXPORTED_SYMBOL_FILE) |
| 704 | add_llvm_symbol_exports( ${name} ${LLVM_EXPORTED_SYMBOL_FILE} ) |
| 705 | endif(LLVM_EXPORTED_SYMBOL_FILE) |
| 706 | |
Andrew Wilkins | bb6d95f | 2015-09-05 08:27:33 +0000 | [diff] [blame] | 707 | if (LLVM_LINK_LLVM_DYLIB AND NOT ARG_DISABLE_LLVM_LINK_LLVM_DYLIB) |
| 708 | set(USE_SHARED USE_SHARED) |
| 709 | endif() |
| 710 | |
Oscar Fuentes | 0c2443a | 2009-11-23 00:21:43 +0000 | [diff] [blame] | 711 | set(EXCLUDE_FROM_ALL OFF) |
John Brawn | c11ef2a | 2015-09-30 15:20:51 +0000 | [diff] [blame] | 712 | set_output_directory(${name} BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR} LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}) |
Andrew Wilkins | bb6d95f | 2015-09-05 08:27:33 +0000 | [diff] [blame] | 713 | llvm_config( ${name} ${USE_SHARED} ${LLVM_LINK_COMPONENTS} ) |
Oscar Fuentes | 3fca0e8 | 2009-08-14 04:38:57 +0000 | [diff] [blame] | 714 | if( LLVM_COMMON_DEPENDS ) |
| 715 | add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} ) |
| 716 | endif( LLVM_COMMON_DEPENDS ) |
Chris Bieneman | bf2c412 | 2015-12-03 18:45:39 +0000 | [diff] [blame] | 717 | |
Chris Bieneman | 48eaa54 | 2015-12-08 21:51:48 +0000 | [diff] [blame] | 718 | if(NOT ARG_IGNORE_EXTERNALIZE_DEBUGINFO) |
| 719 | llvm_externalize_debuginfo(${name}) |
| 720 | endif() |
Eric Fiselier | 87c87f4 | 2017-02-10 01:59:20 +0000 | [diff] [blame] | 721 | if (LLVM_PTHREAD_LIB) |
Artem Belevich | df7103d | 2016-06-21 19:34:40 +0000 | [diff] [blame] | 722 | # libpthreads overrides some standard library symbols, so main |
| 723 | # executable must be linked with it in order to provide consistent |
| 724 | # API for all shared libaries loaded by this executable. |
Eric Fiselier | 87c87f4 | 2017-02-10 01:59:20 +0000 | [diff] [blame] | 725 | target_link_libraries(${name} ${LLVM_PTHREAD_LIB}) |
Artem Belevich | df7103d | 2016-06-21 19:34:40 +0000 | [diff] [blame] | 726 | endif() |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 727 | endmacro(add_llvm_executable name) |
| 728 | |
Reid Kleckner | 3e8c445 | 2015-03-18 20:09:13 +0000 | [diff] [blame] | 729 | function(export_executable_symbols target) |
John Brawn | 3546c2f | 2016-05-26 11:16:43 +0000 | [diff] [blame] | 730 | if (LLVM_EXPORTED_SYMBOL_FILE) |
| 731 | # The symbol file should contain the symbols we want the executable to |
| 732 | # export |
| 733 | set_target_properties(${target} PROPERTIES ENABLE_EXPORTS 1) |
| 734 | elseif (LLVM_EXPORT_SYMBOLS_FOR_PLUGINS) |
| 735 | # Extract the symbols to export from the static libraries that the |
| 736 | # executable links against. |
| 737 | set_target_properties(${target} PROPERTIES ENABLE_EXPORTS 1) |
| 738 | set(exported_symbol_file ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${target}.symbols) |
| 739 | # We need to consider not just the direct link dependencies, but also the |
| 740 | # transitive link dependencies. Do this by starting with the set of direct |
| 741 | # dependencies, then the dependencies of those dependencies, and so on. |
| 742 | get_target_property(new_libs ${target} LINK_LIBRARIES) |
| 743 | set(link_libs ${new_libs}) |
| 744 | while(NOT "${new_libs}" STREQUAL "") |
| 745 | foreach(lib ${new_libs}) |
John Brawn | 24ca18e | 2016-07-05 13:16:54 +0000 | [diff] [blame] | 746 | if(TARGET ${lib}) |
| 747 | get_target_property(lib_type ${lib} TYPE) |
| 748 | if("${lib_type}" STREQUAL "STATIC_LIBRARY") |
| 749 | list(APPEND static_libs ${lib}) |
| 750 | else() |
| 751 | list(APPEND other_libs ${lib}) |
John Brawn | 3546c2f | 2016-05-26 11:16:43 +0000 | [diff] [blame] | 752 | endif() |
John Brawn | 24ca18e | 2016-07-05 13:16:54 +0000 | [diff] [blame] | 753 | get_target_property(transitive_libs ${lib} INTERFACE_LINK_LIBRARIES) |
| 754 | foreach(transitive_lib ${transitive_libs}) |
| 755 | list(FIND link_libs ${transitive_lib} idx) |
| 756 | if(TARGET ${transitive_lib} AND idx EQUAL -1) |
| 757 | list(APPEND newer_libs ${transitive_lib}) |
| 758 | list(APPEND link_libs ${transitive_lib}) |
| 759 | endif() |
| 760 | endforeach(transitive_lib) |
| 761 | endif() |
John Brawn | 3546c2f | 2016-05-26 11:16:43 +0000 | [diff] [blame] | 762 | endforeach(lib) |
| 763 | set(new_libs ${newer_libs}) |
| 764 | set(newer_libs "") |
| 765 | endwhile() |
| 766 | if (MSVC) |
| 767 | set(mangling microsoft) |
| 768 | else() |
| 769 | set(mangling itanium) |
| 770 | endif() |
| 771 | add_custom_command(OUTPUT ${exported_symbol_file} |
| 772 | COMMAND ${PYTHON_EXECUTABLE} ${LLVM_MAIN_SRC_DIR}/utils/extract_symbols.py --mangling=${mangling} ${static_libs} -o ${exported_symbol_file} |
| 773 | WORKING_DIRECTORY ${LLVM_LIBRARY_OUTPUT_INTDIR} |
| 774 | DEPENDS ${LLVM_MAIN_SRC_DIR}/utils/extract_symbols.py ${static_libs} |
| 775 | VERBATIM |
| 776 | COMMENT "Generating export list for ${target}") |
| 777 | add_llvm_symbol_exports( ${target} ${exported_symbol_file} ) |
| 778 | # If something links against this executable then we want a |
| 779 | # transitive link against only the libraries whose symbols |
| 780 | # we aren't exporting. |
| 781 | set_target_properties(${target} PROPERTIES INTERFACE_LINK_LIBRARIES "${other_libs}") |
| 782 | # The default import library suffix that cmake uses for cygwin/mingw is |
| 783 | # ".dll.a", but for clang.exe that causes a collision with libclang.dll, |
| 784 | # where the import libraries of both get named libclang.dll.a. Use a suffix |
| 785 | # of ".exe.a" to avoid this. |
| 786 | if(CYGWIN OR MINGW) |
| 787 | set_target_properties(${target} PROPERTIES IMPORT_SUFFIX ".exe.a") |
| 788 | endif() |
| 789 | elseif(NOT (WIN32 OR CYGWIN)) |
| 790 | # On Windows auto-exporting everything doesn't work because of the limit on |
| 791 | # the size of the exported symbol table, but on other platforms we can do |
| 792 | # it without any trouble. |
Reid Kleckner | 3e8c445 | 2015-03-18 20:09:13 +0000 | [diff] [blame] | 793 | set_target_properties(${target} PROPERTIES ENABLE_EXPORTS 1) |
Chris Bieneman | 914742b | 2015-11-24 00:58:58 +0000 | [diff] [blame] | 794 | if (APPLE) |
Chris Bieneman | ccabd0e | 2015-12-03 22:51:08 +0000 | [diff] [blame] | 795 | set_property(TARGET ${target} APPEND_STRING PROPERTY |
Chris Bieneman | ac6677a | 2015-12-03 22:55:36 +0000 | [diff] [blame] | 796 | LINK_FLAGS " -rdynamic") |
Chris Bieneman | 914742b | 2015-11-24 00:58:58 +0000 | [diff] [blame] | 797 | endif() |
Reid Kleckner | 3e8c445 | 2015-03-18 20:09:13 +0000 | [diff] [blame] | 798 | endif() |
| 799 | endfunction() |
| 800 | |
Chris Bieneman | 170fd9cb | 2015-09-10 17:23:32 +0000 | [diff] [blame] | 801 | if(NOT LLVM_TOOLCHAIN_TOOLS) |
| 802 | set (LLVM_TOOLCHAIN_TOOLS |
| 803 | llvm-ar |
Chris Bieneman | 6d43afc | 2015-09-14 23:09:06 +0000 | [diff] [blame] | 804 | llvm-ranlib |
| 805 | llvm-lib |
Chris Bieneman | 170fd9cb | 2015-09-10 17:23:32 +0000 | [diff] [blame] | 806 | llvm-objdump |
| 807 | ) |
| 808 | endif() |
Hans Wennborg | 1654627 | 2013-08-24 00:20:36 +0000 | [diff] [blame] | 809 | |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 810 | macro(add_llvm_tool name) |
Oscar Fuentes | dea579f | 2009-11-23 00:32:42 +0000 | [diff] [blame] | 811 | if( NOT LLVM_BUILD_TOOLS ) |
Oscar Fuentes | 0c2443a | 2009-11-23 00:21:43 +0000 | [diff] [blame] | 812 | set(EXCLUDE_FROM_ALL ON) |
| 813 | endif() |
Oscar Fuentes | 46d8a93 | 2010-09-25 20:25:25 +0000 | [diff] [blame] | 814 | add_llvm_executable(${name} ${ARGN}) |
Hans Wennborg | 1654627 | 2013-08-24 00:20:36 +0000 | [diff] [blame] | 815 | |
Chris Bieneman | 44d2990 | 2016-09-27 17:47:24 +0000 | [diff] [blame] | 816 | if ( ${name} IN_LIST LLVM_TOOLCHAIN_TOOLS OR NOT LLVM_INSTALL_TOOLCHAIN_ONLY) |
Hans Wennborg | 1654627 | 2013-08-24 00:20:36 +0000 | [diff] [blame] | 817 | if( LLVM_BUILD_TOOLS ) |
Justin Bogner | 4ce3e0c | 2016-11-04 21:55:23 +0000 | [diff] [blame] | 818 | if(${name} IN_LIST LLVM_DISTRIBUTION_COMPONENTS OR |
| 819 | NOT LLVM_DISTRIBUTION_COMPONENTS) |
| 820 | set(export_to_llvmexports EXPORT LLVMExports) |
Justin Bogner | 80bee97 | 2016-11-08 05:02:18 +0000 | [diff] [blame] | 821 | set_property(GLOBAL PROPERTY LLVM_HAS_EXPORTS True) |
Justin Bogner | 4ce3e0c | 2016-11-04 21:55:23 +0000 | [diff] [blame] | 822 | endif() |
| 823 | |
NAKAMURA Takumi | ef97607 | 2014-02-09 16:36:03 +0000 | [diff] [blame] | 824 | install(TARGETS ${name} |
Justin Bogner | 4ce3e0c | 2016-11-04 21:55:23 +0000 | [diff] [blame] | 825 | ${export_to_llvmexports} |
Chris Bieneman | 2724f14 | 2016-06-08 21:19:26 +0000 | [diff] [blame] | 826 | RUNTIME DESTINATION ${LLVM_TOOLS_INSTALL_DIR} |
Chris Bieneman | 0d9289d | 2015-02-18 19:25:47 +0000 | [diff] [blame] | 827 | COMPONENT ${name}) |
| 828 | |
| 829 | if (NOT CMAKE_CONFIGURATION_TYPES) |
| 830 | add_custom_target(install-${name} |
| 831 | DEPENDS ${name} |
| 832 | COMMAND "${CMAKE_COMMAND}" |
| 833 | -DCMAKE_INSTALL_COMPONENT=${name} |
| 834 | -P "${CMAKE_BINARY_DIR}/cmake_install.cmake") |
| 835 | endif() |
Hans Wennborg | 1654627 | 2013-08-24 00:20:36 +0000 | [diff] [blame] | 836 | endif() |
Oscar Fuentes | dea579f | 2009-11-23 00:32:42 +0000 | [diff] [blame] | 837 | endif() |
NAKAMURA Takumi | 8faf660 | 2014-02-09 16:36:16 +0000 | [diff] [blame] | 838 | if( LLVM_BUILD_TOOLS ) |
| 839 | set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS ${name}) |
| 840 | endif() |
Oscar Fuentes | 3145e92 | 2011-02-20 22:06:10 +0000 | [diff] [blame] | 841 | set_target_properties(${name} PROPERTIES FOLDER "Tools") |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 842 | endmacro(add_llvm_tool name) |
| 843 | |
| 844 | |
| 845 | macro(add_llvm_example name) |
Oscar Fuentes | dea579f | 2009-11-23 00:32:42 +0000 | [diff] [blame] | 846 | if( NOT LLVM_BUILD_EXAMPLES ) |
Oscar Fuentes | 0c2443a | 2009-11-23 00:21:43 +0000 | [diff] [blame] | 847 | set(EXCLUDE_FROM_ALL ON) |
| 848 | endif() |
Oscar Fuentes | 46d8a93 | 2010-09-25 20:25:25 +0000 | [diff] [blame] | 849 | add_llvm_executable(${name} ${ARGN}) |
Oscar Fuentes | dea579f | 2009-11-23 00:32:42 +0000 | [diff] [blame] | 850 | if( LLVM_BUILD_EXAMPLES ) |
| 851 | install(TARGETS ${name} RUNTIME DESTINATION examples) |
| 852 | endif() |
Oscar Fuentes | 3145e92 | 2011-02-20 22:06:10 +0000 | [diff] [blame] | 853 | set_target_properties(${name} PROPERTIES FOLDER "Examples") |
Oscar Fuentes | a229b3c | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 854 | endmacro(add_llvm_example name) |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 855 | |
Michael Gottesman | be5b787 | 2016-07-10 02:43:47 +0000 | [diff] [blame] | 856 | # This is a macro that is used to create targets for executables that are needed |
| 857 | # for development, but that are not intended to be installed by default. |
Oscar Fuentes | 3145e92 | 2011-02-20 22:06:10 +0000 | [diff] [blame] | 858 | macro(add_llvm_utility name) |
Michael Gottesman | be5b787 | 2016-07-10 02:43:47 +0000 | [diff] [blame] | 859 | if ( NOT LLVM_BUILD_UTILS ) |
| 860 | set(EXCLUDE_FROM_ALL ON) |
| 861 | endif() |
| 862 | |
Andrew Wilkins | bb6d95f | 2015-09-05 08:27:33 +0000 | [diff] [blame] | 863 | add_llvm_executable(${name} DISABLE_LLVM_LINK_LLVM_DYLIB ${ARGN}) |
Oscar Fuentes | 3145e92 | 2011-02-20 22:06:10 +0000 | [diff] [blame] | 864 | set_target_properties(${name} PROPERTIES FOLDER "Utils") |
Michael Gottesman | be5b787 | 2016-07-10 02:43:47 +0000 | [diff] [blame] | 865 | if( LLVM_INSTALL_UTILS AND LLVM_BUILD_UTILS ) |
Derek Schuff | ef9928e | 2015-03-27 16:53:06 +0000 | [diff] [blame] | 866 | install (TARGETS ${name} |
| 867 | RUNTIME DESTINATION bin |
| 868 | COMPONENT ${name}) |
| 869 | if (NOT CMAKE_CONFIGURATION_TYPES) |
| 870 | add_custom_target(install-${name} |
| 871 | DEPENDS ${name} |
| 872 | COMMAND "${CMAKE_COMMAND}" |
| 873 | -DCMAKE_INSTALL_COMPONENT=${name} |
| 874 | -P "${CMAKE_BINARY_DIR}/cmake_install.cmake") |
| 875 | endif() |
| 876 | endif() |
Oscar Fuentes | 3145e92 | 2011-02-20 22:06:10 +0000 | [diff] [blame] | 877 | endmacro(add_llvm_utility name) |
| 878 | |
| 879 | |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 880 | macro(add_llvm_target target_name) |
Oscar Fuentes | 4f0f335 | 2011-07-25 20:17:01 +0000 | [diff] [blame] | 881 | include_directories(BEFORE |
| 882 | ${CMAKE_CURRENT_BINARY_DIR} |
| 883 | ${CMAKE_CURRENT_SOURCE_DIR}) |
NAKAMURA Takumi | 45374cc | 2014-03-04 17:05:28 +0000 | [diff] [blame] | 884 | add_llvm_library(LLVM${target_name} ${ARGN}) |
Oscar Fuentes | ba1186c | 2011-02-20 02:55:27 +0000 | [diff] [blame] | 885 | set( CURRENT_LLVM_TARGET LLVM${target_name} ) |
Oscar Fuentes | cdc9549 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 886 | endmacro(add_llvm_target) |
Michael J. Spencer | e734f54 | 2012-04-26 19:43:35 +0000 | [diff] [blame] | 887 | |
Chris Bieneman | 580d815 | 2015-07-20 20:36:06 +0000 | [diff] [blame] | 888 | function(canonicalize_tool_name name output) |
| 889 | string(REPLACE "${CMAKE_CURRENT_SOURCE_DIR}/" "" nameStrip ${name}) |
| 890 | string(REPLACE "-" "_" nameUNDERSCORE ${nameStrip}) |
| 891 | string(TOUPPER ${nameUNDERSCORE} nameUPPER) |
| 892 | set(${output} "${nameUPPER}" PARENT_SCOPE) |
| 893 | endfunction(canonicalize_tool_name) |
| 894 | |
Chris Bieneman | 70997c3 | 2015-10-20 16:42:58 +0000 | [diff] [blame] | 895 | # Custom add_subdirectory wrapper |
Tobias Grosser | e3421b5 | 2016-04-29 13:03:40 +0000 | [diff] [blame] | 896 | # Takes in a project name (i.e. LLVM), the subdirectory name, and an optional |
| 897 | # path if it differs from the name. |
Chris Bieneman | 70997c3 | 2015-10-20 16:42:58 +0000 | [diff] [blame] | 898 | macro(add_llvm_subdirectory project type name) |
NAKAMURA Takumi | 700cd40 | 2012-10-05 14:10:17 +0000 | [diff] [blame] | 899 | set(add_llvm_external_dir "${ARGN}") |
| 900 | if("${add_llvm_external_dir}" STREQUAL "") |
| 901 | set(add_llvm_external_dir ${name}) |
| 902 | endif() |
Chris Bieneman | 580d815 | 2015-07-20 20:36:06 +0000 | [diff] [blame] | 903 | canonicalize_tool_name(${name} nameUPPER) |
NAKAMURA Takumi | 04e2da5 | 2015-08-22 04:53:52 +0000 | [diff] [blame] | 904 | if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${add_llvm_external_dir}/CMakeLists.txt) |
| 905 | # Treat it as in-tree subproject. |
Chris Bieneman | 70997c3 | 2015-10-20 16:42:58 +0000 | [diff] [blame] | 906 | option(${project}_${type}_${nameUPPER}_BUILD |
| 907 | "Whether to build ${name} as part of ${project}" On) |
| 908 | mark_as_advanced(${project}_${type}_${name}_BUILD) |
| 909 | if(${project}_${type}_${nameUPPER}_BUILD) |
NAKAMURA Takumi | 04e2da5 | 2015-08-22 04:53:52 +0000 | [diff] [blame] | 910 | add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/${add_llvm_external_dir} ${add_llvm_external_dir}) |
| 911 | # Don't process it in add_llvm_implicit_projects(). |
Chris Bieneman | 70997c3 | 2015-10-20 16:42:58 +0000 | [diff] [blame] | 912 | set(${project}_${type}_${nameUPPER}_BUILD OFF) |
NAKAMURA Takumi | 04e2da5 | 2015-08-22 04:53:52 +0000 | [diff] [blame] | 913 | endif() |
| 914 | else() |
| 915 | set(LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR |
| 916 | "${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR}" |
| 917 | CACHE PATH "Path to ${name} source directory") |
Chris Bieneman | 70997c3 | 2015-10-20 16:42:58 +0000 | [diff] [blame] | 918 | set(${project}_${type}_${nameUPPER}_BUILD_DEFAULT ON) |
NAKAMURA Takumi | 04e2da5 | 2015-08-22 04:53:52 +0000 | [diff] [blame] | 919 | if(NOT LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR OR NOT EXISTS ${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR}) |
Chris Bieneman | 70997c3 | 2015-10-20 16:42:58 +0000 | [diff] [blame] | 920 | set(${project}_${type}_${nameUPPER}_BUILD_DEFAULT OFF) |
NAKAMURA Takumi | 04e2da5 | 2015-08-22 04:53:52 +0000 | [diff] [blame] | 921 | endif() |
| 922 | if("${LLVM_EXTERNAL_${nameUPPER}_BUILD}" STREQUAL "OFF") |
Chris Bieneman | 70997c3 | 2015-10-20 16:42:58 +0000 | [diff] [blame] | 923 | set(${project}_${type}_${nameUPPER}_BUILD_DEFAULT OFF) |
NAKAMURA Takumi | 04e2da5 | 2015-08-22 04:53:52 +0000 | [diff] [blame] | 924 | endif() |
Chris Bieneman | 70997c3 | 2015-10-20 16:42:58 +0000 | [diff] [blame] | 925 | option(${project}_${type}_${nameUPPER}_BUILD |
NAKAMURA Takumi | 04e2da5 | 2015-08-22 04:53:52 +0000 | [diff] [blame] | 926 | "Whether to build ${name} as part of LLVM" |
Chris Bieneman | 70997c3 | 2015-10-20 16:42:58 +0000 | [diff] [blame] | 927 | ${${project}_${type}_${nameUPPER}_BUILD_DEFAULT}) |
| 928 | if (${project}_${type}_${nameUPPER}_BUILD) |
NAKAMURA Takumi | 6fa8532 | 2015-08-22 05:11:02 +0000 | [diff] [blame] | 929 | if(EXISTS ${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR}) |
| 930 | add_subdirectory(${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR} ${add_llvm_external_dir}) |
| 931 | elseif(NOT "${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR}" STREQUAL "") |
| 932 | message(WARNING "Nonexistent directory for ${name}: ${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR}") |
| 933 | endif() |
NAKAMURA Takumi | 04e2da5 | 2015-08-22 04:53:52 +0000 | [diff] [blame] | 934 | # FIXME: It'd be redundant. |
Chris Bieneman | 70997c3 | 2015-10-20 16:42:58 +0000 | [diff] [blame] | 935 | set(${project}_${type}_${nameUPPER}_BUILD Off) |
Michael J. Spencer | e734f54 | 2012-04-26 19:43:35 +0000 | [diff] [blame] | 936 | endif() |
| 937 | endif() |
Chris Bieneman | 70997c3 | 2015-10-20 16:42:58 +0000 | [diff] [blame] | 938 | endmacro() |
| 939 | |
| 940 | # Add external project that may want to be built as part of llvm such as Clang, |
| 941 | # lld, and Polly. This adds two options. One for the source directory of the |
| 942 | # project, which defaults to ${CMAKE_CURRENT_SOURCE_DIR}/${name}. Another to |
| 943 | # enable or disable building it with everything else. |
| 944 | # Additional parameter can be specified as the name of directory. |
| 945 | macro(add_llvm_external_project name) |
Manuel Klimek | f80abb9 | 2015-10-22 08:31:46 +0000 | [diff] [blame] | 946 | add_llvm_subdirectory(LLVM TOOL ${name} ${ARGN}) |
Chris Bieneman | 70997c3 | 2015-10-20 16:42:58 +0000 | [diff] [blame] | 947 | endmacro() |
Chandler Carruth | a5d42f8 | 2012-06-21 05:16:58 +0000 | [diff] [blame] | 948 | |
Argyrios Kyrtzidis | 7eec9d0 | 2013-08-21 19:13:44 +0000 | [diff] [blame] | 949 | macro(add_llvm_tool_subdirectory name) |
Chris Bieneman | 580d815 | 2015-07-20 20:36:06 +0000 | [diff] [blame] | 950 | add_llvm_external_project(${name}) |
Argyrios Kyrtzidis | 7eec9d0 | 2013-08-21 19:13:44 +0000 | [diff] [blame] | 951 | endmacro(add_llvm_tool_subdirectory) |
| 952 | |
Chris Bieneman | 580d815 | 2015-07-20 20:36:06 +0000 | [diff] [blame] | 953 | function(get_project_name_from_src_var var output) |
| 954 | string(REGEX MATCH "LLVM_EXTERNAL_(.*)_SOURCE_DIR" |
| 955 | MACHED_TOOL "${var}") |
| 956 | if(MACHED_TOOL) |
| 957 | set(${output} ${CMAKE_MATCH_1} PARENT_SCOPE) |
| 958 | else() |
| 959 | set(${output} PARENT_SCOPE) |
| 960 | endif() |
| 961 | endfunction() |
Argyrios Kyrtzidis | 7eec9d0 | 2013-08-21 19:13:44 +0000 | [diff] [blame] | 962 | |
Chris Bieneman | 70997c3 | 2015-10-20 16:42:58 +0000 | [diff] [blame] | 963 | function(create_subdirectory_options project type) |
Chris Bieneman | 580d815 | 2015-07-20 20:36:06 +0000 | [diff] [blame] | 964 | file(GLOB sub-dirs "${CMAKE_CURRENT_SOURCE_DIR}/*") |
| 965 | foreach(dir ${sub-dirs}) |
| 966 | if(IS_DIRECTORY "${dir}" AND EXISTS "${dir}/CMakeLists.txt") |
| 967 | canonicalize_tool_name(${dir} name) |
Chris Bieneman | 70997c3 | 2015-10-20 16:42:58 +0000 | [diff] [blame] | 968 | option(${project}_${type}_${name}_BUILD |
| 969 | "Whether to build ${name} as part of ${project}" On) |
| 970 | mark_as_advanced(${project}_${type}_${name}_BUILD) |
Chris Bieneman | 580d815 | 2015-07-20 20:36:06 +0000 | [diff] [blame] | 971 | endif() |
| 972 | endforeach() |
Chris Bieneman | 70997c3 | 2015-10-20 16:42:58 +0000 | [diff] [blame] | 973 | endfunction(create_subdirectory_options) |
| 974 | |
| 975 | function(create_llvm_tool_options) |
| 976 | create_subdirectory_options(LLVM TOOL) |
Chris Bieneman | 580d815 | 2015-07-20 20:36:06 +0000 | [diff] [blame] | 977 | endfunction(create_llvm_tool_options) |
| 978 | |
Chris Bieneman | 74c98f0 | 2016-03-08 18:43:28 +0000 | [diff] [blame] | 979 | function(llvm_add_implicit_projects project) |
Argyrios Kyrtzidis | 7eec9d0 | 2013-08-21 19:13:44 +0000 | [diff] [blame] | 980 | set(list_of_implicit_subdirs "") |
| 981 | file(GLOB sub-dirs "${CMAKE_CURRENT_SOURCE_DIR}/*") |
| 982 | foreach(dir ${sub-dirs}) |
Chris Bieneman | 580d815 | 2015-07-20 20:36:06 +0000 | [diff] [blame] | 983 | if(IS_DIRECTORY "${dir}" AND EXISTS "${dir}/CMakeLists.txt") |
| 984 | canonicalize_tool_name(${dir} name) |
Chris Bieneman | 74c98f0 | 2016-03-08 18:43:28 +0000 | [diff] [blame] | 985 | if (${project}_TOOL_${name}_BUILD) |
Argyrios Kyrtzidis | 7eec9d0 | 2013-08-21 19:13:44 +0000 | [diff] [blame] | 986 | get_filename_component(fn "${dir}" NAME) |
| 987 | list(APPEND list_of_implicit_subdirs "${fn}") |
| 988 | endif() |
| 989 | endif() |
| 990 | endforeach() |
| 991 | |
| 992 | foreach(external_proj ${list_of_implicit_subdirs}) |
Chris Bieneman | 74c98f0 | 2016-03-08 18:43:28 +0000 | [diff] [blame] | 993 | add_llvm_subdirectory(${project} TOOL "${external_proj}" ${ARGN}) |
Argyrios Kyrtzidis | 7eec9d0 | 2013-08-21 19:13:44 +0000 | [diff] [blame] | 994 | endforeach() |
Chris Bieneman | 74c98f0 | 2016-03-08 18:43:28 +0000 | [diff] [blame] | 995 | endfunction(llvm_add_implicit_projects) |
| 996 | |
| 997 | function(add_llvm_implicit_projects) |
| 998 | llvm_add_implicit_projects(LLVM) |
Chris Bieneman | 580d815 | 2015-07-20 20:36:06 +0000 | [diff] [blame] | 999 | endfunction(add_llvm_implicit_projects) |
Argyrios Kyrtzidis | 7eec9d0 | 2013-08-21 19:13:44 +0000 | [diff] [blame] | 1000 | |
Chandler Carruth | a5d42f8 | 2012-06-21 05:16:58 +0000 | [diff] [blame] | 1001 | # Generic support for adding a unittest. |
Chandler Carruth | 94d0251 | 2012-06-21 09:51:26 +0000 | [diff] [blame] | 1002 | function(add_unittest test_suite test_name) |
Chandler Carruth | a5d42f8 | 2012-06-21 05:16:58 +0000 | [diff] [blame] | 1003 | if( NOT LLVM_BUILD_TESTS ) |
| 1004 | set(EXCLUDE_FROM_ALL ON) |
| 1005 | endif() |
| 1006 | |
NAKAMURA Takumi | e42fd0d | 2014-01-07 10:24:14 +0000 | [diff] [blame] | 1007 | include_directories(${LLVM_MAIN_SRC_DIR}/utils/unittest/googletest/include) |
Chandler Carruth | bf6a4e0 | 2017-01-10 22:32:26 +0000 | [diff] [blame] | 1008 | include_directories(${LLVM_MAIN_SRC_DIR}/utils/unittest/googlemock/include) |
NAKAMURA Takumi | e42fd0d | 2014-01-07 10:24:14 +0000 | [diff] [blame] | 1009 | if (NOT LLVM_ENABLE_THREADS) |
| 1010 | list(APPEND LLVM_COMPILE_DEFINITIONS GTEST_HAS_PTHREAD=0) |
| 1011 | endif () |
| 1012 | |
Chandler Carruth | 25657e8 | 2017-01-06 23:16:00 +0000 | [diff] [blame] | 1013 | if (SUPPORTS_VARIADIC_MACROS_FLAG) |
NAKAMURA Takumi | 13961cb | 2014-01-30 22:55:25 +0000 | [diff] [blame] | 1014 | list(APPEND LLVM_COMPILE_FLAGS "-Wno-variadic-macros") |
NAKAMURA Takumi | e42fd0d | 2014-01-07 10:24:14 +0000 | [diff] [blame] | 1015 | endif () |
Chandler Carruth | dd9c27b | 2017-01-04 23:40:06 +0000 | [diff] [blame] | 1016 | # Some parts of gtest rely on this GNU extension, don't warn on it. |
Chandler Carruth | 25657e8 | 2017-01-06 23:16:00 +0000 | [diff] [blame] | 1017 | if(SUPPORTS_GNU_ZERO_VARIADIC_MACRO_ARGUMENTS_FLAG) |
Chandler Carruth | dd9c27b | 2017-01-04 23:40:06 +0000 | [diff] [blame] | 1018 | list(APPEND LLVM_COMPILE_FLAGS "-Wno-gnu-zero-variadic-macro-arguments") |
| 1019 | endif() |
NAKAMURA Takumi | e42fd0d | 2014-01-07 10:24:14 +0000 | [diff] [blame] | 1020 | |
NAKAMURA Takumi | a679f43 | 2014-01-28 09:44:06 +0000 | [diff] [blame] | 1021 | set(LLVM_REQUIRES_RTTI OFF) |
NAKAMURA Takumi | e42fd0d | 2014-01-07 10:24:14 +0000 | [diff] [blame] | 1022 | |
Andrew Wilkins | 095e22d | 2016-02-12 01:42:43 +0000 | [diff] [blame] | 1023 | list(APPEND LLVM_LINK_COMPONENTS Support) # gtest needs it for raw_ostream |
Jonas Hahnfeld | 277a09d | 2016-11-03 06:58:16 +0000 | [diff] [blame] | 1024 | add_llvm_executable(${test_name} IGNORE_EXTERNALIZE_DEBUGINFO NO_INSTALL_RPATH ${ARGN}) |
NAKAMURA Takumi | baa9f53 | 2013-12-30 06:48:30 +0000 | [diff] [blame] | 1025 | set(outdir ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}) |
John Brawn | c11ef2a | 2015-09-30 15:20:51 +0000 | [diff] [blame] | 1026 | set_output_directory(${test_name} BINARY_DIR ${outdir} LIBRARY_DIR ${outdir}) |
Artem Belevich | df7103d | 2016-06-21 19:34:40 +0000 | [diff] [blame] | 1027 | # libpthreads overrides some standard library symbols, so main |
| 1028 | # executable must be linked with it in order to provide consistent |
| 1029 | # API for all shared libaries loaded by this executable. |
Eric Fiselier | 87c87f4 | 2017-02-10 01:59:20 +0000 | [diff] [blame] | 1030 | target_link_libraries(${test_name} gtest_main gtest ${LLVM_PTHREAD_LIB}) |
Chandler Carruth | a5d42f8 | 2012-06-21 05:16:58 +0000 | [diff] [blame] | 1031 | |
| 1032 | add_dependencies(${test_suite} ${test_name}) |
| 1033 | get_target_property(test_suite_folder ${test_suite} FOLDER) |
| 1034 | if (NOT ${test_suite_folder} STREQUAL "NOTFOUND") |
| 1035 | set_property(TARGET ${test_name} PROPERTY FOLDER "${test_suite_folder}") |
| 1036 | endif () |
Chandler Carruth | a5d42f8 | 2012-06-21 05:16:58 +0000 | [diff] [blame] | 1037 | endfunction() |
Chandler Carruth | 3511dd3 | 2012-06-28 06:36:24 +0000 | [diff] [blame] | 1038 | |
Peter Collingbourne | a4f0bd7 | 2014-11-27 00:15:21 +0000 | [diff] [blame] | 1039 | function(llvm_add_go_executable binary pkgpath) |
| 1040 | cmake_parse_arguments(ARG "ALL" "" "DEPENDS;GOFLAGS" ${ARGN}) |
| 1041 | |
| 1042 | if(LLVM_BINDINGS MATCHES "go") |
| 1043 | # FIXME: This should depend only on the libraries Go needs. |
| 1044 | get_property(llvmlibs GLOBAL PROPERTY LLVM_LIBS) |
| 1045 | set(binpath ${CMAKE_BINARY_DIR}/bin/${binary}${CMAKE_EXECUTABLE_SUFFIX}) |
| 1046 | set(cc "${CMAKE_C_COMPILER} ${CMAKE_C_COMPILER_ARG1}") |
| 1047 | set(cxx "${CMAKE_CXX_COMPILER} ${CMAKE_CXX_COMPILER_ARG1}") |
Chandler Carruth | cab512d | 2014-12-29 22:50:30 +0000 | [diff] [blame] | 1048 | set(cppflags "") |
| 1049 | get_property(include_dirs DIRECTORY PROPERTY INCLUDE_DIRECTORIES) |
| 1050 | foreach(d ${include_dirs}) |
| 1051 | set(cppflags "${cppflags} -I${d}") |
| 1052 | endforeach(d) |
Peter Collingbourne | a4f0bd7 | 2014-11-27 00:15:21 +0000 | [diff] [blame] | 1053 | set(ldflags "${CMAKE_EXE_LINKER_FLAGS}") |
| 1054 | add_custom_command(OUTPUT ${binpath} |
Andrew Wilkins | 5bf7d81 | 2016-07-27 03:21:51 +0000 | [diff] [blame] | 1055 | COMMAND ${CMAKE_BINARY_DIR}/bin/llvm-go "go=${GO_EXECUTABLE}" "cc=${cc}" "cxx=${cxx}" "cppflags=${cppflags}" "ldflags=${ldflags}" "packages=${LLVM_GO_PACKAGES}" |
Peter Collingbourne | a4f0bd7 | 2014-11-27 00:15:21 +0000 | [diff] [blame] | 1056 | ${ARG_GOFLAGS} build -o ${binpath} ${pkgpath} |
| 1057 | DEPENDS llvm-config ${CMAKE_BINARY_DIR}/bin/llvm-go${CMAKE_EXECUTABLE_SUFFIX} |
| 1058 | ${llvmlibs} ${ARG_DEPENDS} |
| 1059 | COMMENT "Building Go executable ${binary}" |
| 1060 | VERBATIM) |
| 1061 | if (ARG_ALL) |
| 1062 | add_custom_target(${binary} ALL DEPENDS ${binpath}) |
| 1063 | else() |
| 1064 | add_custom_target(${binary} DEPENDS ${binpath}) |
| 1065 | endif() |
| 1066 | endif() |
| 1067 | endfunction() |
| 1068 | |
Michal Gorny | 9283f5b | 2017-01-06 21:33:48 +0000 | [diff] [blame] | 1069 | # This function canonicalize the CMake variables passed by names |
| 1070 | # from CMake boolean to 0/1 suitable for passing into Python or C++, |
| 1071 | # in place. |
| 1072 | function(llvm_canonicalize_cmake_booleans) |
| 1073 | foreach(var ${ARGN}) |
| 1074 | if(${var}) |
| 1075 | set(${var} 1 PARENT_SCOPE) |
| 1076 | else() |
| 1077 | set(${var} 0 PARENT_SCOPE) |
| 1078 | endif() |
| 1079 | endforeach() |
| 1080 | endfunction(llvm_canonicalize_cmake_booleans) |
| 1081 | |
Chandler Carruth | 3511dd3 | 2012-06-28 06:36:24 +0000 | [diff] [blame] | 1082 | # This function provides an automatic way to 'configure'-like generate a file |
Alp Toker | 171b0c3 | 2013-12-20 00:33:39 +0000 | [diff] [blame] | 1083 | # based on a set of common and custom variables, specifically targeting the |
Chandler Carruth | 3511dd3 | 2012-06-28 06:36:24 +0000 | [diff] [blame] | 1084 | # variables needed for the 'lit.site.cfg' files. This function bundles the |
| 1085 | # common variables that any Lit instance is likely to need, and custom |
| 1086 | # variables can be passed in. |
| 1087 | function(configure_lit_site_cfg input output) |
| 1088 | foreach(c ${LLVM_TARGETS_TO_BUILD}) |
| 1089 | set(TARGETS_BUILT "${TARGETS_BUILT} ${c}") |
| 1090 | endforeach(c) |
| 1091 | set(TARGETS_TO_BUILD ${TARGETS_BUILT}) |
| 1092 | |
| 1093 | set(SHLIBEXT "${LTDL_SHLIB_EXT}") |
Chandler Carruth | 3511dd3 | 2012-06-28 06:36:24 +0000 | [diff] [blame] | 1094 | |
Chandler Carruth | 3511dd3 | 2012-06-28 06:36:24 +0000 | [diff] [blame] | 1095 | # Configuration-time: See Unit/lit.site.cfg.in |
NAKAMURA Takumi | 0dc10d5 | 2013-12-04 11:15:17 +0000 | [diff] [blame] | 1096 | if (CMAKE_CFG_INTDIR STREQUAL ".") |
| 1097 | set(LLVM_BUILD_MODE ".") |
| 1098 | else () |
| 1099 | set(LLVM_BUILD_MODE "%(build_mode)s") |
| 1100 | endif () |
Chandler Carruth | 3511dd3 | 2012-06-28 06:36:24 +0000 | [diff] [blame] | 1101 | |
NAKAMURA Takumi | 3c6f5cd | 2014-01-26 06:18:56 +0000 | [diff] [blame] | 1102 | # They below might not be the build tree but provided binary tree. |
Chandler Carruth | 3511dd3 | 2012-06-28 06:36:24 +0000 | [diff] [blame] | 1103 | set(LLVM_SOURCE_DIR ${LLVM_MAIN_SRC_DIR}) |
| 1104 | set(LLVM_BINARY_DIR ${LLVM_BINARY_DIR}) |
NAKAMURA Takumi | ce78b80 | 2014-01-19 12:52:10 +0000 | [diff] [blame] | 1105 | string(REPLACE ${CMAKE_CFG_INTDIR} ${LLVM_BUILD_MODE} LLVM_TOOLS_DIR ${LLVM_TOOLS_BINARY_DIR}) |
| 1106 | string(REPLACE ${CMAKE_CFG_INTDIR} ${LLVM_BUILD_MODE} LLVM_LIBS_DIR ${LLVM_LIBRARY_DIR}) |
NAKAMURA Takumi | 3c6f5cd | 2014-01-26 06:18:56 +0000 | [diff] [blame] | 1107 | |
| 1108 | # SHLIBDIR points the build tree. |
NAKAMURA Takumi | 6c5fbbc | 2014-07-04 04:23:26 +0000 | [diff] [blame] | 1109 | string(REPLACE ${CMAKE_CFG_INTDIR} ${LLVM_BUILD_MODE} SHLIBDIR "${LLVM_SHLIB_OUTPUT_INTDIR}") |
NAKAMURA Takumi | 3c6f5cd | 2014-01-26 06:18:56 +0000 | [diff] [blame] | 1110 | |
Chandler Carruth | 3511dd3 | 2012-06-28 06:36:24 +0000 | [diff] [blame] | 1111 | set(PYTHON_EXECUTABLE ${PYTHON_EXECUTABLE}) |
NAKAMURA Takumi | 8d7a173 | 2014-07-04 04:45:40 +0000 | [diff] [blame] | 1112 | # FIXME: "ENABLE_SHARED" doesn't make sense, since it is used just for |
| 1113 | # plugins. We may rename it. |
| 1114 | if(LLVM_ENABLE_PLUGINS) |
| 1115 | set(ENABLE_SHARED "1") |
| 1116 | else() |
| 1117 | set(ENABLE_SHARED "0") |
| 1118 | endif() |
Chandler Carruth | 3511dd3 | 2012-06-28 06:36:24 +0000 | [diff] [blame] | 1119 | |
| 1120 | if(LLVM_ENABLE_ASSERTIONS AND NOT MSVC_IDE) |
| 1121 | set(ENABLE_ASSERTIONS "1") |
| 1122 | else() |
| 1123 | set(ENABLE_ASSERTIONS "0") |
| 1124 | endif() |
| 1125 | |
Kuba Brecka | a62bbcc | 2015-01-24 01:42:44 +0000 | [diff] [blame] | 1126 | set(HOST_OS ${CMAKE_SYSTEM_NAME}) |
Tim Northover | bfe8468 | 2013-02-14 16:49:32 +0000 | [diff] [blame] | 1127 | set(HOST_ARCH ${CMAKE_SYSTEM_PROCESSOR}) |
Chandler Carruth | 3511dd3 | 2012-06-28 06:36:24 +0000 | [diff] [blame] | 1128 | |
Peter Collingbourne | ce80084 | 2014-10-17 18:32:36 +0000 | [diff] [blame] | 1129 | set(HOST_CC "${CMAKE_C_COMPILER} ${CMAKE_C_COMPILER_ARG1}") |
| 1130 | set(HOST_CXX "${CMAKE_CXX_COMPILER} ${CMAKE_CXX_COMPILER_ARG1}") |
Chandler Carruth | 9719242 | 2014-10-21 00:36:28 +0000 | [diff] [blame] | 1131 | set(HOST_LDFLAGS "${CMAKE_EXE_LINKER_FLAGS}") |
Peter Collingbourne | 82e3e37 | 2014-10-16 22:48:02 +0000 | [diff] [blame] | 1132 | |
Alex Denisov | d5cee4a | 2016-04-16 06:47:41 +0000 | [diff] [blame] | 1133 | set(LIT_SITE_CFG_IN_HEADER "## Autogenerated from ${input}\n## Do not edit!") |
| 1134 | |
Chandler Carruth | 3511dd3 | 2012-06-28 06:36:24 +0000 | [diff] [blame] | 1135 | configure_file(${input} ${output} @ONLY) |
| 1136 | endfunction() |
Chandler Carruth | 69ce665 | 2012-06-30 10:14:14 +0000 | [diff] [blame] | 1137 | |
| 1138 | # A raw function to create a lit target. This is used to implement the testuite |
| 1139 | # management functions. |
| 1140 | function(add_lit_target target comment) |
Filipe Cabecinhas | c1b849a | 2015-06-19 03:45:40 +0000 | [diff] [blame] | 1141 | cmake_parse_arguments(ARG "" "" "PARAMS;DEPENDS;ARGS" ${ARGN}) |
Chandler Carruth | 69ce665 | 2012-06-30 10:14:14 +0000 | [diff] [blame] | 1142 | set(LIT_ARGS "${ARG_ARGS} ${LLVM_LIT_ARGS}") |
| 1143 | separate_arguments(LIT_ARGS) |
NAKAMURA Takumi | 0dc10d5 | 2013-12-04 11:15:17 +0000 | [diff] [blame] | 1144 | if (NOT CMAKE_CFG_INTDIR STREQUAL ".") |
| 1145 | list(APPEND LIT_ARGS --param build_mode=${CMAKE_CFG_INTDIR}) |
| 1146 | endif () |
Michal Gorny | bab7943 | 2016-10-04 20:25:37 +0000 | [diff] [blame] | 1147 | if (EXISTS ${LLVM_MAIN_SRC_DIR}/utils/lit/lit.py) |
| 1148 | # reset cache after erraneous r283029 |
| 1149 | # TODO: remove this once all buildbots run |
| 1150 | if (LIT_COMMAND STREQUAL "${PYTHON_EXECUTABLE} ${LLVM_MAIN_SRC_DIR}/utils/lit/lit.py") |
| 1151 | unset(LIT_COMMAND CACHE) |
| 1152 | endif() |
| 1153 | set (LIT_COMMAND "${PYTHON_EXECUTABLE};${LLVM_MAIN_SRC_DIR}/utils/lit/lit.py" |
| 1154 | CACHE STRING "Command used to spawn llvm-lit") |
Greg Fitzgerald | 962a339 | 2014-05-21 16:44:03 +0000 | [diff] [blame] | 1155 | else() |
Michal Gorny | bab7943 | 2016-10-04 20:25:37 +0000 | [diff] [blame] | 1156 | find_program(LIT_COMMAND NAMES llvm-lit lit.py lit) |
Greg Fitzgerald | 962a339 | 2014-05-21 16:44:03 +0000 | [diff] [blame] | 1157 | endif () |
| 1158 | list(APPEND LIT_COMMAND ${LIT_ARGS}) |
Chandler Carruth | 69ce665 | 2012-06-30 10:14:14 +0000 | [diff] [blame] | 1159 | foreach(param ${ARG_PARAMS}) |
| 1160 | list(APPEND LIT_COMMAND --param ${param}) |
| 1161 | endforeach() |
Filipe Cabecinhas | c1b849a | 2015-06-19 03:45:40 +0000 | [diff] [blame] | 1162 | if (ARG_UNPARSED_ARGUMENTS) |
NAKAMURA Takumi | 04a664e | 2012-12-24 22:43:59 +0000 | [diff] [blame] | 1163 | add_custom_target(${target} |
Filipe Cabecinhas | c1b849a | 2015-06-19 03:45:40 +0000 | [diff] [blame] | 1164 | COMMAND ${LIT_COMMAND} ${ARG_UNPARSED_ARGUMENTS} |
NAKAMURA Takumi | 04a664e | 2012-12-24 22:43:59 +0000 | [diff] [blame] | 1165 | COMMENT "${comment}" |
Chris Bieneman | df04e79 | 2016-06-08 22:19:25 +0000 | [diff] [blame] | 1166 | USES_TERMINAL |
NAKAMURA Takumi | 04a664e | 2012-12-24 22:43:59 +0000 | [diff] [blame] | 1167 | ) |
NAKAMURA Takumi | 04a664e | 2012-12-24 22:43:59 +0000 | [diff] [blame] | 1168 | else() |
| 1169 | add_custom_target(${target} |
Nico Weber | b42359d | 2013-12-29 00:11:20 +0000 | [diff] [blame] | 1170 | COMMAND ${CMAKE_COMMAND} -E echo "${target} does nothing, no tools built.") |
NAKAMURA Takumi | 04a664e | 2012-12-24 22:43:59 +0000 | [diff] [blame] | 1171 | message(STATUS "${target} does nothing.") |
| 1172 | endif() |
Peter Collingbourne | 2ba7f7b | 2015-02-18 22:25:35 +0000 | [diff] [blame] | 1173 | if (ARG_DEPENDS) |
| 1174 | add_dependencies(${target} ${ARG_DEPENDS}) |
| 1175 | endif() |
NAKAMURA Takumi | 03fc730 | 2013-12-02 11:31:19 +0000 | [diff] [blame] | 1176 | |
| 1177 | # Tests should be excluded from "Build Solution". |
| 1178 | set_target_properties(${target} PROPERTIES EXCLUDE_FROM_DEFAULT_BUILD ON) |
Chandler Carruth | 69ce665 | 2012-06-30 10:14:14 +0000 | [diff] [blame] | 1179 | endfunction() |
| 1180 | |
| 1181 | # A function to add a set of lit test suites to be driven through 'check-*' targets. |
| 1182 | function(add_lit_testsuite target comment) |
Filipe Cabecinhas | c1b849a | 2015-06-19 03:45:40 +0000 | [diff] [blame] | 1183 | cmake_parse_arguments(ARG "" "" "PARAMS;DEPENDS;ARGS" ${ARGN}) |
Chandler Carruth | 69ce665 | 2012-06-30 10:14:14 +0000 | [diff] [blame] | 1184 | |
NAKAMURA Takumi | 54d2274 | 2012-10-10 13:32:55 +0000 | [diff] [blame] | 1185 | # EXCLUDE_FROM_ALL excludes the test ${target} out of check-all. |
| 1186 | if(NOT EXCLUDE_FROM_ALL) |
| 1187 | # Register the testsuites, params and depends for the global check rule. |
Filipe Cabecinhas | c1b849a | 2015-06-19 03:45:40 +0000 | [diff] [blame] | 1188 | set_property(GLOBAL APPEND PROPERTY LLVM_LIT_TESTSUITES ${ARG_UNPARSED_ARGUMENTS}) |
NAKAMURA Takumi | 54d2274 | 2012-10-10 13:32:55 +0000 | [diff] [blame] | 1189 | set_property(GLOBAL APPEND PROPERTY LLVM_LIT_PARAMS ${ARG_PARAMS}) |
| 1190 | set_property(GLOBAL APPEND PROPERTY LLVM_LIT_DEPENDS ${ARG_DEPENDS}) |
| 1191 | set_property(GLOBAL APPEND PROPERTY LLVM_LIT_EXTRA_ARGS ${ARG_ARGS}) |
| 1192 | endif() |
Chandler Carruth | 69ce665 | 2012-06-30 10:14:14 +0000 | [diff] [blame] | 1193 | |
| 1194 | # Produce a specific suffixed check rule. |
| 1195 | add_lit_target(${target} ${comment} |
Filipe Cabecinhas | c1b849a | 2015-06-19 03:45:40 +0000 | [diff] [blame] | 1196 | ${ARG_UNPARSED_ARGUMENTS} |
Chandler Carruth | 69ce665 | 2012-06-30 10:14:14 +0000 | [diff] [blame] | 1197 | PARAMS ${ARG_PARAMS} |
| 1198 | DEPENDS ${ARG_DEPENDS} |
| 1199 | ARGS ${ARG_ARGS} |
| 1200 | ) |
| 1201 | endfunction() |
Chris Bieneman | 9ea37d9 | 2015-03-23 20:04:00 +0000 | [diff] [blame] | 1202 | |
| 1203 | function(add_lit_testsuites project directory) |
| 1204 | if (NOT CMAKE_CONFIGURATION_TYPES) |
Filipe Cabecinhas | c1b849a | 2015-06-19 03:45:40 +0000 | [diff] [blame] | 1205 | cmake_parse_arguments(ARG "" "" "PARAMS;DEPENDS;ARGS" ${ARGN}) |
Justin Bogner | e889462 | 2016-05-06 21:57:30 +0000 | [diff] [blame] | 1206 | |
| 1207 | # Search recursively for test directories by assuming anything not |
| 1208 | # in a directory called Inputs contains tests. |
Justin Bogner | 3adaa8c | 2016-06-08 22:36:37 +0000 | [diff] [blame] | 1209 | file(GLOB_RECURSE to_process LIST_DIRECTORIES true ${directory}/*) |
| 1210 | foreach(lit_suite ${to_process}) |
| 1211 | if(NOT IS_DIRECTORY ${lit_suite}) |
| 1212 | continue() |
| 1213 | endif() |
| 1214 | string(FIND ${lit_suite} Inputs is_inputs) |
Justin Bogner | 25ef9e3 | 2016-07-25 18:07:14 +0000 | [diff] [blame] | 1215 | string(FIND ${lit_suite} Output is_output) |
Ayman Musa | 2d33869 | 2017-04-13 09:26:49 +0000 | [diff] [blame] | 1216 | if (NOT (is_inputs EQUAL -1 AND is_output EQUAL -1)) |
Justin Bogner | 3adaa8c | 2016-06-08 22:36:37 +0000 | [diff] [blame] | 1217 | continue() |
| 1218 | endif() |
Justin Bogner | e889462 | 2016-05-06 21:57:30 +0000 | [diff] [blame] | 1219 | |
Justin Bogner | 3adaa8c | 2016-06-08 22:36:37 +0000 | [diff] [blame] | 1220 | # Create a check- target for the directory. |
| 1221 | string(REPLACE ${directory} "" name_slash ${lit_suite}) |
Chris Bieneman | 9ea37d9 | 2015-03-23 20:04:00 +0000 | [diff] [blame] | 1222 | if (name_slash) |
| 1223 | string(REPLACE "/" "-" name_slash ${name_slash}) |
| 1224 | string(REPLACE "\\" "-" name_dashes ${name_slash}) |
| 1225 | string(TOLOWER "${project}${name_dashes}" name_var) |
Justin Bogner | 3adaa8c | 2016-06-08 22:36:37 +0000 | [diff] [blame] | 1226 | add_lit_target("check-${name_var}" "Running lit suite ${lit_suite}" |
| 1227 | ${lit_suite} |
Chris Bieneman | 9ea37d9 | 2015-03-23 20:04:00 +0000 | [diff] [blame] | 1228 | PARAMS ${ARG_PARAMS} |
| 1229 | DEPENDS ${ARG_DEPENDS} |
| 1230 | ARGS ${ARG_ARGS} |
| 1231 | ) |
| 1232 | endif() |
| 1233 | endforeach() |
| 1234 | endif() |
| 1235 | endfunction() |
Chris Bieneman | 6d43afc | 2015-09-14 23:09:06 +0000 | [diff] [blame] | 1236 | |
Chris Bieneman | 5e96fe9 | 2015-11-04 23:11:12 +0000 | [diff] [blame] | 1237 | function(llvm_install_library_symlink name dest type) |
| 1238 | cmake_parse_arguments(ARG "ALWAYS_GENERATE" "COMPONENT" "" ${ARGN}) |
| 1239 | foreach(path ${CMAKE_MODULE_PATH}) |
| 1240 | if(EXISTS ${path}/LLVMInstallSymlink.cmake) |
| 1241 | set(INSTALL_SYMLINK ${path}/LLVMInstallSymlink.cmake) |
| 1242 | break() |
| 1243 | endif() |
| 1244 | endforeach() |
| 1245 | |
| 1246 | set(component ${ARG_COMPONENT}) |
| 1247 | if(NOT component) |
| 1248 | set(component ${name}) |
| 1249 | endif() |
| 1250 | |
| 1251 | set(full_name ${CMAKE_${type}_LIBRARY_PREFIX}${name}${CMAKE_${type}_LIBRARY_SUFFIX}) |
| 1252 | set(full_dest ${CMAKE_${type}_LIBRARY_PREFIX}${dest}${CMAKE_${type}_LIBRARY_SUFFIX}) |
| 1253 | |
Chris Bieneman | 021f874 | 2015-11-11 16:19:39 +0000 | [diff] [blame] | 1254 | set(output_dir lib${LLVM_LIBDIR_SUFFIX}) |
Chris Bieneman | 5e96fe9 | 2015-11-04 23:11:12 +0000 | [diff] [blame] | 1255 | if(WIN32 AND "${type}" STREQUAL "SHARED") |
| 1256 | set(output_dir bin) |
| 1257 | endif() |
| 1258 | |
| 1259 | install(SCRIPT ${INSTALL_SYMLINK} |
| 1260 | CODE "install_symlink(${full_name} ${full_dest} ${output_dir})" |
| 1261 | COMPONENT ${component}) |
| 1262 | |
| 1263 | if (NOT CMAKE_CONFIGURATION_TYPES AND NOT ARG_ALWAYS_GENERATE) |
| 1264 | add_custom_target(install-${name} |
| 1265 | DEPENDS ${name} ${dest} install-${dest} |
| 1266 | COMMAND "${CMAKE_COMMAND}" |
| 1267 | -DCMAKE_INSTALL_COMPONENT=${name} |
| 1268 | -P "${CMAKE_BINARY_DIR}/cmake_install.cmake") |
| 1269 | endif() |
| 1270 | endfunction() |
| 1271 | |
Chris Bieneman | bff03b0 | 2015-09-16 20:49:59 +0000 | [diff] [blame] | 1272 | function(llvm_install_symlink name dest) |
Saleem Abdulrasool | 27227bb | 2016-12-03 22:03:24 +0000 | [diff] [blame] | 1273 | cmake_parse_arguments(ARG "ALWAYS_GENERATE" "COMPONENT" "" ${ARGN}) |
Chris Bieneman | 0824970 | 2015-09-18 17:39:58 +0000 | [diff] [blame] | 1274 | foreach(path ${CMAKE_MODULE_PATH}) |
| 1275 | if(EXISTS ${path}/LLVMInstallSymlink.cmake) |
| 1276 | set(INSTALL_SYMLINK ${path}/LLVMInstallSymlink.cmake) |
| 1277 | break() |
| 1278 | endif() |
| 1279 | endforeach() |
Ramkumar Ramachandra | cad135a | 2015-11-10 18:26:34 +0000 | [diff] [blame] | 1280 | |
Saleem Abdulrasool | 27227bb | 2016-12-03 22:03:24 +0000 | [diff] [blame] | 1281 | if(ARG_COMPONENT) |
| 1282 | set(component ${ARG_COMPONENT}) |
Chris Bieneman | 895d96a | 2015-09-18 21:08:32 +0000 | [diff] [blame] | 1283 | else() |
Saleem Abdulrasool | 27227bb | 2016-12-03 22:03:24 +0000 | [diff] [blame] | 1284 | if(ARG_ALWAYS_GENERATE) |
| 1285 | set(component ${dest}) |
| 1286 | else() |
| 1287 | set(component ${name}) |
| 1288 | endif() |
Chris Bieneman | 895d96a | 2015-09-18 21:08:32 +0000 | [diff] [blame] | 1289 | endif() |
| 1290 | |
Chris Bieneman | 11a7160 | 2015-10-16 23:17:13 +0000 | [diff] [blame] | 1291 | set(full_name ${name}${CMAKE_EXECUTABLE_SUFFIX}) |
| 1292 | set(full_dest ${dest}${CMAKE_EXECUTABLE_SUFFIX}) |
| 1293 | |
Chris Bieneman | 0824970 | 2015-09-18 17:39:58 +0000 | [diff] [blame] | 1294 | install(SCRIPT ${INSTALL_SYMLINK} |
Chris Bieneman | 2724f14 | 2016-06-08 21:19:26 +0000 | [diff] [blame] | 1295 | CODE "install_symlink(${full_name} ${full_dest} ${LLVM_TOOLS_INSTALL_DIR})" |
Chris Bieneman | 895d96a | 2015-09-18 21:08:32 +0000 | [diff] [blame] | 1296 | COMPONENT ${component}) |
Chris Bieneman | bff03b0 | 2015-09-16 20:49:59 +0000 | [diff] [blame] | 1297 | |
Chris Bieneman | 895d96a | 2015-09-18 21:08:32 +0000 | [diff] [blame] | 1298 | if (NOT CMAKE_CONFIGURATION_TYPES AND NOT ARG_ALWAYS_GENERATE) |
Chris Bieneman | bff03b0 | 2015-09-16 20:49:59 +0000 | [diff] [blame] | 1299 | add_custom_target(install-${name} |
| 1300 | DEPENDS ${name} ${dest} install-${dest} |
| 1301 | COMMAND "${CMAKE_COMMAND}" |
| 1302 | -DCMAKE_INSTALL_COMPONENT=${name} |
| 1303 | -P "${CMAKE_BINARY_DIR}/cmake_install.cmake") |
| 1304 | endif() |
| 1305 | endfunction() |
| 1306 | |
Chris Bieneman | 89e08ed | 2016-12-05 03:28:03 +0000 | [diff] [blame] | 1307 | function(add_llvm_tool_symlink link_name target) |
| 1308 | cmake_parse_arguments(ARG "ALWAYS_GENERATE" "OUTPUT_DIR" "" ${ARGN}) |
Chris Bieneman | dc9b0db | 2016-12-15 18:17:07 +0000 | [diff] [blame] | 1309 | set(dest_binary "$<TARGET_FILE:${target}>") |
| 1310 | |
Chris Bieneman | 28f05ac | 2016-12-05 17:02:11 +0000 | [diff] [blame] | 1311 | # This got a bit gross... For multi-configuration generators the target |
| 1312 | # properties return the resolved value of the string, not the build system |
| 1313 | # expression. To reconstruct the platform-agnostic path we have to do some |
| 1314 | # magic. First we grab one of the types, and a type-specific path. Then from |
| 1315 | # the type-specific path we find the last occurrence of the type in the path, |
| 1316 | # and replace it with CMAKE_CFG_INTDIR. This allows the build step to be type |
| 1317 | # agnostic again. |
Chris Bieneman | 89e08ed | 2016-12-05 03:28:03 +0000 | [diff] [blame] | 1318 | if(NOT ARG_OUTPUT_DIR) |
Chris Bieneman | dc9b0db | 2016-12-15 18:17:07 +0000 | [diff] [blame] | 1319 | # If you're not overriding the OUTPUT_DIR, we can make the link relative in |
| 1320 | # the same directory. |
| 1321 | if(UNIX) |
| 1322 | set(dest_binary "$<TARGET_FILE_NAME:${target}>") |
| 1323 | endif() |
Chris Bieneman | 28f05ac | 2016-12-05 17:02:11 +0000 | [diff] [blame] | 1324 | if(CMAKE_CONFIGURATION_TYPES) |
| 1325 | list(GET CMAKE_CONFIGURATION_TYPES 0 first_type) |
| 1326 | string(TOUPPER ${first_type} first_type_upper) |
| 1327 | set(first_type_suffix _${first_type_upper}) |
| 1328 | endif() |
Chris Bieneman | 89e08ed | 2016-12-05 03:28:03 +0000 | [diff] [blame] | 1329 | get_target_property(target_type ${target} TYPE) |
| 1330 | if(${target_type} STREQUAL "STATIC_LIBRARY") |
Chris Bieneman | 28f05ac | 2016-12-05 17:02:11 +0000 | [diff] [blame] | 1331 | get_target_property(ARG_OUTPUT_DIR ${target} ARCHIVE_OUTPUT_DIRECTORY${first_type_suffix}) |
Chris Bieneman | 89e08ed | 2016-12-05 03:28:03 +0000 | [diff] [blame] | 1332 | elseif(UNIX AND ${target_type} STREQUAL "SHARED_LIBRARY") |
Chris Bieneman | 28f05ac | 2016-12-05 17:02:11 +0000 | [diff] [blame] | 1333 | get_target_property(ARG_OUTPUT_DIR ${target} LIBRARY_OUTPUT_DIRECTORY${first_type_suffix}) |
Chris Bieneman | 89e08ed | 2016-12-05 03:28:03 +0000 | [diff] [blame] | 1334 | else() |
Chris Bieneman | 28f05ac | 2016-12-05 17:02:11 +0000 | [diff] [blame] | 1335 | get_target_property(ARG_OUTPUT_DIR ${target} RUNTIME_OUTPUT_DIRECTORY${first_type_suffix}) |
| 1336 | endif() |
| 1337 | if(CMAKE_CONFIGURATION_TYPES) |
| 1338 | string(FIND "${ARG_OUTPUT_DIR}" "/${first_type}/" type_start REVERSE) |
| 1339 | string(SUBSTRING "${ARG_OUTPUT_DIR}" 0 ${type_start} path_prefix) |
| 1340 | string(SUBSTRING "${ARG_OUTPUT_DIR}" ${type_start} -1 path_suffix) |
| 1341 | string(REPLACE "/${first_type}/" "/${CMAKE_CFG_INTDIR}/" |
| 1342 | path_suffix ${path_suffix}) |
| 1343 | set(ARG_OUTPUT_DIR ${path_prefix}${path_suffix}) |
Chris Bieneman | 89e08ed | 2016-12-05 03:28:03 +0000 | [diff] [blame] | 1344 | endif() |
Chris Bieneman | 6d43afc | 2015-09-14 23:09:06 +0000 | [diff] [blame] | 1345 | endif() |
| 1346 | |
Chris Bieneman | 89e08ed | 2016-12-05 03:28:03 +0000 | [diff] [blame] | 1347 | if(UNIX) |
| 1348 | set(LLVM_LINK_OR_COPY create_symlink) |
Chris Bieneman | 89e08ed | 2016-12-05 03:28:03 +0000 | [diff] [blame] | 1349 | else() |
| 1350 | set(LLVM_LINK_OR_COPY copy) |
Chris Bieneman | 89e08ed | 2016-12-05 03:28:03 +0000 | [diff] [blame] | 1351 | endif() |
Chris Bieneman | 6d43afc | 2015-09-14 23:09:06 +0000 | [diff] [blame] | 1352 | |
Chris Bieneman | 89e08ed | 2016-12-05 03:28:03 +0000 | [diff] [blame] | 1353 | set(output_path "${ARG_OUTPUT_DIR}/${link_name}${CMAKE_EXECUTABLE_SUFFIX}") |
| 1354 | |
| 1355 | set(target_name ${link_name}) |
| 1356 | if(TARGET ${link_name}) |
| 1357 | set(target_name ${link_name}-link) |
Chris Bieneman | 6ee60bc | 2016-09-16 22:19:19 +0000 | [diff] [blame] | 1358 | endif() |
| 1359 | |
| 1360 | |
Chris Bieneman | 895d96a | 2015-09-18 21:08:32 +0000 | [diff] [blame] | 1361 | if(ARG_ALWAYS_GENERATE) |
| 1362 | set_property(DIRECTORY APPEND PROPERTY |
| 1363 | ADDITIONAL_MAKE_CLEAN_FILES ${dest_binary}) |
Chris Bieneman | 89e08ed | 2016-12-05 03:28:03 +0000 | [diff] [blame] | 1364 | add_custom_command(TARGET ${target} POST_BUILD |
Chris Bieneman | 895d96a | 2015-09-18 21:08:32 +0000 | [diff] [blame] | 1365 | COMMAND ${CMAKE_COMMAND} -E ${LLVM_LINK_OR_COPY} "${dest_binary}" "${output_path}") |
| 1366 | else() |
| 1367 | add_custom_command(OUTPUT ${output_path} |
Chris Bieneman | bde7e45 | 2015-09-15 02:15:53 +0000 | [diff] [blame] | 1368 | COMMAND ${CMAKE_COMMAND} -E ${LLVM_LINK_OR_COPY} "${dest_binary}" "${output_path}" |
Chris Bieneman | 89e08ed | 2016-12-05 03:28:03 +0000 | [diff] [blame] | 1369 | DEPENDS ${target}) |
| 1370 | add_custom_target(${target_name} ALL DEPENDS ${target} ${output_path}) |
Chris Bieneman | 6ee60bc | 2016-09-16 22:19:19 +0000 | [diff] [blame] | 1371 | set_target_properties(${target_name} PROPERTIES FOLDER Tools) |
Chris Bieneman | 6d43afc | 2015-09-14 23:09:06 +0000 | [diff] [blame] | 1372 | |
Chris Bieneman | 44d2990 | 2016-09-27 17:47:24 +0000 | [diff] [blame] | 1373 | # Make sure both the link and target are toolchain tools |
Chris Bieneman | 89e08ed | 2016-12-05 03:28:03 +0000 | [diff] [blame] | 1374 | if (${link_name} IN_LIST LLVM_TOOLCHAIN_TOOLS AND ${target} IN_LIST LLVM_TOOLCHAIN_TOOLS) |
Petr Hosek | acac3ab | 2016-09-30 06:29:28 +0000 | [diff] [blame] | 1375 | set(TOOL_IS_TOOLCHAIN ON) |
Chris Bieneman | 895d96a | 2015-09-18 21:08:32 +0000 | [diff] [blame] | 1376 | endif() |
Chris Bieneman | 6d43afc | 2015-09-14 23:09:06 +0000 | [diff] [blame] | 1377 | |
Petr Hosek | acac3ab | 2016-09-30 06:29:28 +0000 | [diff] [blame] | 1378 | if ((TOOL_IS_TOOLCHAIN OR NOT LLVM_INSTALL_TOOLCHAIN_ONLY) AND LLVM_BUILD_TOOLS) |
Chris Bieneman | 89e08ed | 2016-12-05 03:28:03 +0000 | [diff] [blame] | 1379 | llvm_install_symlink(${link_name} ${target}) |
Chris Bieneman | 6d43afc | 2015-09-14 23:09:06 +0000 | [diff] [blame] | 1380 | endif() |
| 1381 | endif() |
| 1382 | endfunction() |
Chris Bieneman | bf2c412 | 2015-12-03 18:45:39 +0000 | [diff] [blame] | 1383 | |
| 1384 | function(llvm_externalize_debuginfo name) |
| 1385 | if(NOT LLVM_EXTERNALIZE_DEBUGINFO) |
| 1386 | return() |
| 1387 | endif() |
| 1388 | |
Chris Bieneman | 6099a4e | 2016-03-31 20:03:19 +0000 | [diff] [blame] | 1389 | if(NOT LLVM_EXTERNALIZE_DEBUGINFO_SKIP_STRIP) |
Petr Hosek | 7acbeaf | 2017-02-17 19:29:12 +0000 | [diff] [blame] | 1390 | if(APPLE) |
| 1391 | set(strip_command COMMAND xcrun strip -Sxl $<TARGET_FILE:${name}>) |
| 1392 | else() |
| 1393 | set(strip_command COMMAND strip -gx $<TARGET_FILE:${name}>) |
| 1394 | endif() |
Chris Bieneman | 6099a4e | 2016-03-31 20:03:19 +0000 | [diff] [blame] | 1395 | endif() |
| 1396 | |
Chris Bieneman | bf2c412 | 2015-12-03 18:45:39 +0000 | [diff] [blame] | 1397 | if(APPLE) |
| 1398 | if(CMAKE_CXX_FLAGS MATCHES "-flto" |
| 1399 | OR CMAKE_CXX_FLAGS_${uppercase_CMAKE_BUILD_TYPE} MATCHES "-flto") |
| 1400 | |
| 1401 | set(lto_object ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${name}-lto.o) |
Chris Bieneman | ccabd0e | 2015-12-03 22:51:08 +0000 | [diff] [blame] | 1402 | set_property(TARGET ${name} APPEND_STRING PROPERTY |
| 1403 | LINK_FLAGS " -Wl,-object_path_lto,${lto_object}") |
Chris Bieneman | bf2c412 | 2015-12-03 18:45:39 +0000 | [diff] [blame] | 1404 | endif() |
| 1405 | add_custom_command(TARGET ${name} POST_BUILD |
| 1406 | COMMAND xcrun dsymutil $<TARGET_FILE:${name}> |
Chris Bieneman | 6099a4e | 2016-03-31 20:03:19 +0000 | [diff] [blame] | 1407 | ${strip_command} |
| 1408 | ) |
Chris Bieneman | bf2c412 | 2015-12-03 18:45:39 +0000 | [diff] [blame] | 1409 | else() |
Petr Hosek | 7acbeaf | 2017-02-17 19:29:12 +0000 | [diff] [blame] | 1410 | add_custom_command(TARGET ${name} POST_BUILD |
| 1411 | COMMAND objcopy --only-keep-debug $<TARGET_FILE:${name}> $<TARGET_FILE:${name}>.debug |
| 1412 | ${strip_command} -R .gnu_debuglink |
| 1413 | COMMAND objcopy --add-gnu-debuglink=$<TARGET_FILE:${name}>.debug $<TARGET_FILE:${name}> |
| 1414 | ) |
Chris Bieneman | bf2c412 | 2015-12-03 18:45:39 +0000 | [diff] [blame] | 1415 | endif() |
| 1416 | endfunction() |
Chris Bieneman | 61e900b | 2016-11-01 17:44:58 +0000 | [diff] [blame] | 1417 | |
| 1418 | function(llvm_setup_rpath name) |
Mandeep Singh Grang | 96999de | 2016-11-08 00:45:05 +0000 | [diff] [blame] | 1419 | if(CMAKE_INSTALL_RPATH) |
| 1420 | return() |
| 1421 | endif() |
| 1422 | |
Chris Bieneman | 61e900b | 2016-11-01 17:44:58 +0000 | [diff] [blame] | 1423 | if(LLVM_INSTALL_PREFIX AND NOT (LLVM_INSTALL_PREFIX STREQUAL CMAKE_INSTALL_PREFIX)) |
| 1424 | set(extra_libdir ${LLVM_LIBRARY_DIR}) |
| 1425 | elseif(LLVM_BUILD_LIBRARY_DIR) |
| 1426 | set(extra_libdir ${LLVM_LIBRARY_DIR}) |
| 1427 | endif() |
| 1428 | |
| 1429 | if (APPLE) |
| 1430 | set(_install_name_dir INSTALL_NAME_DIR "@rpath") |
| 1431 | set(_install_rpath "@loader_path/../lib" ${extra_libdir}) |
| 1432 | elseif(UNIX) |
Mandeep Singh Grang | 96999de | 2016-11-08 00:45:05 +0000 | [diff] [blame] | 1433 | set(_install_rpath "\$ORIGIN/../lib${LLVM_LIBDIR_SUFFIX}" ${extra_libdir}) |
| 1434 | if(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|DragonFly)") |
| 1435 | set_property(TARGET ${name} APPEND_STRING PROPERTY |
| 1436 | LINK_FLAGS " -Wl,-z,origin ") |
| 1437 | elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Linux" AND NOT LLVM_LINKER_IS_GOLD) |
| 1438 | # $ORIGIN is not interpreted at link time by ld.bfd |
| 1439 | set_property(TARGET ${name} APPEND_STRING PROPERTY |
| 1440 | LINK_FLAGS " -Wl,-rpath-link,${LLVM_LIBRARY_OUTPUT_INTDIR} ") |
Chris Bieneman | 61e900b | 2016-11-01 17:44:58 +0000 | [diff] [blame] | 1441 | endif() |
| 1442 | else() |
| 1443 | return() |
| 1444 | endif() |
| 1445 | |
Mandeep Singh Grang | 96999de | 2016-11-08 00:45:05 +0000 | [diff] [blame] | 1446 | set_target_properties(${name} PROPERTIES |
| 1447 | BUILD_WITH_INSTALL_RPATH On |
| 1448 | INSTALL_RPATH "${_install_rpath}" |
| 1449 | ${_install_name_dir}) |
Chris Bieneman | 61e900b | 2016-11-01 17:44:58 +0000 | [diff] [blame] | 1450 | endfunction() |
Chris Bieneman | 8036e0b | 2016-11-17 04:36:59 +0000 | [diff] [blame] | 1451 | |
| 1452 | function(setup_dependency_debugging name) |
| 1453 | if(NOT LLVM_DEPENDENCY_DEBUGGING) |
| 1454 | return() |
| 1455 | endif() |
| 1456 | |
| 1457 | if("intrinsics_gen" IN_LIST ARGN) |
| 1458 | return() |
| 1459 | endif() |
| 1460 | |
| 1461 | set(deny_attributes_gen "(deny file* (literal \"${LLVM_BINARY_DIR}/include/llvm/IR/Attributes.gen\"))") |
| 1462 | set(deny_intrinsics_gen "(deny file* (literal \"${LLVM_BINARY_DIR}/include/llvm/IR/Intrinsics.gen\"))") |
| 1463 | |
| 1464 | set(sandbox_command "sandbox-exec -p '(version 1) (allow default) ${deny_attributes_gen} ${deny_intrinsics_gen}'") |
Chris Bieneman | 958edcb | 2016-11-19 01:32:09 +0000 | [diff] [blame] | 1465 | set_target_properties(${name} PROPERTIES RULE_LAUNCH_COMPILE ${sandbox_command}) |
Chris Bieneman | 8036e0b | 2016-11-17 04:36:59 +0000 | [diff] [blame] | 1466 | endfunction() |