blob: f35fcf444d2009d0d6c6107d6d8d77d2cd490bdf [file] [log] [blame]
Oscar Fuentes751ea9d2008-11-14 22:06:14 +00001include(LLVMProcessSources)
Oscar Fuentesd8a6dd62011-04-05 17:02:48 +00002include(LLVM-Config)
John Brawnc23801d2015-09-29 14:33:58 +00003include(DetermineGCCCompatible)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +00004
NAKAMURA Takumie42fd0d2014-01-07 10:24:14 +00005function(llvm_update_compile_flags name)
NAKAMURA Takumib524c222014-01-28 11:40:04 +00006 get_property(sources TARGET ${name} PROPERTY SOURCES)
7 if("${sources}" MATCHES "\\.c(;|$)")
NAKAMURA Takumia679f432014-01-28 09:44:06 +00008 set(update_src_props ON)
NAKAMURA Takumie42fd0d2014-01-07 10:24:14 +00009 endif()
NAKAMURA Takumia679f432014-01-28 09:44:06 +000010
Reid Kleckner8c180192016-03-30 17:28:21 +000011 # 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 Liewa5bdc842014-07-22 15:41:18 +000014 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 Bokhankob7201cc2016-09-01 14:39:54 +000018 if(MSVC)
19 list(APPEND LLVM_COMPILE_FLAGS "/EHsc")
20 endif()
NAKAMURA Takumia679f432014-01-28 09:44:06 +000021 else()
22 if(LLVM_COMPILER_IS_GCC_COMPATIBLE)
NAKAMURA Takumi13961cb2014-01-30 22:55:25 +000023 list(APPEND LLVM_COMPILE_FLAGS "-fno-exceptions")
NAKAMURA Takumia679f432014-01-28 09:44:06 +000024 elseif(MSVC)
25 list(APPEND LLVM_COMPILE_DEFINITIONS _HAS_EXCEPTIONS=0)
NAKAMURA Takumi13961cb2014-01-30 22:55:25 +000026 list(APPEND LLVM_COMPILE_FLAGS "/EHs-c-")
NAKAMURA Takumia679f432014-01-28 09:44:06 +000027 endif()
28 endif()
29
Dan Liewa5bdc842014-07-22 15:41:18 +000030 # LLVM_REQUIRES_RTTI is an internal flag that individual
31 # targets can use to force RTTI
Tom Stellard18bf6262015-11-04 20:57:43 +000032 set(LLVM_CONFIG_HAS_RTTI YES CACHE INTERNAL "")
Dan Liewa5bdc842014-07-22 15:41:18 +000033 if(NOT (LLVM_REQUIRES_RTTI OR LLVM_ENABLE_RTTI))
Tom Stellard18bf6262015-11-04 20:57:43 +000034 set(LLVM_CONFIG_HAS_RTTI NO CACHE INTERNAL "")
NAKAMURA Takumie42fd0d2014-01-07 10:24:14 +000035 list(APPEND LLVM_COMPILE_DEFINITIONS GTEST_HAS_RTTI=0)
36 if (LLVM_COMPILER_IS_GCC_COMPATIBLE)
NAKAMURA Takumi13961cb2014-01-30 22:55:25 +000037 list(APPEND LLVM_COMPILE_FLAGS "-fno-rtti")
NAKAMURA Takumie42fd0d2014-01-07 10:24:14 +000038 elseif (MSVC)
NAKAMURA Takumi13961cb2014-01-30 22:55:25 +000039 list(APPEND LLVM_COMPILE_FLAGS "/GR-")
NAKAMURA Takumie42fd0d2014-01-07 10:24:14 +000040 endif ()
Andrey Bokhankob7201cc2016-09-01 14:39:54 +000041 elseif(MSVC)
42 list(APPEND LLVM_COMPILE_FLAGS "/GR")
NAKAMURA Takumie42fd0d2014-01-07 10:24:14 +000043 endif()
44
NAKAMURA Takumi13961cb2014-01-30 22:55:25 +000045 # Assume that;
46 # - LLVM_COMPILE_FLAGS is list.
47 # - PROPERTY COMPILE_FLAGS is string.
Andrew Wilkins92113962015-09-01 03:14:31 +000048 string(REPLACE ";" " " target_compile_flags " ${LLVM_COMPILE_FLAGS}")
NAKAMURA Takumi13961cb2014-01-30 22:55:25 +000049
NAKAMURA Takumia679f432014-01-28 09:44:06 +000050 if(update_src_props)
NAKAMURA Takumib524c222014-01-28 11:40:04 +000051 foreach(fn ${sources})
NAKAMURA Takumia679f432014-01-28 09:44:06 +000052 get_filename_component(suf ${fn} EXT)
53 if("${suf}" STREQUAL ".cpp")
NAKAMURA Takumid40cdc92014-01-31 17:32:42 +000054 set_property(SOURCE ${fn} APPEND_STRING PROPERTY
55 COMPILE_FLAGS "${target_compile_flags}")
NAKAMURA Takumia679f432014-01-28 09:44:06 +000056 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 Takumie42fd0d2014-01-07 10:24:14 +000064 set_property(TARGET ${name} APPEND PROPERTY COMPILE_DEFINITIONS ${LLVM_COMPILE_DEFINITIONS})
65endfunction()
66
Nico Weberc27118d2013-12-28 23:31:44 +000067function(add_llvm_symbol_exports target_name export_file)
68 if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
NAKAMURA Takumibbd2aaa2013-12-29 16:15:26 +000069 set(native_export_file "${target_name}.exports")
NAKAMURA Takumi81210752013-12-29 16:15:18 +000070 add_custom_command(OUTPUT ${native_export_file}
71 COMMAND sed -e "s/^/_/" < ${export_file} > ${native_export_file}
Nico Weberc27118d2013-12-28 23:31:44 +000072 DEPENDS ${export_file}
73 VERBATIM
74 COMMENT "Creating export file for ${target_name}")
75 set_property(TARGET ${target_name} APPEND_STRING PROPERTY
NAKAMURA Takumi81210752013-12-29 16:15:18 +000076 LINK_FLAGS " -Wl,-exported_symbols_list,${CMAKE_CURRENT_BINARY_DIR}/${native_export_file}")
Chandler Carruth2aff7502016-07-19 22:46:39 +000077 elseif(${CMAKE_SYSTEM_NAME} MATCHES "AIX")
78 set_property(TARGET ${target_name} APPEND_STRING PROPERTY
79 LINK_FLAGS " -Wl,-bE:${export_file}")
Nico Weberc27118d2013-12-28 23:31:44 +000080 elseif(LLVM_HAVE_LINK_VERSION_SCRIPT)
81 # Gold and BFD ld require a version script rather than a plain list.
NAKAMURA Takumibbd2aaa2013-12-29 16:15:26 +000082 set(native_export_file "${target_name}.exports")
Nico Weberc27118d2013-12-28 23:31:44 +000083 # FIXME: Don't write the "local:" line on OpenBSD.
NAKAMURA Takumi81210752013-12-29 16:15:18 +000084 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 Weberc27118d2013-12-28 23:31:44 +000090 DEPENDS ${export_file}
91 VERBATIM
92 COMMENT "Creating export file for ${target_name}")
Rafael Espindolaec1d0692015-06-22 12:34:54 +000093 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 Weberc27118d2013-12-28 23:31:44 +0000100 else()
NAKAMURA Takumibbd2aaa2013-12-29 16:15:26 +0000101 set(native_export_file "${target_name}.def")
Nico Weberc27118d2013-12-28 23:31:44 +0000102
NAKAMURA Takumi81210752013-12-29 16:15:18 +0000103 add_custom_command(OUTPUT ${native_export_file}
NAKAMURA Takumi3eb06662015-07-05 08:56:38 +0000104 COMMAND ${PYTHON_EXECUTABLE} -c "import sys;print(''.join(['EXPORTS\\n']+sys.stdin.readlines(),))"
105 < ${export_file} > ${native_export_file}
Nico Weberc27118d2013-12-28 23:31:44 +0000106 DEPENDS ${export_file}
107 VERBATIM
108 COMMENT "Creating export file for ${target_name}")
Chris Bieneman970555b2014-10-30 22:37:58 +0000109 set(export_file_linker_flag "${CMAKE_CURRENT_BINARY_DIR}/${native_export_file}")
110 if(MSVC)
Reid Klecknerec6789b2015-04-22 16:23:00 +0000111 set(export_file_linker_flag "/DEF:\"${export_file_linker_flag}\"")
NAKAMURA Takumi0a062bd2013-12-29 16:19:13 +0000112 endif()
Chris Bieneman970555b2014-10-30 22:37:58 +0000113 set_property(TARGET ${target_name} APPEND_STRING PROPERTY
114 LINK_FLAGS " ${export_file_linker_flag}")
Nico Weberc27118d2013-12-28 23:31:44 +0000115 endif()
116
117 add_custom_target(${target_name}_exports DEPENDS ${native_export_file})
NAKAMURA Takumi14f1f442014-01-27 17:39:38 +0000118 set_target_properties(${target_name}_exports PROPERTIES FOLDER "Misc")
Nico Weberc27118d2013-12-28 23:31:44 +0000119
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 Colombetcb2ae8d2014-01-16 06:43:55 +0000132 # 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 Weberc27118d2013-12-28 23:31:44 +0000138
139 set_property(DIRECTORY APPEND
140 PROPERTY ADDITIONAL_MAKE_CLEAN_FILES ${native_export_file})
141
142 add_dependencies(${target_name} ${target_name}_exports)
NAKAMURA Takumi679e7722014-02-21 14:17:29 +0000143
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 Weberc27118d2013-12-28 23:31:44 +0000147endfunction(add_llvm_symbol_exports)
148
Rafael Espindola19c39ee2014-12-04 17:54:35 +0000149if(NOT WIN32 AND NOT APPLE)
NAKAMURA Takumi8b1578f2015-01-06 09:44:29 +0000150 execute_process(
151 COMMAND ${CMAKE_C_COMPILER} -Wl,--version
152 OUTPUT_VARIABLE stdout
NAKAMURA Takumi2f3e3dd2015-01-06 09:44:44 +0000153 ERROR_QUIET
NAKAMURA Takumi8b1578f2015-01-06 09:44:29 +0000154 )
Rafael Espindola19c39ee2014-12-04 17:54:35 +0000155 if("${stdout}" MATCHES "GNU gold")
156 set(LLVM_LINKER_IS_GOLD ON)
157 endif()
158endif()
159
Rafael Espindola8cb78762014-11-02 12:14:22 +0000160function(add_link_opts target_name)
Rafael Espindola24766f92015-04-06 15:04:31 +0000161 # 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 Espindola8cb78762014-11-02 12:14:22 +0000164
Rafael Espindola24766f92015-04-06 15:04:31 +0000165 # Pass -O3 to the linker. This enabled different optimizations on different
166 # linkers.
Chandler Carruth2aff7502016-07-19 22:46:39 +0000167 if(NOT (${CMAKE_SYSTEM_NAME} MATCHES "Darwin|SunOS|AIX" OR WIN32))
Nico Weber62588e12013-12-30 03:36:05 +0000168 set_property(TARGET ${target_name} APPEND_STRING PROPERTY
Rafael Espindola24766f92015-04-06 15:04:31 +0000169 LINK_FLAGS " -Wl,-O3")
170 endif()
171
172 if(LLVM_LINKER_IS_GOLD)
173 # With gold gc-sections is always safe.
NAKAMURA Takumi748627c2014-10-20 12:12:21 +0000174 set_property(TARGET ${target_name} APPEND_STRING PROPERTY
175 LINK_FLAGS " -Wl,--gc-sections")
Rafael Espindola24766f92015-04-06 15:04:31 +0000176 # 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 Espindolac32ed572015-06-22 15:06:17 +0000185 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 Espindola24766f92015-04-06 15:04:31 +0000188 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 Weber62588e12013-12-30 03:36:05 +0000196 endif()
197 endif()
Rafael Espindola8cb78762014-11-02 12:14:22 +0000198endfunction(add_link_opts)
Nico Weber62588e12013-12-30 03:36:05 +0000199
NAKAMURA Takumibaa9f532013-12-30 06:48:30 +0000200# 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 Brawnc11ef2a2015-09-30 15:20:51 +0000203function(set_output_directory target)
Ramkumar Ramachandracad135a2015-11-10 18:26:34 +0000204 cmake_parse_arguments(ARG "" "BINARY_DIR;LIBRARY_DIR" "" ${ARGN})
NAKAMURA Takumi38d45a22014-07-04 04:23:15 +0000205
John Brawnc11ef2a2015-09-30 15:20:51 +0000206 # module_dir -- corresponding to LIBRARY_OUTPUT_DIRECTORY.
NAKAMURA Takumi44f64ea2014-07-13 13:33:26 +0000207 # It affects output of add_library(MODULE).
208 if(WIN32 OR CYGWIN)
209 # DLL platform
John Brawnc11ef2a2015-09-30 15:20:51 +0000210 set(module_dir ${ARG_BINARY_DIR})
NAKAMURA Takumi44f64ea2014-07-13 13:33:26 +0000211 else()
John Brawnc11ef2a2015-09-30 15:20:51 +0000212 set(module_dir ${ARG_LIBRARY_DIR})
NAKAMURA Takumi44f64ea2014-07-13 13:33:26 +0000213 endif()
NAKAMURA Takumibaa9f532013-12-30 06:48:30 +0000214 if(NOT "${CMAKE_CFG_INTDIR}" STREQUAL ".")
215 foreach(build_mode ${CMAKE_CONFIGURATION_TYPES})
216 string(TOUPPER "${build_mode}" CONFIG_SUFFIX)
John Brawnc11ef2a2015-09-30 15:20:51 +0000217 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 Takumibaa9f532013-12-30 06:48:30 +0000229 endforeach()
230 else()
John Brawnc11ef2a2015-09-30 15:20:51 +0000231 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 Takumibaa9f532013-12-30 06:48:30 +0000240 endif()
241endfunction()
242
Greg Bedwell95213c32015-06-12 15:58:29 +0000243# 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#
248function(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 Takumiec782b42015-06-14 21:47:29 +0000252 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 Bedwell95213c32015-06-12 15:58:29 +0000257 endif(MSVC)
258
259 set(${OUT_VAR} ${sources} PARENT_SCOPE)
260endfunction(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# )
274function(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 Collingbournea89468b2015-06-18 01:15:18 +0000302 PROPERTY COMPILE_FLAGS /nologo)
303 set_property(SOURCE ${resource_file}
Greg Bedwell95213c32015-06-12 15:58:29 +0000304 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}\"")
313endfunction(set_windows_version_resource_properties)
314
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000315# llvm_add_library(name sources...
NAKAMURA Takumi487f3872014-02-13 11:25:17 +0000316# SHARED;STATIC
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000317# STATIC by default w/o BUILD_SHARED_LIBS.
318# SHARED by default w/ BUILD_SHARED_LIBS.
Axel Naumannb457beb2016-01-12 07:44:58 +0000319# OBJECT
320# Also create an OBJECT library target. Default if STATIC && SHARED.
NAKAMURA Takumi487f3872014-02-13 11:25:17 +0000321# MODULE
322# Target ${name} might not be created on unsupported platforms.
323# Check with "if(TARGET ${name})".
Andrew Wilkins92113962015-09-01 03:14:31 +0000324# DISABLE_LLVM_LINK_LLVM_DYLIB
325# Do not link this library to libLLVM, even if
326# LLVM_LINK_LLVM_DYLIB is enabled.
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000327# 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 Takumidea00df2014-02-13 01:00:52 +0000335# ADDITIONAL_HEADERS
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000336# May specify header files for IDE generators.
Chris Bieneman5e96fe92015-11-04 23:11:12 +0000337# SONAME
338# Should set SONAME link flags and create symlinks
John Brawn3546c2f2016-05-26 11:16:43 +0000339# PLUGIN_TOOL
340# The tool (i.e. cmake target) that this plugin will link against
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000341# )
342function(llvm_add_library name)
343 cmake_parse_arguments(ARG
Axel Naumannb457beb2016-01-12 07:44:58 +0000344 "MODULE;SHARED;STATIC;OBJECT;DISABLE_LLVM_LINK_LLVM_DYLIB;SONAME"
John Brawn3546c2f2016-05-26 11:16:43 +0000345 "OUTPUT_NAME;PLUGIN_TOOL"
NAKAMURA Takumie3408ab2014-02-21 14:17:17 +0000346 "ADDITIONAL_HEADERS;DEPENDS;LINK_COMPONENTS;LINK_LIBS;OBJLIBS"
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000347 ${ARGN})
348 list(APPEND LLVM_COMMON_DEPENDS ${ARG_DEPENDS})
NAKAMURA Takumidea00df2014-02-13 01:00:52 +0000349 if(ARG_ADDITIONAL_HEADERS)
350 # Pass through ADDITIONAL_HEADERS.
351 set(ARG_ADDITIONAL_HEADERS ADDITIONAL_HEADERS ${ARG_ADDITIONAL_HEADERS})
352 endif()
NAKAMURA Takumie3408ab2014-02-21 14:17:17 +0000353 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 Takumie7038df2014-02-10 09:05:11 +0000358
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 Brawn3546c2f2016-05-26 11:16:43 +0000363 # 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 Takumi487f3872014-02-13 11:25:17 +0000365 message(STATUS "${name} ignored -- Loadable modules not supported on this platform.")
366 return()
367 endif()
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000368 else()
John Brawn3546c2f2016-05-26 11:16:43 +0000369 if(ARG_PLUGIN_TOOL)
370 message(WARNING "PLUGIN_TOOL without MODULE doesn't make sense.")
371 endif()
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000372 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 Takumie3408ab2014-02-21 14:17:17 +0000380 # Generate objlib
Axel Naumannb457beb2016-01-12 07:44:58 +0000381 if((ARG_SHARED AND ARG_STATIC) OR ARG_OBJECT)
NAKAMURA Takumie3408ab2014-02-21 14:17:17 +0000382 # 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 Takumi679e7722014-02-21 14:17:29 +0000390 # Do add_dependencies(obj) later due to CMake issue 14747.
391 list(APPEND objlibs ${obj_name})
392
NAKAMURA Takumie3408ab2014-02-21 14:17:17 +0000393 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 Takumib47a2c02014-02-28 00:28:13 +0000400 set(output_name OUTPUT_NAME "${ARG_OUTPUT_NAME}")
NAKAMURA Takumie3408ab2014-02-21 14:17:17 +0000401 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 Takumie7038df2014-02-10 09:05:11 +0000413 if(ARG_MODULE)
414 add_library(${name} MODULE ${ALL_FILES})
Peter Collingbourneb192a202016-11-28 21:59:14 +0000415 llvm_setup_rpath(${name})
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000416 elseif(ARG_SHARED)
Greg Bedwell95213c32015-06-12 15:58:29 +0000417 add_windows_version_resource_file(ALL_FILES ${ALL_FILES})
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000418 add_library(${name} SHARED ${ALL_FILES})
Chris Bieneman61e900b2016-11-01 17:44:58 +0000419
420 llvm_setup_rpath(${name})
421
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000422 else()
423 add_library(${name} STATIC ${ALL_FILES})
424 endif()
Greg Bedwell95213c32015-06-12 15:58:29 +0000425
Chris Bieneman958edcb2016-11-19 01:32:09 +0000426 setup_dependency_debugging(${name} ${LLVM_COMMON_DEPENDS})
427
Greg Bedwell95213c32015-06-12 15:58:29 +0000428 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 Brawnc11ef2a2015-09-30 15:20:51 +0000433 set_output_directory(${name} BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR} LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR})
NAKAMURA Takumibb7483d2015-09-08 07:42:06 +0000434 # $<TARGET_OBJECTS> doesn't require compile flags.
435 if(NOT obj_name)
436 llvm_update_compile_flags(${name})
437 endif()
Rafael Espindola8cb78762014-11-02 12:14:22 +0000438 add_link_opts( ${name} )
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000439 if(ARG_OUTPUT_NAME)
440 set_target_properties(${name}
441 PROPERTIES
442 OUTPUT_NAME ${ARG_OUTPUT_NAME}
443 )
444 endif()
Oscar Fuentesffe32e12010-10-14 15:54:41 +0000445
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000446 if(ARG_MODULE)
NAKAMURA Takumie72e2e92014-02-13 11:19:21 +0000447 set_target_properties(${name} PROPERTIES
448 PREFIX ""
449 SUFFIX ${LLVM_PLUGIN_EXT}
450 )
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000451 endif()
452
453 if(ARG_SHARED)
NAKAMURA Takumi543105f2014-04-10 15:47:04 +0000454 if(WIN32)
455 set_target_properties(${name} PROPERTIES
456 PREFIX ""
457 )
458 endif()
Michal Gorny6b929d52016-10-04 06:09:18 +0000459
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
465 # Concatenate the version numbers since ldconfig expects exactly
466 # one component indicating the ABI version, while LLVM uses
467 # major+minor for that.
468 SOVERSION ${LLVM_VERSION_MAJOR}${LLVM_VERSION_MINOR}
469 VERSION ${LLVM_VERSION_MAJOR}${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}${LLVM_VERSION_SUFFIX})
470 endif()
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000471 endif()
Oscar Fuentesffe32e12010-10-14 15:54:41 +0000472
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000473 if(ARG_MODULE OR ARG_SHARED)
Richard Smith2b91a7f2014-09-26 22:40:15 +0000474 # Do not add -Dname_EXPORTS to the command-line when building files in this
475 # target. Doing so is actively harmful for the modules build because it
476 # creates extra module variants, and not useful because we don't use these
477 # macros.
478 set_target_properties( ${name} PROPERTIES DEFINE_SYMBOL "" )
479
Nico Weber06473f82013-12-29 05:39:01 +0000480 if (LLVM_EXPORTED_SYMBOL_FILE)
481 add_llvm_symbol_exports( ${name} ${LLVM_EXPORTED_SYMBOL_FILE} )
482 endif()
Nico Weberc27118d2013-12-28 23:31:44 +0000483 endif()
484
Andrew Wilkinsa4f37052015-11-10 23:19:21 +0000485 if(ARG_SHARED AND UNIX)
486 if(NOT APPLE AND ARG_SONAME)
487 get_target_property(output_name ${name} OUTPUT_NAME)
488 if(${output_name} STREQUAL "output_name-NOTFOUND")
489 set(output_name ${name})
490 endif()
491 set(library_name ${output_name}-${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}${LLVM_VERSION_SUFFIX})
492 set(api_name ${output_name}-${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}${LLVM_VERSION_SUFFIX})
493 set_target_properties(${name} PROPERTIES OUTPUT_NAME ${library_name})
494 llvm_install_library_symlink(${api_name} ${library_name} SHARED
495 COMPONENT ${name}
496 ALWAYS_GENERATE)
497 llvm_install_library_symlink(${output_name} ${library_name} SHARED
498 COMPONENT ${name}
499 ALWAYS_GENERATE)
500 endif()
501 endif()
502
John Brawn3546c2f2016-05-26 11:16:43 +0000503 if(ARG_MODULE AND LLVM_EXPORT_SYMBOLS_FOR_PLUGINS AND ARG_PLUGIN_TOOL AND (WIN32 OR CYGWIN))
504 # On DLL platforms symbols are imported from the tool by linking against it.
505 set(llvm_libs ${ARG_PLUGIN_TOOL})
506 elseif (DEFINED LLVM_LINK_COMPONENTS OR DEFINED ARG_LINK_COMPONENTS)
Andrew Wilkins095e22d2016-02-12 01:42:43 +0000507 if (LLVM_LINK_LLVM_DYLIB AND NOT ARG_DISABLE_LLVM_LINK_LLVM_DYLIB)
508 set(llvm_libs LLVM)
509 else()
510 llvm_map_components_to_libnames(llvm_libs
511 ${ARG_LINK_COMPONENTS}
512 ${LLVM_LINK_COMPONENTS}
513 )
514 endif()
Andrew Wilkins92113962015-09-01 03:14:31 +0000515 else()
Andrew Wilkins095e22d2016-02-12 01:42:43 +0000516 # Components have not been defined explicitly in CMake, so add the
517 # dependency information for this library as defined by LLVMBuild.
518 #
519 # It would be nice to verify that we have the dependencies for this library
520 # name, but using get_property(... SET) doesn't suffice to determine if a
521 # property has been set to an empty value.
522 get_property(lib_deps GLOBAL PROPERTY LLVMBUILD_LIB_DEPS_${name})
Andrew Wilkins92113962015-09-01 03:14:31 +0000523 endif()
NAKAMURA Takumia39b6122014-02-26 11:58:01 +0000524
Chris Bieneman6650b022016-06-08 22:48:01 +0000525 if(ARG_STATIC)
526 set(libtype INTERFACE)
Steven Wuec6f56e2016-05-26 04:35:35 +0000527 else()
528 # We can use PRIVATE since SO knows its dependent libs.
Chris Bieneman6650b022016-06-08 22:48:01 +0000529 set(libtype PRIVATE)
530 endif()
531
532 target_link_libraries(${name} ${libtype}
Steven Wuec6f56e2016-05-26 04:35:35 +0000533 ${ARG_LINK_LIBS}
534 ${lib_deps}
535 ${llvm_libs}
536 )
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000537
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000538 if(LLVM_COMMON_DEPENDS)
539 add_dependencies(${name} ${LLVM_COMMON_DEPENDS})
NAKAMURA Takumi679e7722014-02-21 14:17:29 +0000540 # Add dependencies also to objlibs.
541 # CMake issue 14747 -- add_dependencies() might be ignored to objlib's user.
542 foreach(objlib ${objlibs})
NAKAMURA Takumi679e7722014-02-21 14:17:29 +0000543 add_dependencies(${objlib} ${LLVM_COMMON_DEPENDS})
544 endforeach()
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000545 endif()
Chris Bienemanbf2c4122015-12-03 18:45:39 +0000546
547 if(ARG_SHARED OR ARG_MODULE)
548 llvm_externalize_debuginfo(${name})
549 endif()
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000550endfunction()
551
552macro(add_llvm_library name)
Chris Bieneman84271692015-04-16 16:56:18 +0000553 cmake_parse_arguments(ARG
Michael Gottesman31e93632016-09-09 19:45:34 +0000554 "SHARED;BUILDTREE_ONLY"
Chris Bieneman84271692015-04-16 16:56:18 +0000555 ""
556 ""
557 ${ARGN})
Michael Gottesman31e93632016-09-09 19:45:34 +0000558 if( BUILD_SHARED_LIBS OR ARG_SHARED )
559 llvm_add_library(${name} SHARED ${ARG_UNPARSED_ARGUMENTS})
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000560 else()
Michael Gottesman31e93632016-09-09 19:45:34 +0000561 llvm_add_library(${name} ${ARG_UNPARSED_ARGUMENTS})
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000562 endif()
Michael Gottesman31e93632016-09-09 19:45:34 +0000563
564 # Libraries that are meant to only be exposed via the build tree only are
565 # never installed and are only exported as a target in the special build tree
566 # config file.
567 if (NOT ARG_BUILDTREE_ONLY)
Dan Liew80189d22015-06-29 18:45:56 +0000568 set_property( GLOBAL APPEND PROPERTY LLVM_LIBS ${name} )
569 endif()
NAKAMURA Takumie7038df2014-02-10 09:05:11 +0000570
Nick Lewycky61aed872011-04-29 02:12:06 +0000571 if( EXCLUDE_FROM_ALL )
572 set_target_properties( ${name} PROPERTIES EXCLUDE_FROM_ALL ON)
Michael Gottesman31e93632016-09-09 19:45:34 +0000573 elseif(ARG_BUILDTREE_ONLY)
574 set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS_BUILDTREE_ONLY ${name})
575 else()
Derek Schuffeb224632016-09-16 18:50:39 +0000576 if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY OR ${name} STREQUAL "LTO" OR
577 (LLVM_LINK_LLVM_DYLIB AND ${name} STREQUAL "LLVM"))
Sumanth Gundapaneni279c73f2015-12-16 17:07:15 +0000578 set(install_dir lib${LLVM_LIBDIR_SUFFIX})
Chris Bienemanc2368aa2015-04-16 17:40:51 +0000579 if(ARG_SHARED OR BUILD_SHARED_LIBS)
Sumanth Gundapaneni279c73f2015-12-16 17:07:15 +0000580 if(WIN32 OR CYGWIN OR MINGW)
Chris Bienemana985e6b2015-04-16 18:08:33 +0000581 set(install_type RUNTIME)
Sumanth Gundapaneni279c73f2015-12-16 17:07:15 +0000582 set(install_dir bin)
Chris Bienemanc2368aa2015-04-16 17:40:51 +0000583 else()
Chris Bienemana985e6b2015-04-16 18:08:33 +0000584 set(install_type LIBRARY)
Chris Bienemanc2368aa2015-04-16 17:40:51 +0000585 endif()
Chris Bieneman84271692015-04-16 16:56:18 +0000586 else()
Chris Bienemana985e6b2015-04-16 18:08:33 +0000587 set(install_type ARCHIVE)
Chris Bieneman84271692015-04-16 16:56:18 +0000588 endif()
Chris Bieneman0d9289d2015-02-18 19:25:47 +0000589
Justin Bogner4ce3e0c2016-11-04 21:55:23 +0000590 if(${name} IN_LIST LLVM_DISTRIBUTION_COMPONENTS OR
591 NOT LLVM_DISTRIBUTION_COMPONENTS)
592 set(export_to_llvmexports EXPORT LLVMExports)
Justin Bogner80bee972016-11-08 05:02:18 +0000593 set_property(GLOBAL PROPERTY LLVM_HAS_EXPORTS True)
Justin Bogner4ce3e0c2016-11-04 21:55:23 +0000594 endif()
595
Chris Bienemana985e6b2015-04-16 18:08:33 +0000596 install(TARGETS ${name}
Justin Bogner4ce3e0c2016-11-04 21:55:23 +0000597 ${export_to_llvmexports}
598 ${install_type} DESTINATION ${install_dir}
599 COMPONENT ${name})
Chris Bienemana985e6b2015-04-16 18:08:33 +0000600
Chris Bieneman0d9289d2015-02-18 19:25:47 +0000601 if (NOT CMAKE_CONFIGURATION_TYPES)
602 add_custom_target(install-${name}
603 DEPENDS ${name}
604 COMMAND "${CMAKE_COMMAND}"
605 -DCMAKE_INSTALL_COMPONENT=${name}
606 -P "${CMAKE_BINARY_DIR}/cmake_install.cmake")
607 endif()
Hans Wennborg16546272013-08-24 00:20:36 +0000608 endif()
NAKAMURA Takumi8faf6602014-02-09 16:36:16 +0000609 set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS ${name})
Nick Lewycky61aed872011-04-29 02:12:06 +0000610 endif()
Oscar Fuentes3145e922011-02-20 22:06:10 +0000611 set_target_properties(${name} PROPERTIES FOLDER "Libraries")
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000612endmacro(add_llvm_library name)
613
Oscar Fuentesbbc10672009-11-10 02:45:37 +0000614macro(add_llvm_loadable_module name)
NAKAMURA Takumi487f3872014-02-13 11:25:17 +0000615 llvm_add_library(${name} MODULE ${ARGN})
616 if(NOT TARGET ${name})
NAKAMURA Takumia8c1c3f2010-12-10 02:15:36 +0000617 # Add empty "phony" target
618 add_custom_target(${name})
Oscar Fuentesbbc10672009-11-10 02:45:37 +0000619 else()
Oscar Fuentes638aaec2011-04-26 14:55:27 +0000620 if( EXCLUDE_FROM_ALL )
Nick Lewycky61aed872011-04-29 02:12:06 +0000621 set_target_properties( ${name} PROPERTIES EXCLUDE_FROM_ALL ON)
Oscar Fuentes638aaec2011-04-26 14:55:27 +0000622 else()
Hans Wennborg16546272013-08-24 00:20:36 +0000623 if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
NAKAMURA Takumi44f64ea2014-07-13 13:33:26 +0000624 if(WIN32 OR CYGWIN)
625 # DLL platform
626 set(dlldir "bin")
627 else()
628 set(dlldir "lib${LLVM_LIBDIR_SUFFIX}")
629 endif()
Justin Bogner4ce3e0c2016-11-04 21:55:23 +0000630
631 if(${name} IN_LIST LLVM_DISTRIBUTION_COMPONENTS OR
632 NOT LLVM_DISTRIBUTION_COMPONENTS)
633 set(export_to_llvmexports EXPORT LLVMExports)
Justin Bogner80bee972016-11-08 05:02:18 +0000634 set_property(GLOBAL PROPERTY LLVM_HAS_EXPORTS True)
Justin Bogner4ce3e0c2016-11-04 21:55:23 +0000635 endif()
636
Hans Wennborg16546272013-08-24 00:20:36 +0000637 install(TARGETS ${name}
Justin Bogner4ce3e0c2016-11-04 21:55:23 +0000638 ${export_to_llvmexports}
639 LIBRARY DESTINATION ${dlldir}
640 ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX})
Hans Wennborg16546272013-08-24 00:20:36 +0000641 endif()
NAKAMURA Takumi8faf6602014-02-09 16:36:16 +0000642 set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS ${name})
Oscar Fuentes638aaec2011-04-26 14:55:27 +0000643 endif()
Oscar Fuentesbbc10672009-11-10 02:45:37 +0000644 endif()
Oscar Fuentes3145e922011-02-20 22:06:10 +0000645
646 set_target_properties(${name} PROPERTIES FOLDER "Loadable modules")
Oscar Fuentesbbc10672009-11-10 02:45:37 +0000647endmacro(add_llvm_loadable_module name)
648
649
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000650macro(add_llvm_executable name)
Chris Bieneman8036e0b2016-11-17 04:36:59 +0000651 cmake_parse_arguments(ARG "DISABLE_LLVM_LINK_LLVM_DYLIB;IGNORE_EXTERNALIZE_DEBUGINFO;NO_INSTALL_RPATH" "" "DEPENDS" ${ARGN})
Andrew Wilkins92113962015-09-01 03:14:31 +0000652 llvm_process_sources( ALL_FILES ${ARG_UNPARSED_ARGUMENTS} )
Greg Bedwell95213c32015-06-12 15:58:29 +0000653
Chris Bieneman8036e0b2016-11-17 04:36:59 +0000654 list(APPEND LLVM_COMMON_DEPENDS ${ARG_DEPENDS})
655
NAKAMURA Takumie6bc0932015-08-27 16:10:47 +0000656 # Generate objlib
657 if(LLVM_ENABLE_OBJLIB)
658 # Generate an obj library for both targets.
659 set(obj_name "obj.${name}")
660 add_library(${obj_name} OBJECT EXCLUDE_FROM_ALL
661 ${ALL_FILES}
662 )
663 llvm_update_compile_flags(${obj_name})
664 set(ALL_FILES "$<TARGET_OBJECTS:${obj_name}>")
665
666 set_target_properties(${obj_name} PROPERTIES FOLDER "Object Libraries")
667 endif()
668
NAKAMURA Takumib5288ba2015-08-28 00:36:58 +0000669 add_windows_version_resource_file(ALL_FILES ${ALL_FILES})
670
Jordan Rose3d752972015-09-10 17:18:51 +0000671 if(XCODE)
672 # Note: the dummy.cpp source file provides no definitions. However,
673 # it forces Xcode to properly link the static library.
Jordan Rose85a22f82015-09-10 17:55:02 +0000674 list(APPEND ALL_FILES "${LLVM_MAIN_SRC_DIR}/cmake/dummy.cpp")
Jordan Rose3d752972015-09-10 17:18:51 +0000675 endif()
Chris Bieneman8036e0b2016-11-17 04:36:59 +0000676
Oscar Fuentes0c2443a2009-11-23 00:21:43 +0000677 if( EXCLUDE_FROM_ALL )
678 add_executable(${name} EXCLUDE_FROM_ALL ${ALL_FILES})
679 else()
680 add_executable(${name} ${ALL_FILES})
681 endif()
Greg Bedwell95213c32015-06-12 15:58:29 +0000682
Chris Bieneman958edcb2016-11-19 01:32:09 +0000683 setup_dependency_debugging(${name} ${LLVM_COMMON_DEPENDS})
684
Jonas Hahnfeld277a09d2016-11-03 06:58:16 +0000685 if(NOT ARG_NO_INSTALL_RPATH)
686 llvm_setup_rpath(${name})
687 endif()
Chris Bieneman61e900b2016-11-01 17:44:58 +0000688
Greg Bedwell95213c32015-06-12 15:58:29 +0000689 if(DEFINED windows_resource_file)
690 set_windows_version_resource_properties(${name} ${windows_resource_file})
691 endif()
692
NAKAMURA Takumibb7483d2015-09-08 07:42:06 +0000693 # $<TARGET_OBJECTS> doesn't require compile flags.
694 if(NOT LLVM_ENABLE_OBJLIB)
695 llvm_update_compile_flags(${name})
696 endif()
Rafael Espindola8cb78762014-11-02 12:14:22 +0000697 add_link_opts( ${name} )
Nico Weberc27118d2013-12-28 23:31:44 +0000698
Richard Smith2b91a7f2014-09-26 22:40:15 +0000699 # Do not add -Dname_EXPORTS to the command-line when building files in this
700 # target. Doing so is actively harmful for the modules build because it
701 # creates extra module variants, and not useful because we don't use these
702 # macros.
703 set_target_properties( ${name} PROPERTIES DEFINE_SYMBOL "" )
704
Nico Weberc27118d2013-12-28 23:31:44 +0000705 if (LLVM_EXPORTED_SYMBOL_FILE)
706 add_llvm_symbol_exports( ${name} ${LLVM_EXPORTED_SYMBOL_FILE} )
707 endif(LLVM_EXPORTED_SYMBOL_FILE)
708
Andrew Wilkinsbb6d95f2015-09-05 08:27:33 +0000709 if (LLVM_LINK_LLVM_DYLIB AND NOT ARG_DISABLE_LLVM_LINK_LLVM_DYLIB)
710 set(USE_SHARED USE_SHARED)
711 endif()
712
Oscar Fuentes0c2443a2009-11-23 00:21:43 +0000713 set(EXCLUDE_FROM_ALL OFF)
John Brawnc11ef2a2015-09-30 15:20:51 +0000714 set_output_directory(${name} BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR} LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR})
Andrew Wilkinsbb6d95f2015-09-05 08:27:33 +0000715 llvm_config( ${name} ${USE_SHARED} ${LLVM_LINK_COMPONENTS} )
Oscar Fuentes3fca0e82009-08-14 04:38:57 +0000716 if( LLVM_COMMON_DEPENDS )
717 add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} )
718 endif( LLVM_COMMON_DEPENDS )
Chris Bienemanbf2c4122015-12-03 18:45:39 +0000719
Chris Bieneman48eaa542015-12-08 21:51:48 +0000720 if(NOT ARG_IGNORE_EXTERNALIZE_DEBUGINFO)
721 llvm_externalize_debuginfo(${name})
722 endif()
Artem Belevichdf7103d2016-06-21 19:34:40 +0000723 if (PTHREAD_LIB)
724 # libpthreads overrides some standard library symbols, so main
725 # executable must be linked with it in order to provide consistent
726 # API for all shared libaries loaded by this executable.
727 target_link_libraries(${name} ${PTHREAD_LIB})
728 endif()
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000729endmacro(add_llvm_executable name)
730
Reid Kleckner3e8c4452015-03-18 20:09:13 +0000731function(export_executable_symbols target)
John Brawn3546c2f2016-05-26 11:16:43 +0000732 if (LLVM_EXPORTED_SYMBOL_FILE)
733 # The symbol file should contain the symbols we want the executable to
734 # export
735 set_target_properties(${target} PROPERTIES ENABLE_EXPORTS 1)
736 elseif (LLVM_EXPORT_SYMBOLS_FOR_PLUGINS)
737 # Extract the symbols to export from the static libraries that the
738 # executable links against.
739 set_target_properties(${target} PROPERTIES ENABLE_EXPORTS 1)
740 set(exported_symbol_file ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${target}.symbols)
741 # We need to consider not just the direct link dependencies, but also the
742 # transitive link dependencies. Do this by starting with the set of direct
743 # dependencies, then the dependencies of those dependencies, and so on.
744 get_target_property(new_libs ${target} LINK_LIBRARIES)
745 set(link_libs ${new_libs})
746 while(NOT "${new_libs}" STREQUAL "")
747 foreach(lib ${new_libs})
John Brawn24ca18e2016-07-05 13:16:54 +0000748 if(TARGET ${lib})
749 get_target_property(lib_type ${lib} TYPE)
750 if("${lib_type}" STREQUAL "STATIC_LIBRARY")
751 list(APPEND static_libs ${lib})
752 else()
753 list(APPEND other_libs ${lib})
John Brawn3546c2f2016-05-26 11:16:43 +0000754 endif()
John Brawn24ca18e2016-07-05 13:16:54 +0000755 get_target_property(transitive_libs ${lib} INTERFACE_LINK_LIBRARIES)
756 foreach(transitive_lib ${transitive_libs})
757 list(FIND link_libs ${transitive_lib} idx)
758 if(TARGET ${transitive_lib} AND idx EQUAL -1)
759 list(APPEND newer_libs ${transitive_lib})
760 list(APPEND link_libs ${transitive_lib})
761 endif()
762 endforeach(transitive_lib)
763 endif()
John Brawn3546c2f2016-05-26 11:16:43 +0000764 endforeach(lib)
765 set(new_libs ${newer_libs})
766 set(newer_libs "")
767 endwhile()
768 if (MSVC)
769 set(mangling microsoft)
770 else()
771 set(mangling itanium)
772 endif()
773 add_custom_command(OUTPUT ${exported_symbol_file}
774 COMMAND ${PYTHON_EXECUTABLE} ${LLVM_MAIN_SRC_DIR}/utils/extract_symbols.py --mangling=${mangling} ${static_libs} -o ${exported_symbol_file}
775 WORKING_DIRECTORY ${LLVM_LIBRARY_OUTPUT_INTDIR}
776 DEPENDS ${LLVM_MAIN_SRC_DIR}/utils/extract_symbols.py ${static_libs}
777 VERBATIM
778 COMMENT "Generating export list for ${target}")
779 add_llvm_symbol_exports( ${target} ${exported_symbol_file} )
780 # If something links against this executable then we want a
781 # transitive link against only the libraries whose symbols
782 # we aren't exporting.
783 set_target_properties(${target} PROPERTIES INTERFACE_LINK_LIBRARIES "${other_libs}")
784 # The default import library suffix that cmake uses for cygwin/mingw is
785 # ".dll.a", but for clang.exe that causes a collision with libclang.dll,
786 # where the import libraries of both get named libclang.dll.a. Use a suffix
787 # of ".exe.a" to avoid this.
788 if(CYGWIN OR MINGW)
789 set_target_properties(${target} PROPERTIES IMPORT_SUFFIX ".exe.a")
790 endif()
791 elseif(NOT (WIN32 OR CYGWIN))
792 # On Windows auto-exporting everything doesn't work because of the limit on
793 # the size of the exported symbol table, but on other platforms we can do
794 # it without any trouble.
Reid Kleckner3e8c4452015-03-18 20:09:13 +0000795 set_target_properties(${target} PROPERTIES ENABLE_EXPORTS 1)
Chris Bieneman914742b2015-11-24 00:58:58 +0000796 if (APPLE)
Chris Bienemanccabd0e2015-12-03 22:51:08 +0000797 set_property(TARGET ${target} APPEND_STRING PROPERTY
Chris Bienemanac6677a2015-12-03 22:55:36 +0000798 LINK_FLAGS " -rdynamic")
Chris Bieneman914742b2015-11-24 00:58:58 +0000799 endif()
Reid Kleckner3e8c4452015-03-18 20:09:13 +0000800 endif()
801endfunction()
802
Chris Bieneman170fd9cb2015-09-10 17:23:32 +0000803if(NOT LLVM_TOOLCHAIN_TOOLS)
804 set (LLVM_TOOLCHAIN_TOOLS
805 llvm-ar
Chris Bieneman6d43afc2015-09-14 23:09:06 +0000806 llvm-ranlib
807 llvm-lib
Chris Bieneman170fd9cb2015-09-10 17:23:32 +0000808 llvm-objdump
809 )
810endif()
Hans Wennborg16546272013-08-24 00:20:36 +0000811
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000812macro(add_llvm_tool name)
Oscar Fuentesdea579f2009-11-23 00:32:42 +0000813 if( NOT LLVM_BUILD_TOOLS )
Oscar Fuentes0c2443a2009-11-23 00:21:43 +0000814 set(EXCLUDE_FROM_ALL ON)
815 endif()
Oscar Fuentes46d8a932010-09-25 20:25:25 +0000816 add_llvm_executable(${name} ${ARGN})
Hans Wennborg16546272013-08-24 00:20:36 +0000817
Chris Bieneman44d29902016-09-27 17:47:24 +0000818 if ( ${name} IN_LIST LLVM_TOOLCHAIN_TOOLS OR NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
Hans Wennborg16546272013-08-24 00:20:36 +0000819 if( LLVM_BUILD_TOOLS )
Justin Bogner4ce3e0c2016-11-04 21:55:23 +0000820 if(${name} IN_LIST LLVM_DISTRIBUTION_COMPONENTS OR
821 NOT LLVM_DISTRIBUTION_COMPONENTS)
822 set(export_to_llvmexports EXPORT LLVMExports)
Justin Bogner80bee972016-11-08 05:02:18 +0000823 set_property(GLOBAL PROPERTY LLVM_HAS_EXPORTS True)
Justin Bogner4ce3e0c2016-11-04 21:55:23 +0000824 endif()
825
NAKAMURA Takumief976072014-02-09 16:36:03 +0000826 install(TARGETS ${name}
Justin Bogner4ce3e0c2016-11-04 21:55:23 +0000827 ${export_to_llvmexports}
Chris Bieneman2724f142016-06-08 21:19:26 +0000828 RUNTIME DESTINATION ${LLVM_TOOLS_INSTALL_DIR}
Chris Bieneman0d9289d2015-02-18 19:25:47 +0000829 COMPONENT ${name})
830
831 if (NOT CMAKE_CONFIGURATION_TYPES)
832 add_custom_target(install-${name}
833 DEPENDS ${name}
834 COMMAND "${CMAKE_COMMAND}"
835 -DCMAKE_INSTALL_COMPONENT=${name}
836 -P "${CMAKE_BINARY_DIR}/cmake_install.cmake")
837 endif()
Hans Wennborg16546272013-08-24 00:20:36 +0000838 endif()
Oscar Fuentesdea579f2009-11-23 00:32:42 +0000839 endif()
NAKAMURA Takumi8faf6602014-02-09 16:36:16 +0000840 if( LLVM_BUILD_TOOLS )
841 set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS ${name})
842 endif()
Oscar Fuentes3145e922011-02-20 22:06:10 +0000843 set_target_properties(${name} PROPERTIES FOLDER "Tools")
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000844endmacro(add_llvm_tool name)
845
846
847macro(add_llvm_example name)
Oscar Fuentesdea579f2009-11-23 00:32:42 +0000848 if( NOT LLVM_BUILD_EXAMPLES )
Oscar Fuentes0c2443a2009-11-23 00:21:43 +0000849 set(EXCLUDE_FROM_ALL ON)
850 endif()
Oscar Fuentes46d8a932010-09-25 20:25:25 +0000851 add_llvm_executable(${name} ${ARGN})
Oscar Fuentesdea579f2009-11-23 00:32:42 +0000852 if( LLVM_BUILD_EXAMPLES )
853 install(TARGETS ${name} RUNTIME DESTINATION examples)
854 endif()
Oscar Fuentes3145e922011-02-20 22:06:10 +0000855 set_target_properties(${name} PROPERTIES FOLDER "Examples")
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000856endmacro(add_llvm_example name)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000857
Michael Gottesmanbe5b7872016-07-10 02:43:47 +0000858# This is a macro that is used to create targets for executables that are needed
859# for development, but that are not intended to be installed by default.
Oscar Fuentes3145e922011-02-20 22:06:10 +0000860macro(add_llvm_utility name)
Michael Gottesmanbe5b7872016-07-10 02:43:47 +0000861 if ( NOT LLVM_BUILD_UTILS )
862 set(EXCLUDE_FROM_ALL ON)
863 endif()
864
Andrew Wilkinsbb6d95f2015-09-05 08:27:33 +0000865 add_llvm_executable(${name} DISABLE_LLVM_LINK_LLVM_DYLIB ${ARGN})
Oscar Fuentes3145e922011-02-20 22:06:10 +0000866 set_target_properties(${name} PROPERTIES FOLDER "Utils")
Michael Gottesmanbe5b7872016-07-10 02:43:47 +0000867 if( LLVM_INSTALL_UTILS AND LLVM_BUILD_UTILS )
Derek Schuffef9928e2015-03-27 16:53:06 +0000868 install (TARGETS ${name}
869 RUNTIME DESTINATION bin
870 COMPONENT ${name})
871 if (NOT CMAKE_CONFIGURATION_TYPES)
872 add_custom_target(install-${name}
873 DEPENDS ${name}
874 COMMAND "${CMAKE_COMMAND}"
875 -DCMAKE_INSTALL_COMPONENT=${name}
876 -P "${CMAKE_BINARY_DIR}/cmake_install.cmake")
877 endif()
878 endif()
Oscar Fuentes3145e922011-02-20 22:06:10 +0000879endmacro(add_llvm_utility name)
880
881
Oscar Fuentescdc95492008-09-26 04:40:32 +0000882macro(add_llvm_target target_name)
Oscar Fuentes4f0f3352011-07-25 20:17:01 +0000883 include_directories(BEFORE
884 ${CMAKE_CURRENT_BINARY_DIR}
885 ${CMAKE_CURRENT_SOURCE_DIR})
NAKAMURA Takumi45374cc2014-03-04 17:05:28 +0000886 add_llvm_library(LLVM${target_name} ${ARGN})
Oscar Fuentesba1186c2011-02-20 02:55:27 +0000887 set( CURRENT_LLVM_TARGET LLVM${target_name} )
Oscar Fuentescdc95492008-09-26 04:40:32 +0000888endmacro(add_llvm_target)
Michael J. Spencere734f542012-04-26 19:43:35 +0000889
Chris Bieneman580d8152015-07-20 20:36:06 +0000890function(canonicalize_tool_name name output)
891 string(REPLACE "${CMAKE_CURRENT_SOURCE_DIR}/" "" nameStrip ${name})
892 string(REPLACE "-" "_" nameUNDERSCORE ${nameStrip})
893 string(TOUPPER ${nameUNDERSCORE} nameUPPER)
894 set(${output} "${nameUPPER}" PARENT_SCOPE)
895endfunction(canonicalize_tool_name)
896
Chris Bieneman70997c32015-10-20 16:42:58 +0000897# Custom add_subdirectory wrapper
Tobias Grossere3421b52016-04-29 13:03:40 +0000898# Takes in a project name (i.e. LLVM), the subdirectory name, and an optional
899# path if it differs from the name.
Chris Bieneman70997c32015-10-20 16:42:58 +0000900macro(add_llvm_subdirectory project type name)
NAKAMURA Takumi700cd402012-10-05 14:10:17 +0000901 set(add_llvm_external_dir "${ARGN}")
902 if("${add_llvm_external_dir}" STREQUAL "")
903 set(add_llvm_external_dir ${name})
904 endif()
Chris Bieneman580d8152015-07-20 20:36:06 +0000905 canonicalize_tool_name(${name} nameUPPER)
NAKAMURA Takumi04e2da52015-08-22 04:53:52 +0000906 if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${add_llvm_external_dir}/CMakeLists.txt)
907 # Treat it as in-tree subproject.
Chris Bieneman70997c32015-10-20 16:42:58 +0000908 option(${project}_${type}_${nameUPPER}_BUILD
909 "Whether to build ${name} as part of ${project}" On)
910 mark_as_advanced(${project}_${type}_${name}_BUILD)
911 if(${project}_${type}_${nameUPPER}_BUILD)
NAKAMURA Takumi04e2da52015-08-22 04:53:52 +0000912 add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/${add_llvm_external_dir} ${add_llvm_external_dir})
913 # Don't process it in add_llvm_implicit_projects().
Chris Bieneman70997c32015-10-20 16:42:58 +0000914 set(${project}_${type}_${nameUPPER}_BUILD OFF)
NAKAMURA Takumi04e2da52015-08-22 04:53:52 +0000915 endif()
916 else()
917 set(LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR
918 "${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR}"
919 CACHE PATH "Path to ${name} source directory")
Chris Bieneman70997c32015-10-20 16:42:58 +0000920 set(${project}_${type}_${nameUPPER}_BUILD_DEFAULT ON)
NAKAMURA Takumi04e2da52015-08-22 04:53:52 +0000921 if(NOT LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR OR NOT EXISTS ${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR})
Chris Bieneman70997c32015-10-20 16:42:58 +0000922 set(${project}_${type}_${nameUPPER}_BUILD_DEFAULT OFF)
NAKAMURA Takumi04e2da52015-08-22 04:53:52 +0000923 endif()
924 if("${LLVM_EXTERNAL_${nameUPPER}_BUILD}" STREQUAL "OFF")
Chris Bieneman70997c32015-10-20 16:42:58 +0000925 set(${project}_${type}_${nameUPPER}_BUILD_DEFAULT OFF)
NAKAMURA Takumi04e2da52015-08-22 04:53:52 +0000926 endif()
Chris Bieneman70997c32015-10-20 16:42:58 +0000927 option(${project}_${type}_${nameUPPER}_BUILD
NAKAMURA Takumi04e2da52015-08-22 04:53:52 +0000928 "Whether to build ${name} as part of LLVM"
Chris Bieneman70997c32015-10-20 16:42:58 +0000929 ${${project}_${type}_${nameUPPER}_BUILD_DEFAULT})
930 if (${project}_${type}_${nameUPPER}_BUILD)
NAKAMURA Takumi6fa85322015-08-22 05:11:02 +0000931 if(EXISTS ${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR})
932 add_subdirectory(${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR} ${add_llvm_external_dir})
933 elseif(NOT "${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR}" STREQUAL "")
934 message(WARNING "Nonexistent directory for ${name}: ${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR}")
935 endif()
NAKAMURA Takumi04e2da52015-08-22 04:53:52 +0000936 # FIXME: It'd be redundant.
Chris Bieneman70997c32015-10-20 16:42:58 +0000937 set(${project}_${type}_${nameUPPER}_BUILD Off)
Michael J. Spencere734f542012-04-26 19:43:35 +0000938 endif()
939 endif()
Chris Bieneman70997c32015-10-20 16:42:58 +0000940endmacro()
941
942# Add external project that may want to be built as part of llvm such as Clang,
943# lld, and Polly. This adds two options. One for the source directory of the
944# project, which defaults to ${CMAKE_CURRENT_SOURCE_DIR}/${name}. Another to
945# enable or disable building it with everything else.
946# Additional parameter can be specified as the name of directory.
947macro(add_llvm_external_project name)
Manuel Klimekf80abb92015-10-22 08:31:46 +0000948 add_llvm_subdirectory(LLVM TOOL ${name} ${ARGN})
Chris Bieneman70997c32015-10-20 16:42:58 +0000949endmacro()
Chandler Carrutha5d42f82012-06-21 05:16:58 +0000950
Argyrios Kyrtzidis7eec9d02013-08-21 19:13:44 +0000951macro(add_llvm_tool_subdirectory name)
Chris Bieneman580d8152015-07-20 20:36:06 +0000952 add_llvm_external_project(${name})
Argyrios Kyrtzidis7eec9d02013-08-21 19:13:44 +0000953endmacro(add_llvm_tool_subdirectory)
954
Chris Bieneman580d8152015-07-20 20:36:06 +0000955function(get_project_name_from_src_var var output)
956 string(REGEX MATCH "LLVM_EXTERNAL_(.*)_SOURCE_DIR"
957 MACHED_TOOL "${var}")
958 if(MACHED_TOOL)
959 set(${output} ${CMAKE_MATCH_1} PARENT_SCOPE)
960 else()
961 set(${output} PARENT_SCOPE)
962 endif()
963endfunction()
Argyrios Kyrtzidis7eec9d02013-08-21 19:13:44 +0000964
Chris Bieneman70997c32015-10-20 16:42:58 +0000965function(create_subdirectory_options project type)
Chris Bieneman580d8152015-07-20 20:36:06 +0000966 file(GLOB sub-dirs "${CMAKE_CURRENT_SOURCE_DIR}/*")
967 foreach(dir ${sub-dirs})
968 if(IS_DIRECTORY "${dir}" AND EXISTS "${dir}/CMakeLists.txt")
969 canonicalize_tool_name(${dir} name)
Chris Bieneman70997c32015-10-20 16:42:58 +0000970 option(${project}_${type}_${name}_BUILD
971 "Whether to build ${name} as part of ${project}" On)
972 mark_as_advanced(${project}_${type}_${name}_BUILD)
Chris Bieneman580d8152015-07-20 20:36:06 +0000973 endif()
974 endforeach()
Chris Bieneman70997c32015-10-20 16:42:58 +0000975endfunction(create_subdirectory_options)
976
977function(create_llvm_tool_options)
978 create_subdirectory_options(LLVM TOOL)
Chris Bieneman580d8152015-07-20 20:36:06 +0000979endfunction(create_llvm_tool_options)
980
Chris Bieneman74c98f02016-03-08 18:43:28 +0000981function(llvm_add_implicit_projects project)
Argyrios Kyrtzidis7eec9d02013-08-21 19:13:44 +0000982 set(list_of_implicit_subdirs "")
983 file(GLOB sub-dirs "${CMAKE_CURRENT_SOURCE_DIR}/*")
984 foreach(dir ${sub-dirs})
Chris Bieneman580d8152015-07-20 20:36:06 +0000985 if(IS_DIRECTORY "${dir}" AND EXISTS "${dir}/CMakeLists.txt")
986 canonicalize_tool_name(${dir} name)
Chris Bieneman74c98f02016-03-08 18:43:28 +0000987 if (${project}_TOOL_${name}_BUILD)
Argyrios Kyrtzidis7eec9d02013-08-21 19:13:44 +0000988 get_filename_component(fn "${dir}" NAME)
989 list(APPEND list_of_implicit_subdirs "${fn}")
990 endif()
991 endif()
992 endforeach()
993
994 foreach(external_proj ${list_of_implicit_subdirs})
Chris Bieneman74c98f02016-03-08 18:43:28 +0000995 add_llvm_subdirectory(${project} TOOL "${external_proj}" ${ARGN})
Argyrios Kyrtzidis7eec9d02013-08-21 19:13:44 +0000996 endforeach()
Chris Bieneman74c98f02016-03-08 18:43:28 +0000997endfunction(llvm_add_implicit_projects)
998
999function(add_llvm_implicit_projects)
1000 llvm_add_implicit_projects(LLVM)
Chris Bieneman580d8152015-07-20 20:36:06 +00001001endfunction(add_llvm_implicit_projects)
Argyrios Kyrtzidis7eec9d02013-08-21 19:13:44 +00001002
Chandler Carrutha5d42f82012-06-21 05:16:58 +00001003# Generic support for adding a unittest.
Chandler Carruth94d02512012-06-21 09:51:26 +00001004function(add_unittest test_suite test_name)
Chandler Carrutha5d42f82012-06-21 05:16:58 +00001005 if( NOT LLVM_BUILD_TESTS )
1006 set(EXCLUDE_FROM_ALL ON)
1007 endif()
1008
NAKAMURA Takumie42fd0d2014-01-07 10:24:14 +00001009 include_directories(${LLVM_MAIN_SRC_DIR}/utils/unittest/googletest/include)
1010 if (NOT LLVM_ENABLE_THREADS)
1011 list(APPEND LLVM_COMPILE_DEFINITIONS GTEST_HAS_PTHREAD=0)
1012 endif ()
1013
1014 if (SUPPORTS_NO_VARIADIC_MACROS_FLAG)
NAKAMURA Takumi13961cb2014-01-30 22:55:25 +00001015 list(APPEND LLVM_COMPILE_FLAGS "-Wno-variadic-macros")
NAKAMURA Takumie42fd0d2014-01-07 10:24:14 +00001016 endif ()
1017
NAKAMURA Takumia679f432014-01-28 09:44:06 +00001018 set(LLVM_REQUIRES_RTTI OFF)
NAKAMURA Takumie42fd0d2014-01-07 10:24:14 +00001019
Andrew Wilkins095e22d2016-02-12 01:42:43 +00001020 list(APPEND LLVM_LINK_COMPONENTS Support) # gtest needs it for raw_ostream
Jonas Hahnfeld277a09d2016-11-03 06:58:16 +00001021 add_llvm_executable(${test_name} IGNORE_EXTERNALIZE_DEBUGINFO NO_INSTALL_RPATH ${ARGN})
NAKAMURA Takumibaa9f532013-12-30 06:48:30 +00001022 set(outdir ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR})
John Brawnc11ef2a2015-09-30 15:20:51 +00001023 set_output_directory(${test_name} BINARY_DIR ${outdir} LIBRARY_DIR ${outdir})
Artem Belevichdf7103d2016-06-21 19:34:40 +00001024 # libpthreads overrides some standard library symbols, so main
1025 # executable must be linked with it in order to provide consistent
1026 # API for all shared libaries loaded by this executable.
1027 target_link_libraries(${test_name} gtest_main gtest ${PTHREAD_LIB})
Chandler Carrutha5d42f82012-06-21 05:16:58 +00001028
1029 add_dependencies(${test_suite} ${test_name})
1030 get_target_property(test_suite_folder ${test_suite} FOLDER)
1031 if (NOT ${test_suite_folder} STREQUAL "NOTFOUND")
1032 set_property(TARGET ${test_name} PROPERTY FOLDER "${test_suite_folder}")
1033 endif ()
Chandler Carrutha5d42f82012-06-21 05:16:58 +00001034endfunction()
Chandler Carruth3511dd32012-06-28 06:36:24 +00001035
Peter Collingbournea4f0bd72014-11-27 00:15:21 +00001036function(llvm_add_go_executable binary pkgpath)
1037 cmake_parse_arguments(ARG "ALL" "" "DEPENDS;GOFLAGS" ${ARGN})
1038
1039 if(LLVM_BINDINGS MATCHES "go")
1040 # FIXME: This should depend only on the libraries Go needs.
1041 get_property(llvmlibs GLOBAL PROPERTY LLVM_LIBS)
1042 set(binpath ${CMAKE_BINARY_DIR}/bin/${binary}${CMAKE_EXECUTABLE_SUFFIX})
1043 set(cc "${CMAKE_C_COMPILER} ${CMAKE_C_COMPILER_ARG1}")
1044 set(cxx "${CMAKE_CXX_COMPILER} ${CMAKE_CXX_COMPILER_ARG1}")
Chandler Carruthcab512d2014-12-29 22:50:30 +00001045 set(cppflags "")
1046 get_property(include_dirs DIRECTORY PROPERTY INCLUDE_DIRECTORIES)
1047 foreach(d ${include_dirs})
1048 set(cppflags "${cppflags} -I${d}")
1049 endforeach(d)
Peter Collingbournea4f0bd72014-11-27 00:15:21 +00001050 set(ldflags "${CMAKE_EXE_LINKER_FLAGS}")
1051 add_custom_command(OUTPUT ${binpath}
Andrew Wilkins5bf7d812016-07-27 03:21:51 +00001052 COMMAND ${CMAKE_BINARY_DIR}/bin/llvm-go "go=${GO_EXECUTABLE}" "cc=${cc}" "cxx=${cxx}" "cppflags=${cppflags}" "ldflags=${ldflags}" "packages=${LLVM_GO_PACKAGES}"
Peter Collingbournea4f0bd72014-11-27 00:15:21 +00001053 ${ARG_GOFLAGS} build -o ${binpath} ${pkgpath}
1054 DEPENDS llvm-config ${CMAKE_BINARY_DIR}/bin/llvm-go${CMAKE_EXECUTABLE_SUFFIX}
1055 ${llvmlibs} ${ARG_DEPENDS}
1056 COMMENT "Building Go executable ${binary}"
1057 VERBATIM)
1058 if (ARG_ALL)
1059 add_custom_target(${binary} ALL DEPENDS ${binpath})
1060 else()
1061 add_custom_target(${binary} DEPENDS ${binpath})
1062 endif()
1063 endif()
1064endfunction()
1065
Chandler Carruth3511dd32012-06-28 06:36:24 +00001066# This function provides an automatic way to 'configure'-like generate a file
Alp Toker171b0c32013-12-20 00:33:39 +00001067# based on a set of common and custom variables, specifically targeting the
Chandler Carruth3511dd32012-06-28 06:36:24 +00001068# variables needed for the 'lit.site.cfg' files. This function bundles the
1069# common variables that any Lit instance is likely to need, and custom
1070# variables can be passed in.
1071function(configure_lit_site_cfg input output)
1072 foreach(c ${LLVM_TARGETS_TO_BUILD})
1073 set(TARGETS_BUILT "${TARGETS_BUILT} ${c}")
1074 endforeach(c)
1075 set(TARGETS_TO_BUILD ${TARGETS_BUILT})
1076
1077 set(SHLIBEXT "${LTDL_SHLIB_EXT}")
Chandler Carruth3511dd32012-06-28 06:36:24 +00001078
Chandler Carruth3511dd32012-06-28 06:36:24 +00001079 # Configuration-time: See Unit/lit.site.cfg.in
NAKAMURA Takumi0dc10d52013-12-04 11:15:17 +00001080 if (CMAKE_CFG_INTDIR STREQUAL ".")
1081 set(LLVM_BUILD_MODE ".")
1082 else ()
1083 set(LLVM_BUILD_MODE "%(build_mode)s")
1084 endif ()
Chandler Carruth3511dd32012-06-28 06:36:24 +00001085
NAKAMURA Takumi3c6f5cd2014-01-26 06:18:56 +00001086 # They below might not be the build tree but provided binary tree.
Chandler Carruth3511dd32012-06-28 06:36:24 +00001087 set(LLVM_SOURCE_DIR ${LLVM_MAIN_SRC_DIR})
1088 set(LLVM_BINARY_DIR ${LLVM_BINARY_DIR})
NAKAMURA Takumice78b802014-01-19 12:52:10 +00001089 string(REPLACE ${CMAKE_CFG_INTDIR} ${LLVM_BUILD_MODE} LLVM_TOOLS_DIR ${LLVM_TOOLS_BINARY_DIR})
1090 string(REPLACE ${CMAKE_CFG_INTDIR} ${LLVM_BUILD_MODE} LLVM_LIBS_DIR ${LLVM_LIBRARY_DIR})
NAKAMURA Takumi3c6f5cd2014-01-26 06:18:56 +00001091
1092 # SHLIBDIR points the build tree.
NAKAMURA Takumi6c5fbbc2014-07-04 04:23:26 +00001093 string(REPLACE ${CMAKE_CFG_INTDIR} ${LLVM_BUILD_MODE} SHLIBDIR "${LLVM_SHLIB_OUTPUT_INTDIR}")
NAKAMURA Takumi3c6f5cd2014-01-26 06:18:56 +00001094
Chandler Carruth3511dd32012-06-28 06:36:24 +00001095 set(PYTHON_EXECUTABLE ${PYTHON_EXECUTABLE})
NAKAMURA Takumi8d7a1732014-07-04 04:45:40 +00001096 # FIXME: "ENABLE_SHARED" doesn't make sense, since it is used just for
1097 # plugins. We may rename it.
1098 if(LLVM_ENABLE_PLUGINS)
1099 set(ENABLE_SHARED "1")
1100 else()
1101 set(ENABLE_SHARED "0")
1102 endif()
Chandler Carruth3511dd32012-06-28 06:36:24 +00001103
1104 if(LLVM_ENABLE_ASSERTIONS AND NOT MSVC_IDE)
1105 set(ENABLE_ASSERTIONS "1")
1106 else()
1107 set(ENABLE_ASSERTIONS "0")
1108 endif()
1109
Kuba Breckaa62bbcc2015-01-24 01:42:44 +00001110 set(HOST_OS ${CMAKE_SYSTEM_NAME})
Tim Northoverbfe84682013-02-14 16:49:32 +00001111 set(HOST_ARCH ${CMAKE_SYSTEM_PROCESSOR})
Chandler Carruth3511dd32012-06-28 06:36:24 +00001112
Peter Collingbournece800842014-10-17 18:32:36 +00001113 set(HOST_CC "${CMAKE_C_COMPILER} ${CMAKE_C_COMPILER_ARG1}")
1114 set(HOST_CXX "${CMAKE_CXX_COMPILER} ${CMAKE_CXX_COMPILER_ARG1}")
Chandler Carruth97192422014-10-21 00:36:28 +00001115 set(HOST_LDFLAGS "${CMAKE_EXE_LINKER_FLAGS}")
Peter Collingbourne82e3e372014-10-16 22:48:02 +00001116
Alex Denisovd5cee4a2016-04-16 06:47:41 +00001117 set(LIT_SITE_CFG_IN_HEADER "## Autogenerated from ${input}\n## Do not edit!")
1118
Chandler Carruth3511dd32012-06-28 06:36:24 +00001119 configure_file(${input} ${output} @ONLY)
1120endfunction()
Chandler Carruth69ce6652012-06-30 10:14:14 +00001121
1122# A raw function to create a lit target. This is used to implement the testuite
1123# management functions.
1124function(add_lit_target target comment)
Filipe Cabecinhasc1b849a2015-06-19 03:45:40 +00001125 cmake_parse_arguments(ARG "" "" "PARAMS;DEPENDS;ARGS" ${ARGN})
Chandler Carruth69ce6652012-06-30 10:14:14 +00001126 set(LIT_ARGS "${ARG_ARGS} ${LLVM_LIT_ARGS}")
1127 separate_arguments(LIT_ARGS)
NAKAMURA Takumi0dc10d52013-12-04 11:15:17 +00001128 if (NOT CMAKE_CFG_INTDIR STREQUAL ".")
1129 list(APPEND LIT_ARGS --param build_mode=${CMAKE_CFG_INTDIR})
1130 endif ()
Michal Gornybab79432016-10-04 20:25:37 +00001131 if (EXISTS ${LLVM_MAIN_SRC_DIR}/utils/lit/lit.py)
1132 # reset cache after erraneous r283029
1133 # TODO: remove this once all buildbots run
1134 if (LIT_COMMAND STREQUAL "${PYTHON_EXECUTABLE} ${LLVM_MAIN_SRC_DIR}/utils/lit/lit.py")
1135 unset(LIT_COMMAND CACHE)
1136 endif()
1137 set (LIT_COMMAND "${PYTHON_EXECUTABLE};${LLVM_MAIN_SRC_DIR}/utils/lit/lit.py"
1138 CACHE STRING "Command used to spawn llvm-lit")
Greg Fitzgerald962a3392014-05-21 16:44:03 +00001139 else()
Michal Gornybab79432016-10-04 20:25:37 +00001140 find_program(LIT_COMMAND NAMES llvm-lit lit.py lit)
Greg Fitzgerald962a3392014-05-21 16:44:03 +00001141 endif ()
1142 list(APPEND LIT_COMMAND ${LIT_ARGS})
Chandler Carruth69ce6652012-06-30 10:14:14 +00001143 foreach(param ${ARG_PARAMS})
1144 list(APPEND LIT_COMMAND --param ${param})
1145 endforeach()
Filipe Cabecinhasc1b849a2015-06-19 03:45:40 +00001146 if (ARG_UNPARSED_ARGUMENTS)
NAKAMURA Takumi04a664e2012-12-24 22:43:59 +00001147 add_custom_target(${target}
Filipe Cabecinhasc1b849a2015-06-19 03:45:40 +00001148 COMMAND ${LIT_COMMAND} ${ARG_UNPARSED_ARGUMENTS}
NAKAMURA Takumi04a664e2012-12-24 22:43:59 +00001149 COMMENT "${comment}"
Chris Bienemandf04e792016-06-08 22:19:25 +00001150 USES_TERMINAL
NAKAMURA Takumi04a664e2012-12-24 22:43:59 +00001151 )
NAKAMURA Takumi04a664e2012-12-24 22:43:59 +00001152 else()
1153 add_custom_target(${target}
Nico Weberb42359d2013-12-29 00:11:20 +00001154 COMMAND ${CMAKE_COMMAND} -E echo "${target} does nothing, no tools built.")
NAKAMURA Takumi04a664e2012-12-24 22:43:59 +00001155 message(STATUS "${target} does nothing.")
1156 endif()
Peter Collingbourne2ba7f7b2015-02-18 22:25:35 +00001157 if (ARG_DEPENDS)
1158 add_dependencies(${target} ${ARG_DEPENDS})
1159 endif()
NAKAMURA Takumi03fc7302013-12-02 11:31:19 +00001160
1161 # Tests should be excluded from "Build Solution".
1162 set_target_properties(${target} PROPERTIES EXCLUDE_FROM_DEFAULT_BUILD ON)
Chandler Carruth69ce6652012-06-30 10:14:14 +00001163endfunction()
1164
1165# A function to add a set of lit test suites to be driven through 'check-*' targets.
1166function(add_lit_testsuite target comment)
Filipe Cabecinhasc1b849a2015-06-19 03:45:40 +00001167 cmake_parse_arguments(ARG "" "" "PARAMS;DEPENDS;ARGS" ${ARGN})
Chandler Carruth69ce6652012-06-30 10:14:14 +00001168
NAKAMURA Takumi54d22742012-10-10 13:32:55 +00001169 # EXCLUDE_FROM_ALL excludes the test ${target} out of check-all.
1170 if(NOT EXCLUDE_FROM_ALL)
1171 # Register the testsuites, params and depends for the global check rule.
Filipe Cabecinhasc1b849a2015-06-19 03:45:40 +00001172 set_property(GLOBAL APPEND PROPERTY LLVM_LIT_TESTSUITES ${ARG_UNPARSED_ARGUMENTS})
NAKAMURA Takumi54d22742012-10-10 13:32:55 +00001173 set_property(GLOBAL APPEND PROPERTY LLVM_LIT_PARAMS ${ARG_PARAMS})
1174 set_property(GLOBAL APPEND PROPERTY LLVM_LIT_DEPENDS ${ARG_DEPENDS})
1175 set_property(GLOBAL APPEND PROPERTY LLVM_LIT_EXTRA_ARGS ${ARG_ARGS})
1176 endif()
Chandler Carruth69ce6652012-06-30 10:14:14 +00001177
1178 # Produce a specific suffixed check rule.
1179 add_lit_target(${target} ${comment}
Filipe Cabecinhasc1b849a2015-06-19 03:45:40 +00001180 ${ARG_UNPARSED_ARGUMENTS}
Chandler Carruth69ce6652012-06-30 10:14:14 +00001181 PARAMS ${ARG_PARAMS}
1182 DEPENDS ${ARG_DEPENDS}
1183 ARGS ${ARG_ARGS}
1184 )
1185endfunction()
Chris Bieneman9ea37d92015-03-23 20:04:00 +00001186
1187function(add_lit_testsuites project directory)
1188 if (NOT CMAKE_CONFIGURATION_TYPES)
Filipe Cabecinhasc1b849a2015-06-19 03:45:40 +00001189 cmake_parse_arguments(ARG "" "" "PARAMS;DEPENDS;ARGS" ${ARGN})
Justin Bognere8894622016-05-06 21:57:30 +00001190
1191 # Search recursively for test directories by assuming anything not
1192 # in a directory called Inputs contains tests.
Justin Bogner3adaa8c2016-06-08 22:36:37 +00001193 file(GLOB_RECURSE to_process LIST_DIRECTORIES true ${directory}/*)
1194 foreach(lit_suite ${to_process})
1195 if(NOT IS_DIRECTORY ${lit_suite})
1196 continue()
1197 endif()
1198 string(FIND ${lit_suite} Inputs is_inputs)
Justin Bogner25ef9e32016-07-25 18:07:14 +00001199 string(FIND ${lit_suite} Output is_output)
1200 if (NOT (is_inputs EQUAL -1 AND is_output EQUAL -1))
Justin Bogner3adaa8c2016-06-08 22:36:37 +00001201 continue()
1202 endif()
Justin Bognere8894622016-05-06 21:57:30 +00001203
Justin Bogner3adaa8c2016-06-08 22:36:37 +00001204 # Create a check- target for the directory.
1205 string(REPLACE ${directory} "" name_slash ${lit_suite})
Chris Bieneman9ea37d92015-03-23 20:04:00 +00001206 if (name_slash)
1207 string(REPLACE "/" "-" name_slash ${name_slash})
1208 string(REPLACE "\\" "-" name_dashes ${name_slash})
1209 string(TOLOWER "${project}${name_dashes}" name_var)
Justin Bogner3adaa8c2016-06-08 22:36:37 +00001210 add_lit_target("check-${name_var}" "Running lit suite ${lit_suite}"
1211 ${lit_suite}
Chris Bieneman9ea37d92015-03-23 20:04:00 +00001212 PARAMS ${ARG_PARAMS}
1213 DEPENDS ${ARG_DEPENDS}
1214 ARGS ${ARG_ARGS}
1215 )
1216 endif()
1217 endforeach()
1218 endif()
1219endfunction()
Chris Bieneman6d43afc2015-09-14 23:09:06 +00001220
Chris Bieneman5e96fe92015-11-04 23:11:12 +00001221function(llvm_install_library_symlink name dest type)
1222 cmake_parse_arguments(ARG "ALWAYS_GENERATE" "COMPONENT" "" ${ARGN})
1223 foreach(path ${CMAKE_MODULE_PATH})
1224 if(EXISTS ${path}/LLVMInstallSymlink.cmake)
1225 set(INSTALL_SYMLINK ${path}/LLVMInstallSymlink.cmake)
1226 break()
1227 endif()
1228 endforeach()
1229
1230 set(component ${ARG_COMPONENT})
1231 if(NOT component)
1232 set(component ${name})
1233 endif()
1234
1235 set(full_name ${CMAKE_${type}_LIBRARY_PREFIX}${name}${CMAKE_${type}_LIBRARY_SUFFIX})
1236 set(full_dest ${CMAKE_${type}_LIBRARY_PREFIX}${dest}${CMAKE_${type}_LIBRARY_SUFFIX})
1237
Chris Bieneman021f8742015-11-11 16:19:39 +00001238 set(output_dir lib${LLVM_LIBDIR_SUFFIX})
Chris Bieneman5e96fe92015-11-04 23:11:12 +00001239 if(WIN32 AND "${type}" STREQUAL "SHARED")
1240 set(output_dir bin)
1241 endif()
1242
1243 install(SCRIPT ${INSTALL_SYMLINK}
1244 CODE "install_symlink(${full_name} ${full_dest} ${output_dir})"
1245 COMPONENT ${component})
1246
1247 if (NOT CMAKE_CONFIGURATION_TYPES AND NOT ARG_ALWAYS_GENERATE)
1248 add_custom_target(install-${name}
1249 DEPENDS ${name} ${dest} install-${dest}
1250 COMMAND "${CMAKE_COMMAND}"
1251 -DCMAKE_INSTALL_COMPONENT=${name}
1252 -P "${CMAKE_BINARY_DIR}/cmake_install.cmake")
1253 endif()
1254endfunction()
1255
Chris Bienemanbff03b02015-09-16 20:49:59 +00001256function(llvm_install_symlink name dest)
Saleem Abdulrasool27227bb2016-12-03 22:03:24 +00001257 cmake_parse_arguments(ARG "ALWAYS_GENERATE" "COMPONENT" "" ${ARGN})
Chris Bieneman08249702015-09-18 17:39:58 +00001258 foreach(path ${CMAKE_MODULE_PATH})
1259 if(EXISTS ${path}/LLVMInstallSymlink.cmake)
1260 set(INSTALL_SYMLINK ${path}/LLVMInstallSymlink.cmake)
1261 break()
1262 endif()
1263 endforeach()
Ramkumar Ramachandracad135a2015-11-10 18:26:34 +00001264
Saleem Abdulrasool27227bb2016-12-03 22:03:24 +00001265 if(ARG_COMPONENT)
1266 set(component ${ARG_COMPONENT})
Chris Bieneman895d96a2015-09-18 21:08:32 +00001267 else()
Saleem Abdulrasool27227bb2016-12-03 22:03:24 +00001268 if(ARG_ALWAYS_GENERATE)
1269 set(component ${dest})
1270 else()
1271 set(component ${name})
1272 endif()
Chris Bieneman895d96a2015-09-18 21:08:32 +00001273 endif()
1274
Chris Bieneman11a71602015-10-16 23:17:13 +00001275 set(full_name ${name}${CMAKE_EXECUTABLE_SUFFIX})
1276 set(full_dest ${dest}${CMAKE_EXECUTABLE_SUFFIX})
1277
Chris Bieneman08249702015-09-18 17:39:58 +00001278 install(SCRIPT ${INSTALL_SYMLINK}
Chris Bieneman2724f142016-06-08 21:19:26 +00001279 CODE "install_symlink(${full_name} ${full_dest} ${LLVM_TOOLS_INSTALL_DIR})"
Chris Bieneman895d96a2015-09-18 21:08:32 +00001280 COMPONENT ${component})
Chris Bienemanbff03b02015-09-16 20:49:59 +00001281
Chris Bieneman895d96a2015-09-18 21:08:32 +00001282 if (NOT CMAKE_CONFIGURATION_TYPES AND NOT ARG_ALWAYS_GENERATE)
Chris Bienemanbff03b02015-09-16 20:49:59 +00001283 add_custom_target(install-${name}
1284 DEPENDS ${name} ${dest} install-${dest}
1285 COMMAND "${CMAKE_COMMAND}"
1286 -DCMAKE_INSTALL_COMPONENT=${name}
1287 -P "${CMAKE_BINARY_DIR}/cmake_install.cmake")
1288 endif()
1289endfunction()
1290
Chris Bieneman89e08ed2016-12-05 03:28:03 +00001291function(add_llvm_tool_symlink link_name target)
1292 cmake_parse_arguments(ARG "ALWAYS_GENERATE" "OUTPUT_DIR" "" ${ARGN})
Chris Bienemandc9b0db2016-12-15 18:17:07 +00001293 set(dest_binary "$<TARGET_FILE:${target}>")
1294
Chris Bieneman28f05ac2016-12-05 17:02:11 +00001295 # This got a bit gross... For multi-configuration generators the target
1296 # properties return the resolved value of the string, not the build system
1297 # expression. To reconstruct the platform-agnostic path we have to do some
1298 # magic. First we grab one of the types, and a type-specific path. Then from
1299 # the type-specific path we find the last occurrence of the type in the path,
1300 # and replace it with CMAKE_CFG_INTDIR. This allows the build step to be type
1301 # agnostic again.
Chris Bieneman89e08ed2016-12-05 03:28:03 +00001302 if(NOT ARG_OUTPUT_DIR)
Chris Bienemandc9b0db2016-12-15 18:17:07 +00001303 # If you're not overriding the OUTPUT_DIR, we can make the link relative in
1304 # the same directory.
1305 if(UNIX)
1306 set(dest_binary "$<TARGET_FILE_NAME:${target}>")
1307 endif()
Chris Bieneman28f05ac2016-12-05 17:02:11 +00001308 if(CMAKE_CONFIGURATION_TYPES)
1309 list(GET CMAKE_CONFIGURATION_TYPES 0 first_type)
1310 string(TOUPPER ${first_type} first_type_upper)
1311 set(first_type_suffix _${first_type_upper})
1312 endif()
Chris Bieneman89e08ed2016-12-05 03:28:03 +00001313 get_target_property(target_type ${target} TYPE)
1314 if(${target_type} STREQUAL "STATIC_LIBRARY")
Chris Bieneman28f05ac2016-12-05 17:02:11 +00001315 get_target_property(ARG_OUTPUT_DIR ${target} ARCHIVE_OUTPUT_DIRECTORY${first_type_suffix})
Chris Bieneman89e08ed2016-12-05 03:28:03 +00001316 elseif(UNIX AND ${target_type} STREQUAL "SHARED_LIBRARY")
Chris Bieneman28f05ac2016-12-05 17:02:11 +00001317 get_target_property(ARG_OUTPUT_DIR ${target} LIBRARY_OUTPUT_DIRECTORY${first_type_suffix})
Chris Bieneman89e08ed2016-12-05 03:28:03 +00001318 else()
Chris Bieneman28f05ac2016-12-05 17:02:11 +00001319 get_target_property(ARG_OUTPUT_DIR ${target} RUNTIME_OUTPUT_DIRECTORY${first_type_suffix})
1320 endif()
1321 if(CMAKE_CONFIGURATION_TYPES)
1322 string(FIND "${ARG_OUTPUT_DIR}" "/${first_type}/" type_start REVERSE)
1323 string(SUBSTRING "${ARG_OUTPUT_DIR}" 0 ${type_start} path_prefix)
1324 string(SUBSTRING "${ARG_OUTPUT_DIR}" ${type_start} -1 path_suffix)
1325 string(REPLACE "/${first_type}/" "/${CMAKE_CFG_INTDIR}/"
1326 path_suffix ${path_suffix})
1327 set(ARG_OUTPUT_DIR ${path_prefix}${path_suffix})
Chris Bieneman89e08ed2016-12-05 03:28:03 +00001328 endif()
Chris Bieneman6d43afc2015-09-14 23:09:06 +00001329 endif()
1330
Chris Bieneman89e08ed2016-12-05 03:28:03 +00001331 if(UNIX)
1332 set(LLVM_LINK_OR_COPY create_symlink)
Chris Bieneman89e08ed2016-12-05 03:28:03 +00001333 else()
1334 set(LLVM_LINK_OR_COPY copy)
Chris Bieneman89e08ed2016-12-05 03:28:03 +00001335 endif()
Chris Bieneman6d43afc2015-09-14 23:09:06 +00001336
Chris Bieneman89e08ed2016-12-05 03:28:03 +00001337 set(output_path "${ARG_OUTPUT_DIR}/${link_name}${CMAKE_EXECUTABLE_SUFFIX}")
1338
1339 set(target_name ${link_name})
1340 if(TARGET ${link_name})
1341 set(target_name ${link_name}-link)
Chris Bieneman6ee60bc2016-09-16 22:19:19 +00001342 endif()
1343
1344
Chris Bieneman895d96a2015-09-18 21:08:32 +00001345 if(ARG_ALWAYS_GENERATE)
1346 set_property(DIRECTORY APPEND PROPERTY
1347 ADDITIONAL_MAKE_CLEAN_FILES ${dest_binary})
Chris Bieneman89e08ed2016-12-05 03:28:03 +00001348 add_custom_command(TARGET ${target} POST_BUILD
Chris Bieneman895d96a2015-09-18 21:08:32 +00001349 COMMAND ${CMAKE_COMMAND} -E ${LLVM_LINK_OR_COPY} "${dest_binary}" "${output_path}")
1350 else()
1351 add_custom_command(OUTPUT ${output_path}
Chris Bienemanbde7e452015-09-15 02:15:53 +00001352 COMMAND ${CMAKE_COMMAND} -E ${LLVM_LINK_OR_COPY} "${dest_binary}" "${output_path}"
Chris Bieneman89e08ed2016-12-05 03:28:03 +00001353 DEPENDS ${target})
1354 add_custom_target(${target_name} ALL DEPENDS ${target} ${output_path})
Chris Bieneman6ee60bc2016-09-16 22:19:19 +00001355 set_target_properties(${target_name} PROPERTIES FOLDER Tools)
Chris Bieneman6d43afc2015-09-14 23:09:06 +00001356
Chris Bieneman44d29902016-09-27 17:47:24 +00001357 # Make sure both the link and target are toolchain tools
Chris Bieneman89e08ed2016-12-05 03:28:03 +00001358 if (${link_name} IN_LIST LLVM_TOOLCHAIN_TOOLS AND ${target} IN_LIST LLVM_TOOLCHAIN_TOOLS)
Petr Hosekacac3ab2016-09-30 06:29:28 +00001359 set(TOOL_IS_TOOLCHAIN ON)
Chris Bieneman895d96a2015-09-18 21:08:32 +00001360 endif()
Chris Bieneman6d43afc2015-09-14 23:09:06 +00001361
Petr Hosekacac3ab2016-09-30 06:29:28 +00001362 if ((TOOL_IS_TOOLCHAIN OR NOT LLVM_INSTALL_TOOLCHAIN_ONLY) AND LLVM_BUILD_TOOLS)
Chris Bieneman89e08ed2016-12-05 03:28:03 +00001363 llvm_install_symlink(${link_name} ${target})
Chris Bieneman6d43afc2015-09-14 23:09:06 +00001364 endif()
1365 endif()
1366endfunction()
Chris Bienemanbf2c4122015-12-03 18:45:39 +00001367
1368function(llvm_externalize_debuginfo name)
1369 if(NOT LLVM_EXTERNALIZE_DEBUGINFO)
1370 return()
1371 endif()
1372
Chris Bieneman6099a4e2016-03-31 20:03:19 +00001373 if(NOT LLVM_EXTERNALIZE_DEBUGINFO_SKIP_STRIP)
1374 set(strip_command COMMAND xcrun strip -Sxl $<TARGET_FILE:${name}>)
1375 endif()
1376
Chris Bienemanbf2c4122015-12-03 18:45:39 +00001377 if(APPLE)
1378 if(CMAKE_CXX_FLAGS MATCHES "-flto"
1379 OR CMAKE_CXX_FLAGS_${uppercase_CMAKE_BUILD_TYPE} MATCHES "-flto")
1380
1381 set(lto_object ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${name}-lto.o)
Chris Bienemanccabd0e2015-12-03 22:51:08 +00001382 set_property(TARGET ${name} APPEND_STRING PROPERTY
1383 LINK_FLAGS " -Wl,-object_path_lto,${lto_object}")
Chris Bienemanbf2c4122015-12-03 18:45:39 +00001384 endif()
1385 add_custom_command(TARGET ${name} POST_BUILD
1386 COMMAND xcrun dsymutil $<TARGET_FILE:${name}>
Chris Bieneman6099a4e2016-03-31 20:03:19 +00001387 ${strip_command}
1388 )
Chris Bienemanbf2c4122015-12-03 18:45:39 +00001389 else()
1390 message(FATAL_ERROR "LLVM_EXTERNALIZE_DEBUGINFO isn't implemented for non-darwin platforms!")
1391 endif()
1392endfunction()
Chris Bieneman61e900b2016-11-01 17:44:58 +00001393
1394function(llvm_setup_rpath name)
Mandeep Singh Grang96999de2016-11-08 00:45:05 +00001395 if(CMAKE_INSTALL_RPATH)
1396 return()
1397 endif()
1398
Chris Bieneman61e900b2016-11-01 17:44:58 +00001399 if(LLVM_INSTALL_PREFIX AND NOT (LLVM_INSTALL_PREFIX STREQUAL CMAKE_INSTALL_PREFIX))
1400 set(extra_libdir ${LLVM_LIBRARY_DIR})
1401 elseif(LLVM_BUILD_LIBRARY_DIR)
1402 set(extra_libdir ${LLVM_LIBRARY_DIR})
1403 endif()
1404
1405 if (APPLE)
1406 set(_install_name_dir INSTALL_NAME_DIR "@rpath")
1407 set(_install_rpath "@loader_path/../lib" ${extra_libdir})
1408 elseif(UNIX)
Mandeep Singh Grang96999de2016-11-08 00:45:05 +00001409 set(_install_rpath "\$ORIGIN/../lib${LLVM_LIBDIR_SUFFIX}" ${extra_libdir})
1410 if(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|DragonFly)")
1411 set_property(TARGET ${name} APPEND_STRING PROPERTY
1412 LINK_FLAGS " -Wl,-z,origin ")
1413 elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Linux" AND NOT LLVM_LINKER_IS_GOLD)
1414 # $ORIGIN is not interpreted at link time by ld.bfd
1415 set_property(TARGET ${name} APPEND_STRING PROPERTY
1416 LINK_FLAGS " -Wl,-rpath-link,${LLVM_LIBRARY_OUTPUT_INTDIR} ")
Chris Bieneman61e900b2016-11-01 17:44:58 +00001417 endif()
1418 else()
1419 return()
1420 endif()
1421
Mandeep Singh Grang96999de2016-11-08 00:45:05 +00001422 set_target_properties(${name} PROPERTIES
1423 BUILD_WITH_INSTALL_RPATH On
1424 INSTALL_RPATH "${_install_rpath}"
1425 ${_install_name_dir})
Chris Bieneman61e900b2016-11-01 17:44:58 +00001426endfunction()
Chris Bieneman8036e0b2016-11-17 04:36:59 +00001427
1428function(setup_dependency_debugging name)
1429 if(NOT LLVM_DEPENDENCY_DEBUGGING)
1430 return()
1431 endif()
1432
1433 if("intrinsics_gen" IN_LIST ARGN)
1434 return()
1435 endif()
1436
1437 set(deny_attributes_gen "(deny file* (literal \"${LLVM_BINARY_DIR}/include/llvm/IR/Attributes.gen\"))")
1438 set(deny_intrinsics_gen "(deny file* (literal \"${LLVM_BINARY_DIR}/include/llvm/IR/Intrinsics.gen\"))")
1439
1440 set(sandbox_command "sandbox-exec -p '(version 1) (allow default) ${deny_attributes_gen} ${deny_intrinsics_gen}'")
Chris Bieneman958edcb2016-11-19 01:32:09 +00001441 set_target_properties(${name} PROPERTIES RULE_LAUNCH_COMPILE ${sandbox_command})
Chris Bieneman8036e0b2016-11-17 04:36:59 +00001442endfunction()