2008-11-15 06:06:14 +08:00
|
|
|
include(LLVMProcessSources)
|
2011-04-06 01:02:48 +08:00
|
|
|
include(LLVM-Config)
|
2015-09-29 22:33:58 +08:00
|
|
|
include(DetermineGCCCompatible)
|
2008-09-22 09:08:49 +08:00
|
|
|
|
2014-01-07 18:24:14 +08:00
|
|
|
function(llvm_update_compile_flags name)
|
2014-01-28 19:40:04 +08:00
|
|
|
get_property(sources TARGET ${name} PROPERTY SOURCES)
|
|
|
|
if("${sources}" MATCHES "\\.c(;|$)")
|
2014-01-28 17:44:06 +08:00
|
|
|
set(update_src_props ON)
|
2014-01-07 18:24:14 +08:00
|
|
|
endif()
|
2014-01-28 17:44:06 +08:00
|
|
|
|
2016-03-31 01:28:21 +08:00
|
|
|
# LLVM_REQUIRES_EH is an internal flag that individual targets can use to
|
|
|
|
# force EH
|
|
|
|
if(LLVM_REQUIRES_EH OR LLVM_ENABLE_EH)
|
2014-07-22 23:41:18 +08:00
|
|
|
if(NOT (LLVM_REQUIRES_RTTI OR LLVM_ENABLE_RTTI))
|
|
|
|
message(AUTHOR_WARNING "Exception handling requires RTTI. Enabling RTTI for ${name}")
|
|
|
|
set(LLVM_REQUIRES_RTTI ON)
|
|
|
|
endif()
|
2016-09-01 22:39:54 +08:00
|
|
|
if(MSVC)
|
|
|
|
list(APPEND LLVM_COMPILE_FLAGS "/EHsc")
|
|
|
|
endif()
|
2014-01-28 17:44:06 +08:00
|
|
|
else()
|
|
|
|
if(LLVM_COMPILER_IS_GCC_COMPATIBLE)
|
2014-01-31 06:55:25 +08:00
|
|
|
list(APPEND LLVM_COMPILE_FLAGS "-fno-exceptions")
|
2014-01-28 17:44:06 +08:00
|
|
|
elseif(MSVC)
|
|
|
|
list(APPEND LLVM_COMPILE_DEFINITIONS _HAS_EXCEPTIONS=0)
|
2014-01-31 06:55:25 +08:00
|
|
|
list(APPEND LLVM_COMPILE_FLAGS "/EHs-c-")
|
2014-01-28 17:44:06 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2014-07-22 23:41:18 +08:00
|
|
|
# LLVM_REQUIRES_RTTI is an internal flag that individual
|
|
|
|
# targets can use to force RTTI
|
2015-11-05 04:57:43 +08:00
|
|
|
set(LLVM_CONFIG_HAS_RTTI YES CACHE INTERNAL "")
|
2014-07-22 23:41:18 +08:00
|
|
|
if(NOT (LLVM_REQUIRES_RTTI OR LLVM_ENABLE_RTTI))
|
2015-11-05 04:57:43 +08:00
|
|
|
set(LLVM_CONFIG_HAS_RTTI NO CACHE INTERNAL "")
|
2014-01-07 18:24:14 +08:00
|
|
|
list(APPEND LLVM_COMPILE_DEFINITIONS GTEST_HAS_RTTI=0)
|
|
|
|
if (LLVM_COMPILER_IS_GCC_COMPATIBLE)
|
2014-01-31 06:55:25 +08:00
|
|
|
list(APPEND LLVM_COMPILE_FLAGS "-fno-rtti")
|
2014-01-07 18:24:14 +08:00
|
|
|
elseif (MSVC)
|
2014-01-31 06:55:25 +08:00
|
|
|
list(APPEND LLVM_COMPILE_FLAGS "/GR-")
|
2014-01-07 18:24:14 +08:00
|
|
|
endif ()
|
2016-09-01 22:39:54 +08:00
|
|
|
elseif(MSVC)
|
|
|
|
list(APPEND LLVM_COMPILE_FLAGS "/GR")
|
2014-01-07 18:24:14 +08:00
|
|
|
endif()
|
|
|
|
|
2014-01-31 06:55:25 +08:00
|
|
|
# Assume that;
|
|
|
|
# - LLVM_COMPILE_FLAGS is list.
|
|
|
|
# - PROPERTY COMPILE_FLAGS is string.
|
Enable linking tools, shared libraries against libLLVM
Summary:
Three closely related changes, to have a mode in which we link all
executables and shared libraries against libLLVM.
1. Add a new LLVM_LINK_LLVM_DYLIB cmake option, which, when ON, will link
executables and shared libraries against libLLVM. For this to work, it
is necessary to also set LLVM_BUILD_LLVM_DYLIB and LLVM_DYLIB_EXPORT_ALL.
It is not strictly necessary to set LLVM_DISABLE_LLVM_DYLIB_ATEXIT, but
we also default to OFF in this mode, or tools tend to misbehave (e.g.
stdout may not flush on exit when output is buffered.)
llvm-config and Tablegen do not use libLLVM, as they are dependencies of
libLLVM.
2. Modify llvm-go to take a new flag, "linkmode=component-libs|dylib".
Depending on which one is passed (default is component-libs), we link
with the individual libraries or libLLVM respectively. We pass in dylib
when LLVM_LINK_LLVM_DYLIB is ON.
3. Fix LLVM_DYLIB_EXPORT_ALL on Linux, and expand the symbols exported to
actually export all. Don't strip leading underscore from symbols on Linux,
and make sure we get all exported symbols and weak-with-default symbols
("W" in nm output). Without these changes, passes won't load because
the "Annotate..." symbols defined in lib/Support/Valigrind.cpp are not
found.
Testing:
- Ran default build ("ninja") with LLVM, clang, compiler-rt, llgo, lldb.
- Ran "check", "check-clang", "check-tsan", "check-libgo" targets. I've
never had much success with LLDB tests, and llgoi is currently broken
so check-llgo fails for an unrelated reason.
- Ran "lldb" to ensure it loads.
Reviewers: chandlerc, beanz, pcc, rnk
Subscribers: rnk, chapuni, sylvestre.ledru, llvm-commits
Differential Revision: http://reviews.llvm.org/D12488
llvm-svn: 246527
2015-09-01 11:14:31 +08:00
|
|
|
string(REPLACE ";" " " target_compile_flags " ${LLVM_COMPILE_FLAGS}")
|
2014-01-31 06:55:25 +08:00
|
|
|
|
2014-01-28 17:44:06 +08:00
|
|
|
if(update_src_props)
|
2014-01-28 19:40:04 +08:00
|
|
|
foreach(fn ${sources})
|
2014-01-28 17:44:06 +08:00
|
|
|
get_filename_component(suf ${fn} EXT)
|
|
|
|
if("${suf}" STREQUAL ".cpp")
|
2014-02-01 01:32:42 +08:00
|
|
|
set_property(SOURCE ${fn} APPEND_STRING PROPERTY
|
|
|
|
COMPILE_FLAGS "${target_compile_flags}")
|
2014-01-28 17:44:06 +08:00
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
else()
|
|
|
|
# Update target props, since all sources are C++.
|
|
|
|
set_property(TARGET ${name} APPEND_STRING PROPERTY
|
|
|
|
COMPILE_FLAGS "${target_compile_flags}")
|
|
|
|
endif()
|
|
|
|
|
2014-01-07 18:24:14 +08:00
|
|
|
set_property(TARGET ${name} APPEND PROPERTY COMPILE_DEFINITIONS ${LLVM_COMPILE_DEFINITIONS})
|
|
|
|
endfunction()
|
|
|
|
|
2013-12-29 07:31:44 +08:00
|
|
|
function(add_llvm_symbol_exports target_name export_file)
|
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
2013-12-30 00:15:26 +08:00
|
|
|
set(native_export_file "${target_name}.exports")
|
2013-12-30 00:15:18 +08:00
|
|
|
add_custom_command(OUTPUT ${native_export_file}
|
|
|
|
COMMAND sed -e "s/^/_/" < ${export_file} > ${native_export_file}
|
2013-12-29 07:31:44 +08:00
|
|
|
DEPENDS ${export_file}
|
|
|
|
VERBATIM
|
|
|
|
COMMENT "Creating export file for ${target_name}")
|
|
|
|
set_property(TARGET ${target_name} APPEND_STRING PROPERTY
|
2018-11-30 08:30:53 +08:00
|
|
|
LINK_FLAGS " -Wl,-exported_symbols_list,\"${CMAKE_CURRENT_BINARY_DIR}/${native_export_file}\"")
|
2016-07-20 06:46:39 +08:00
|
|
|
elseif(${CMAKE_SYSTEM_NAME} MATCHES "AIX")
|
|
|
|
set_property(TARGET ${target_name} APPEND_STRING PROPERTY
|
|
|
|
LINK_FLAGS " -Wl,-bE:${export_file}")
|
2013-12-29 07:31:44 +08:00
|
|
|
elseif(LLVM_HAVE_LINK_VERSION_SCRIPT)
|
|
|
|
# Gold and BFD ld require a version script rather than a plain list.
|
2013-12-30 00:15:26 +08:00
|
|
|
set(native_export_file "${target_name}.exports")
|
2013-12-29 07:31:44 +08:00
|
|
|
# FIXME: Don't write the "local:" line on OpenBSD.
|
2017-04-18 04:51:50 +08:00
|
|
|
# in the export file, also add a linker script to version LLVM symbols (form: LLVM_N.M)
|
2013-12-30 00:15:18 +08:00
|
|
|
add_custom_command(OUTPUT ${native_export_file}
|
2018-03-29 17:44:09 +08:00
|
|
|
COMMAND echo "LLVM_${LLVM_VERSION_MAJOR} {" > ${native_export_file}
|
2013-12-30 00:15:18 +08:00
|
|
|
COMMAND grep -q "[[:alnum:]]" ${export_file} && echo " global:" >> ${native_export_file} || :
|
|
|
|
COMMAND sed -e "s/$/;/" -e "s/^/ /" < ${export_file} >> ${native_export_file}
|
|
|
|
COMMAND echo " local: *;" >> ${native_export_file}
|
|
|
|
COMMAND echo "};" >> ${native_export_file}
|
2013-12-29 07:31:44 +08:00
|
|
|
DEPENDS ${export_file}
|
|
|
|
VERBATIM
|
|
|
|
COMMENT "Creating export file for ${target_name}")
|
2017-07-13 05:43:14 +08:00
|
|
|
if (${LLVM_LINKER_IS_SOLARISLD})
|
2015-06-22 20:34:54 +08:00
|
|
|
set_property(TARGET ${target_name} APPEND_STRING PROPERTY
|
2018-11-30 08:30:53 +08:00
|
|
|
LINK_FLAGS " -Wl,-M,\"${CMAKE_CURRENT_BINARY_DIR}/${native_export_file}\"")
|
2015-06-22 20:34:54 +08:00
|
|
|
else()
|
|
|
|
set_property(TARGET ${target_name} APPEND_STRING PROPERTY
|
2018-11-30 08:30:53 +08:00
|
|
|
LINK_FLAGS " -Wl,--version-script,\"${CMAKE_CURRENT_BINARY_DIR}/${native_export_file}\"")
|
2015-06-22 20:34:54 +08:00
|
|
|
endif()
|
2013-12-29 07:31:44 +08:00
|
|
|
else()
|
2013-12-30 00:15:26 +08:00
|
|
|
set(native_export_file "${target_name}.def")
|
2013-12-29 07:31:44 +08:00
|
|
|
|
2013-12-30 00:15:18 +08:00
|
|
|
add_custom_command(OUTPUT ${native_export_file}
|
2015-07-05 16:56:38 +08:00
|
|
|
COMMAND ${PYTHON_EXECUTABLE} -c "import sys;print(''.join(['EXPORTS\\n']+sys.stdin.readlines(),))"
|
|
|
|
< ${export_file} > ${native_export_file}
|
2013-12-29 07:31:44 +08:00
|
|
|
DEPENDS ${export_file}
|
|
|
|
VERBATIM
|
|
|
|
COMMENT "Creating export file for ${target_name}")
|
2014-10-31 06:37:58 +08:00
|
|
|
set(export_file_linker_flag "${CMAKE_CURRENT_BINARY_DIR}/${native_export_file}")
|
|
|
|
if(MSVC)
|
2015-04-23 00:23:00 +08:00
|
|
|
set(export_file_linker_flag "/DEF:\"${export_file_linker_flag}\"")
|
2013-12-30 00:19:13 +08:00
|
|
|
endif()
|
2014-10-31 06:37:58 +08:00
|
|
|
set_property(TARGET ${target_name} APPEND_STRING PROPERTY
|
|
|
|
LINK_FLAGS " ${export_file_linker_flag}")
|
2013-12-29 07:31:44 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
add_custom_target(${target_name}_exports DEPENDS ${native_export_file})
|
2014-01-28 01:39:38 +08:00
|
|
|
set_target_properties(${target_name}_exports PROPERTIES FOLDER "Misc")
|
2013-12-29 07:31:44 +08:00
|
|
|
|
|
|
|
get_property(srcs TARGET ${target_name} PROPERTY SOURCES)
|
|
|
|
foreach(src ${srcs})
|
|
|
|
get_filename_component(extension ${src} EXT)
|
|
|
|
if(extension STREQUAL ".cpp")
|
|
|
|
set(first_source_file ${src})
|
|
|
|
break()
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# Force re-linking when the exports file changes. Actually, it
|
|
|
|
# forces recompilation of the source file. The LINK_DEPENDS target
|
|
|
|
# property only works for makefile-based generators.
|
2014-01-16 14:43:55 +08:00
|
|
|
# FIXME: This is not safe because this will create the same target
|
|
|
|
# ${native_export_file} in several different file:
|
|
|
|
# - One where we emitted ${target_name}_exports
|
|
|
|
# - One where we emitted the build command for the following object.
|
|
|
|
# set_property(SOURCE ${first_source_file} APPEND PROPERTY
|
|
|
|
# OBJECT_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${native_export_file})
|
2013-12-29 07:31:44 +08:00
|
|
|
|
|
|
|
set_property(DIRECTORY APPEND
|
|
|
|
PROPERTY ADDITIONAL_MAKE_CLEAN_FILES ${native_export_file})
|
|
|
|
|
|
|
|
add_dependencies(${target_name} ${target_name}_exports)
|
2014-02-21 22:17:29 +08:00
|
|
|
|
|
|
|
# Add dependency to *_exports later -- CMake issue 14747
|
|
|
|
list(APPEND LLVM_COMMON_DEPENDS ${target_name}_exports)
|
|
|
|
set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE)
|
2013-12-29 07:31:44 +08:00
|
|
|
endfunction(add_llvm_symbol_exports)
|
|
|
|
|
2018-06-15 07:26:33 +08:00
|
|
|
if(APPLE)
|
|
|
|
execute_process(
|
|
|
|
COMMAND "${CMAKE_LINKER}" -v
|
|
|
|
ERROR_VARIABLE stderr
|
|
|
|
)
|
2018-06-15 07:40:04 +08:00
|
|
|
set(LLVM_LINKER_DETECTED YES)
|
2018-06-15 07:26:33 +08:00
|
|
|
if("${stderr}" MATCHES "PROJECT:ld64")
|
2018-06-15 07:40:04 +08:00
|
|
|
set(LLVM_LINKER_IS_LD64 YES)
|
2018-06-15 07:26:33 +08:00
|
|
|
message(STATUS "Linker detection: ld64")
|
|
|
|
else()
|
2018-06-15 07:40:04 +08:00
|
|
|
set(LLVM_LINKER_DETECTED NO)
|
2018-06-15 07:26:33 +08:00
|
|
|
message(STATUS "Linker detection: unknown")
|
|
|
|
endif()
|
|
|
|
elseif(NOT WIN32)
|
2017-07-13 05:43:14 +08:00
|
|
|
# Detect what linker we have here
|
2017-10-31 05:12:14 +08:00
|
|
|
if( LLVM_USE_LINKER )
|
|
|
|
set(command ${CMAKE_C_COMPILER} -fuse-ld=${LLVM_USE_LINKER} -Wl,--version)
|
|
|
|
else()
|
2018-04-26 14:04:46 +08:00
|
|
|
separate_arguments(flags UNIX_COMMAND "${CMAKE_EXE_LINKER_FLAGS}")
|
|
|
|
set(command ${CMAKE_C_COMPILER} ${flags} -Wl,--version)
|
2017-10-31 05:12:14 +08:00
|
|
|
endif()
|
2015-01-06 17:44:29 +08:00
|
|
|
execute_process(
|
2017-10-31 05:12:14 +08:00
|
|
|
COMMAND ${command}
|
2015-01-06 17:44:29 +08:00
|
|
|
OUTPUT_VARIABLE stdout
|
2017-07-13 05:43:14 +08:00
|
|
|
ERROR_VARIABLE stderr
|
2015-01-06 17:44:29 +08:00
|
|
|
)
|
2018-06-15 07:40:04 +08:00
|
|
|
set(LLVM_LINKER_DETECTED YES)
|
2014-12-05 01:54:35 +08:00
|
|
|
if("${stdout}" MATCHES "GNU gold")
|
2018-06-15 07:40:04 +08:00
|
|
|
set(LLVM_LINKER_IS_GOLD YES)
|
2017-07-13 05:43:14 +08:00
|
|
|
message(STATUS "Linker detection: GNU Gold")
|
|
|
|
elseif("${stdout}" MATCHES "^LLD")
|
2018-06-15 07:40:04 +08:00
|
|
|
set(LLVM_LINKER_IS_LLD YES)
|
2017-07-13 05:43:14 +08:00
|
|
|
message(STATUS "Linker detection: LLD")
|
|
|
|
elseif("${stdout}" MATCHES "GNU ld")
|
2018-06-15 07:40:04 +08:00
|
|
|
set(LLVM_LINKER_IS_GNULD YES)
|
2017-07-13 05:43:14 +08:00
|
|
|
message(STATUS "Linker detection: GNU ld")
|
2017-11-18 01:12:14 +08:00
|
|
|
elseif("${stderr}" MATCHES "Solaris Link Editors" OR
|
|
|
|
"${stdout}" MATCHES "Solaris Link Editors")
|
2018-06-15 07:40:04 +08:00
|
|
|
set(LLVM_LINKER_IS_SOLARISLD YES)
|
2017-07-13 05:43:14 +08:00
|
|
|
message(STATUS "Linker detection: Solaris ld")
|
|
|
|
else()
|
2018-06-15 07:40:04 +08:00
|
|
|
set(LLVM_LINKER_DETECTED NO)
|
2017-07-13 05:43:14 +08:00
|
|
|
message(STATUS "Linker detection: unknown")
|
2014-12-05 01:54:35 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2014-11-02 20:14:22 +08:00
|
|
|
function(add_link_opts target_name)
|
2015-04-06 23:04:31 +08:00
|
|
|
# Don't use linker optimizations in debug builds since it slows down the
|
|
|
|
# linker in a context where the optimizations are not important.
|
|
|
|
if (NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG")
|
2014-12-05 01:54:35 +08:00
|
|
|
|
2015-04-06 23:04:31 +08:00
|
|
|
# Pass -O3 to the linker. This enabled different optimizations on different
|
|
|
|
# linkers.
|
2016-07-20 06:46:39 +08:00
|
|
|
if(NOT (${CMAKE_SYSTEM_NAME} MATCHES "Darwin|SunOS|AIX" OR WIN32))
|
2013-12-30 11:36:05 +08:00
|
|
|
set_property(TARGET ${target_name} APPEND_STRING PROPERTY
|
2015-04-06 23:04:31 +08:00
|
|
|
LINK_FLAGS " -Wl,-O3")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(LLVM_LINKER_IS_GOLD)
|
|
|
|
# With gold gc-sections is always safe.
|
2014-10-20 20:12:21 +08:00
|
|
|
set_property(TARGET ${target_name} APPEND_STRING PROPERTY
|
|
|
|
LINK_FLAGS " -Wl,--gc-sections")
|
2015-04-06 23:04:31 +08:00
|
|
|
# Note that there is a bug with -Wl,--icf=safe so it is not safe
|
|
|
|
# to enable. See https://sourceware.org/bugzilla/show_bug.cgi?id=17704.
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT LLVM_NO_DEAD_STRIP)
|
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
|
|
|
# ld64's implementation of -dead_strip breaks tools that use plugins.
|
|
|
|
set_property(TARGET ${target_name} APPEND_STRING PROPERTY
|
|
|
|
LINK_FLAGS " -Wl,-dead_strip")
|
2015-06-22 23:06:17 +08:00
|
|
|
elseif(${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
|
|
|
|
set_property(TARGET ${target_name} APPEND_STRING PROPERTY
|
|
|
|
LINK_FLAGS " -Wl,-z -Wl,discard-unused=sections")
|
2019-03-14 05:50:25 +08:00
|
|
|
elseif(NOT WIN32 AND NOT LLVM_LINKER_IS_GOLD AND
|
|
|
|
NOT ${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD|AIX")
|
2015-04-06 23:04:31 +08:00
|
|
|
# Object files are compiled with -ffunction-data-sections.
|
|
|
|
# Versions of bfd ld < 2.23.1 have a bug in --gc-sections that breaks
|
|
|
|
# tools that use plugins. Always pass --gc-sections once we require
|
|
|
|
# a newer linker.
|
|
|
|
set_property(TARGET ${target_name} APPEND_STRING PROPERTY
|
|
|
|
LINK_FLAGS " -Wl,--gc-sections")
|
|
|
|
endif()
|
2019-03-14 05:50:25 +08:00
|
|
|
else() #LLVM_NO_DEAD_STRIP
|
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "AIX")
|
|
|
|
set_property(TARGET ${target_name} APPEND_STRING PROPERTY
|
|
|
|
LINK_FLAGS " -Wl,-bnogc")
|
|
|
|
endif()
|
2013-12-30 11:36:05 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
2014-11-02 20:14:22 +08:00
|
|
|
endfunction(add_link_opts)
|
2013-12-30 11:36:05 +08:00
|
|
|
|
2013-12-30 14:48:30 +08:00
|
|
|
# Set each output directory according to ${CMAKE_CONFIGURATION_TYPES}.
|
2017-09-30 03:50:41 +08:00
|
|
|
# Note: Don't set variables CMAKE_*_OUTPUT_DIRECTORY any more,
|
|
|
|
# or a certain builder, for eaxample, msbuild.exe, would be confused.
|
2015-09-30 23:20:51 +08:00
|
|
|
function(set_output_directory target)
|
2015-11-11 02:26:34 +08:00
|
|
|
cmake_parse_arguments(ARG "" "BINARY_DIR;LIBRARY_DIR" "" ${ARGN})
|
2014-07-04 12:23:15 +08:00
|
|
|
|
2015-09-30 23:20:51 +08:00
|
|
|
# module_dir -- corresponding to LIBRARY_OUTPUT_DIRECTORY.
|
2014-07-13 21:33:26 +08:00
|
|
|
# It affects output of add_library(MODULE).
|
|
|
|
if(WIN32 OR CYGWIN)
|
|
|
|
# DLL platform
|
2015-09-30 23:20:51 +08:00
|
|
|
set(module_dir ${ARG_BINARY_DIR})
|
2014-07-13 21:33:26 +08:00
|
|
|
else()
|
2015-09-30 23:20:51 +08:00
|
|
|
set(module_dir ${ARG_LIBRARY_DIR})
|
2014-07-13 21:33:26 +08:00
|
|
|
endif()
|
2013-12-30 14:48:30 +08:00
|
|
|
if(NOT "${CMAKE_CFG_INTDIR}" STREQUAL ".")
|
|
|
|
foreach(build_mode ${CMAKE_CONFIGURATION_TYPES})
|
|
|
|
string(TOUPPER "${build_mode}" CONFIG_SUFFIX)
|
2015-09-30 23:20:51 +08:00
|
|
|
if(ARG_BINARY_DIR)
|
|
|
|
string(REPLACE ${CMAKE_CFG_INTDIR} ${build_mode} bi ${ARG_BINARY_DIR})
|
|
|
|
set_target_properties(${target} PROPERTIES "RUNTIME_OUTPUT_DIRECTORY_${CONFIG_SUFFIX}" ${bi})
|
|
|
|
endif()
|
|
|
|
if(ARG_LIBRARY_DIR)
|
|
|
|
string(REPLACE ${CMAKE_CFG_INTDIR} ${build_mode} li ${ARG_LIBRARY_DIR})
|
|
|
|
set_target_properties(${target} PROPERTIES "ARCHIVE_OUTPUT_DIRECTORY_${CONFIG_SUFFIX}" ${li})
|
|
|
|
endif()
|
|
|
|
if(module_dir)
|
|
|
|
string(REPLACE ${CMAKE_CFG_INTDIR} ${build_mode} mi ${module_dir})
|
|
|
|
set_target_properties(${target} PROPERTIES "LIBRARY_OUTPUT_DIRECTORY_${CONFIG_SUFFIX}" ${mi})
|
|
|
|
endif()
|
2013-12-30 14:48:30 +08:00
|
|
|
endforeach()
|
|
|
|
else()
|
2015-09-30 23:20:51 +08:00
|
|
|
if(ARG_BINARY_DIR)
|
|
|
|
set_target_properties(${target} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${ARG_BINARY_DIR})
|
|
|
|
endif()
|
|
|
|
if(ARG_LIBRARY_DIR)
|
|
|
|
set_target_properties(${target} PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${ARG_LIBRARY_DIR})
|
|
|
|
endif()
|
|
|
|
if(module_dir)
|
|
|
|
set_target_properties(${target} PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${module_dir})
|
|
|
|
endif()
|
2013-12-30 14:48:30 +08:00
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
2015-06-12 23:58:29 +08:00
|
|
|
# If on Windows and building with MSVC, add the resource script containing the
|
|
|
|
# VERSIONINFO data to the project. This embeds version resource information
|
|
|
|
# into the output .exe or .dll.
|
|
|
|
# TODO: Enable for MinGW Windows builds too.
|
|
|
|
#
|
|
|
|
function(add_windows_version_resource_file OUT_VAR)
|
|
|
|
set(sources ${ARGN})
|
2017-10-26 01:11:28 +08:00
|
|
|
if (MSVC AND CMAKE_HOST_SYSTEM_NAME STREQUAL "Windows")
|
2015-06-12 23:58:29 +08:00
|
|
|
set(resource_file ${LLVM_SOURCE_DIR}/resources/windows_version_resource.rc)
|
2015-06-15 05:47:29 +08:00
|
|
|
if(EXISTS ${resource_file})
|
|
|
|
set(sources ${sources} ${resource_file})
|
|
|
|
source_group("Resource Files" ${resource_file})
|
|
|
|
set(windows_resource_file ${resource_file} PARENT_SCOPE)
|
|
|
|
endif()
|
2017-10-26 01:11:28 +08:00
|
|
|
endif(MSVC AND CMAKE_HOST_SYSTEM_NAME STREQUAL "Windows")
|
2015-06-12 23:58:29 +08:00
|
|
|
|
|
|
|
set(${OUT_VAR} ${sources} PARENT_SCOPE)
|
|
|
|
endfunction(add_windows_version_resource_file)
|
|
|
|
|
|
|
|
# set_windows_version_resource_properties(name resource_file...
|
|
|
|
# VERSION_MAJOR int
|
|
|
|
# Optional major version number (defaults to LLVM_VERSION_MAJOR)
|
|
|
|
# VERSION_MINOR int
|
|
|
|
# Optional minor version number (defaults to LLVM_VERSION_MINOR)
|
|
|
|
# VERSION_PATCHLEVEL int
|
|
|
|
# Optional patchlevel version number (defaults to LLVM_VERSION_PATCH)
|
|
|
|
# VERSION_STRING
|
|
|
|
# Optional version string (defaults to PACKAGE_VERSION)
|
|
|
|
# PRODUCT_NAME
|
|
|
|
# Optional product name string (defaults to "LLVM")
|
|
|
|
# )
|
|
|
|
function(set_windows_version_resource_properties name resource_file)
|
|
|
|
cmake_parse_arguments(ARG
|
|
|
|
""
|
|
|
|
"VERSION_MAJOR;VERSION_MINOR;VERSION_PATCHLEVEL;VERSION_STRING;PRODUCT_NAME"
|
|
|
|
""
|
|
|
|
${ARGN})
|
|
|
|
|
|
|
|
if (NOT DEFINED ARG_VERSION_MAJOR)
|
|
|
|
set(ARG_VERSION_MAJOR ${LLVM_VERSION_MAJOR})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT DEFINED ARG_VERSION_MINOR)
|
|
|
|
set(ARG_VERSION_MINOR ${LLVM_VERSION_MINOR})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT DEFINED ARG_VERSION_PATCHLEVEL)
|
|
|
|
set(ARG_VERSION_PATCHLEVEL ${LLVM_VERSION_PATCH})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT DEFINED ARG_VERSION_STRING)
|
|
|
|
set(ARG_VERSION_STRING ${PACKAGE_VERSION})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT DEFINED ARG_PRODUCT_NAME)
|
|
|
|
set(ARG_PRODUCT_NAME "LLVM")
|
|
|
|
endif()
|
|
|
|
|
2015-06-18 09:15:18 +08:00
|
|
|
set_property(SOURCE ${resource_file}
|
|
|
|
PROPERTY COMPILE_FLAGS /nologo)
|
2015-06-12 23:58:29 +08:00
|
|
|
set_property(SOURCE ${resource_file}
|
|
|
|
PROPERTY COMPILE_DEFINITIONS
|
|
|
|
"RC_VERSION_FIELD_1=${ARG_VERSION_MAJOR}"
|
|
|
|
"RC_VERSION_FIELD_2=${ARG_VERSION_MINOR}"
|
|
|
|
"RC_VERSION_FIELD_3=${ARG_VERSION_PATCHLEVEL}"
|
|
|
|
"RC_VERSION_FIELD_4=0"
|
|
|
|
"RC_FILE_VERSION=\"${ARG_VERSION_STRING}\""
|
|
|
|
"RC_INTERNAL_NAME=\"${name}\""
|
|
|
|
"RC_PRODUCT_NAME=\"${ARG_PRODUCT_NAME}\""
|
|
|
|
"RC_PRODUCT_VERSION=\"${ARG_VERSION_STRING}\"")
|
|
|
|
endfunction(set_windows_version_resource_properties)
|
|
|
|
|
2014-02-10 17:05:11 +08:00
|
|
|
# llvm_add_library(name sources...
|
2014-02-13 19:25:17 +08:00
|
|
|
# SHARED;STATIC
|
2014-02-10 17:05:11 +08:00
|
|
|
# STATIC by default w/o BUILD_SHARED_LIBS.
|
|
|
|
# SHARED by default w/ BUILD_SHARED_LIBS.
|
2016-01-12 15:44:58 +08:00
|
|
|
# OBJECT
|
|
|
|
# Also create an OBJECT library target. Default if STATIC && SHARED.
|
2014-02-13 19:25:17 +08:00
|
|
|
# MODULE
|
|
|
|
# Target ${name} might not be created on unsupported platforms.
|
|
|
|
# Check with "if(TARGET ${name})".
|
Enable linking tools, shared libraries against libLLVM
Summary:
Three closely related changes, to have a mode in which we link all
executables and shared libraries against libLLVM.
1. Add a new LLVM_LINK_LLVM_DYLIB cmake option, which, when ON, will link
executables and shared libraries against libLLVM. For this to work, it
is necessary to also set LLVM_BUILD_LLVM_DYLIB and LLVM_DYLIB_EXPORT_ALL.
It is not strictly necessary to set LLVM_DISABLE_LLVM_DYLIB_ATEXIT, but
we also default to OFF in this mode, or tools tend to misbehave (e.g.
stdout may not flush on exit when output is buffered.)
llvm-config and Tablegen do not use libLLVM, as they are dependencies of
libLLVM.
2. Modify llvm-go to take a new flag, "linkmode=component-libs|dylib".
Depending on which one is passed (default is component-libs), we link
with the individual libraries or libLLVM respectively. We pass in dylib
when LLVM_LINK_LLVM_DYLIB is ON.
3. Fix LLVM_DYLIB_EXPORT_ALL on Linux, and expand the symbols exported to
actually export all. Don't strip leading underscore from symbols on Linux,
and make sure we get all exported symbols and weak-with-default symbols
("W" in nm output). Without these changes, passes won't load because
the "Annotate..." symbols defined in lib/Support/Valigrind.cpp are not
found.
Testing:
- Ran default build ("ninja") with LLVM, clang, compiler-rt, llgo, lldb.
- Ran "check", "check-clang", "check-tsan", "check-libgo" targets. I've
never had much success with LLDB tests, and llgoi is currently broken
so check-llgo fails for an unrelated reason.
- Ran "lldb" to ensure it loads.
Reviewers: chandlerc, beanz, pcc, rnk
Subscribers: rnk, chapuni, sylvestre.ledru, llvm-commits
Differential Revision: http://reviews.llvm.org/D12488
llvm-svn: 246527
2015-09-01 11:14:31 +08:00
|
|
|
# DISABLE_LLVM_LINK_LLVM_DYLIB
|
|
|
|
# Do not link this library to libLLVM, even if
|
|
|
|
# LLVM_LINK_LLVM_DYLIB is enabled.
|
2014-02-10 17:05:11 +08:00
|
|
|
# OUTPUT_NAME name
|
|
|
|
# Corresponds to OUTPUT_NAME in target properties.
|
|
|
|
# DEPENDS targets...
|
|
|
|
# Same semantics as add_dependencies().
|
|
|
|
# LINK_COMPONENTS components...
|
|
|
|
# Same as the variable LLVM_LINK_COMPONENTS.
|
|
|
|
# LINK_LIBS lib_targets...
|
|
|
|
# Same semantics as target_link_libraries().
|
2014-02-13 09:00:52 +08:00
|
|
|
# ADDITIONAL_HEADERS
|
2014-02-10 17:05:11 +08:00
|
|
|
# May specify header files for IDE generators.
|
2015-11-05 07:11:12 +08:00
|
|
|
# SONAME
|
|
|
|
# Should set SONAME link flags and create symlinks
|
2018-12-07 17:12:54 +08:00
|
|
|
# NO_INSTALL_RPATH
|
|
|
|
# Suppress default RPATH settings in shared libraries.
|
2016-05-26 19:16:43 +08:00
|
|
|
# PLUGIN_TOOL
|
|
|
|
# The tool (i.e. cmake target) that this plugin will link against
|
2014-02-10 17:05:11 +08:00
|
|
|
# )
|
|
|
|
function(llvm_add_library name)
|
|
|
|
cmake_parse_arguments(ARG
|
2018-12-07 17:12:54 +08:00
|
|
|
"MODULE;SHARED;STATIC;OBJECT;DISABLE_LLVM_LINK_LLVM_DYLIB;SONAME;NO_INSTALL_RPATH"
|
2019-01-30 23:10:08 +08:00
|
|
|
"OUTPUT_NAME;PLUGIN_TOOL;ENTITLEMENTS"
|
2014-02-21 22:17:17 +08:00
|
|
|
"ADDITIONAL_HEADERS;DEPENDS;LINK_COMPONENTS;LINK_LIBS;OBJLIBS"
|
2014-02-10 17:05:11 +08:00
|
|
|
${ARGN})
|
|
|
|
list(APPEND LLVM_COMMON_DEPENDS ${ARG_DEPENDS})
|
2014-02-13 09:00:52 +08:00
|
|
|
if(ARG_ADDITIONAL_HEADERS)
|
|
|
|
# Pass through ADDITIONAL_HEADERS.
|
|
|
|
set(ARG_ADDITIONAL_HEADERS ADDITIONAL_HEADERS ${ARG_ADDITIONAL_HEADERS})
|
|
|
|
endif()
|
2014-02-21 22:17:17 +08:00
|
|
|
if(ARG_OBJLIBS)
|
|
|
|
set(ALL_FILES ${ARG_OBJLIBS})
|
|
|
|
else()
|
|
|
|
llvm_process_sources(ALL_FILES ${ARG_UNPARSED_ARGUMENTS} ${ARG_ADDITIONAL_HEADERS})
|
|
|
|
endif()
|
2014-02-10 17:05:11 +08:00
|
|
|
|
|
|
|
if(ARG_MODULE)
|
|
|
|
if(ARG_SHARED OR ARG_STATIC)
|
|
|
|
message(WARNING "MODULE with SHARED|STATIC doesn't make sense.")
|
|
|
|
endif()
|
2016-05-26 19:16:43 +08:00
|
|
|
# Plugins that link against a tool are allowed even when plugins in general are not
|
|
|
|
if(NOT LLVM_ENABLE_PLUGINS AND NOT (ARG_PLUGIN_TOOL AND LLVM_EXPORT_SYMBOLS_FOR_PLUGINS))
|
2014-02-13 19:25:17 +08:00
|
|
|
message(STATUS "${name} ignored -- Loadable modules not supported on this platform.")
|
|
|
|
return()
|
|
|
|
endif()
|
2014-02-10 17:05:11 +08:00
|
|
|
else()
|
2016-05-26 19:16:43 +08:00
|
|
|
if(ARG_PLUGIN_TOOL)
|
|
|
|
message(WARNING "PLUGIN_TOOL without MODULE doesn't make sense.")
|
|
|
|
endif()
|
2014-02-10 17:05:11 +08:00
|
|
|
if(BUILD_SHARED_LIBS AND NOT ARG_STATIC)
|
|
|
|
set(ARG_SHARED TRUE)
|
|
|
|
endif()
|
|
|
|
if(NOT ARG_SHARED)
|
|
|
|
set(ARG_STATIC TRUE)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2014-02-21 22:17:17 +08:00
|
|
|
# Generate objlib
|
2016-01-12 15:44:58 +08:00
|
|
|
if((ARG_SHARED AND ARG_STATIC) OR ARG_OBJECT)
|
2014-02-21 22:17:17 +08:00
|
|
|
# Generate an obj library for both targets.
|
|
|
|
set(obj_name "obj.${name}")
|
|
|
|
add_library(${obj_name} OBJECT EXCLUDE_FROM_ALL
|
|
|
|
${ALL_FILES}
|
|
|
|
)
|
|
|
|
llvm_update_compile_flags(${obj_name})
|
|
|
|
set(ALL_FILES "$<TARGET_OBJECTS:${obj_name}>")
|
|
|
|
|
2014-02-21 22:17:29 +08:00
|
|
|
# Do add_dependencies(obj) later due to CMake issue 14747.
|
|
|
|
list(APPEND objlibs ${obj_name})
|
|
|
|
|
2014-02-21 22:17:17 +08:00
|
|
|
set_target_properties(${obj_name} PROPERTIES FOLDER "Object Libraries")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ARG_SHARED AND ARG_STATIC)
|
|
|
|
# static
|
|
|
|
set(name_static "${name}_static")
|
|
|
|
if(ARG_OUTPUT_NAME)
|
2014-02-28 08:28:13 +08:00
|
|
|
set(output_name OUTPUT_NAME "${ARG_OUTPUT_NAME}")
|
2014-02-21 22:17:17 +08:00
|
|
|
endif()
|
|
|
|
# DEPENDS has been appended to LLVM_COMMON_LIBS.
|
|
|
|
llvm_add_library(${name_static} STATIC
|
|
|
|
${output_name}
|
|
|
|
OBJLIBS ${ALL_FILES} # objlib
|
|
|
|
LINK_LIBS ${ARG_LINK_LIBS}
|
|
|
|
LINK_COMPONENTS ${ARG_LINK_COMPONENTS}
|
|
|
|
)
|
|
|
|
# FIXME: Add name_static to anywhere in TARGET ${name}'s PROPERTY.
|
|
|
|
set(ARG_STATIC)
|
|
|
|
endif()
|
|
|
|
|
2014-02-10 17:05:11 +08:00
|
|
|
if(ARG_MODULE)
|
|
|
|
add_library(${name} MODULE ${ALL_FILES})
|
|
|
|
elseif(ARG_SHARED)
|
2015-06-12 23:58:29 +08:00
|
|
|
add_windows_version_resource_file(ALL_FILES ${ALL_FILES})
|
2014-02-10 17:05:11 +08:00
|
|
|
add_library(${name} SHARED ${ALL_FILES})
|
|
|
|
else()
|
|
|
|
add_library(${name} STATIC ${ALL_FILES})
|
|
|
|
endif()
|
2015-06-12 23:58:29 +08:00
|
|
|
|
2018-12-07 17:12:54 +08:00
|
|
|
if(NOT ARG_NO_INSTALL_RPATH)
|
|
|
|
if(ARG_MODULE OR ARG_SHARED)
|
|
|
|
llvm_setup_rpath(${name})
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2016-11-19 09:32:09 +08:00
|
|
|
setup_dependency_debugging(${name} ${LLVM_COMMON_DEPENDS})
|
|
|
|
|
2015-06-12 23:58:29 +08:00
|
|
|
if(DEFINED windows_resource_file)
|
|
|
|
set_windows_version_resource_properties(${name} ${windows_resource_file})
|
|
|
|
set(windows_resource_file ${windows_resource_file} PARENT_SCOPE)
|
|
|
|
endif()
|
|
|
|
|
2015-09-30 23:20:51 +08:00
|
|
|
set_output_directory(${name} BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR} LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR})
|
2015-09-08 15:42:06 +08:00
|
|
|
# $<TARGET_OBJECTS> doesn't require compile flags.
|
|
|
|
if(NOT obj_name)
|
|
|
|
llvm_update_compile_flags(${name})
|
|
|
|
endif()
|
2014-11-02 20:14:22 +08:00
|
|
|
add_link_opts( ${name} )
|
2014-02-10 17:05:11 +08:00
|
|
|
if(ARG_OUTPUT_NAME)
|
|
|
|
set_target_properties(${name}
|
|
|
|
PROPERTIES
|
|
|
|
OUTPUT_NAME ${ARG_OUTPUT_NAME}
|
|
|
|
)
|
|
|
|
endif()
|
2010-10-14 23:54:41 +08:00
|
|
|
|
2014-02-10 17:05:11 +08:00
|
|
|
if(ARG_MODULE)
|
2014-02-13 19:19:21 +08:00
|
|
|
set_target_properties(${name} PROPERTIES
|
|
|
|
PREFIX ""
|
|
|
|
SUFFIX ${LLVM_PLUGIN_EXT}
|
|
|
|
)
|
2014-02-10 17:05:11 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ARG_SHARED)
|
2014-04-10 23:47:04 +08:00
|
|
|
if(WIN32)
|
|
|
|
set_target_properties(${name} PROPERTIES
|
|
|
|
PREFIX ""
|
|
|
|
)
|
|
|
|
endif()
|
2016-10-04 14:09:18 +08:00
|
|
|
|
|
|
|
# Set SOVERSION on shared libraries that lack explicit SONAME
|
|
|
|
# specifier, on *nix systems that are not Darwin.
|
|
|
|
if(UNIX AND NOT APPLE AND NOT ARG_SONAME)
|
|
|
|
set_target_properties(${name}
|
|
|
|
PROPERTIES
|
2017-01-18 05:04:19 +08:00
|
|
|
# Since 4.0.0, the ABI version is indicated by the major version
|
2018-08-09 04:45:03 +08:00
|
|
|
SOVERSION ${LLVM_VERSION_MAJOR}${LLVM_VERSION_SUFFIX}
|
2018-03-29 17:44:09 +08:00
|
|
|
VERSION ${LLVM_VERSION_MAJOR}${LLVM_VERSION_SUFFIX})
|
2016-10-04 14:09:18 +08:00
|
|
|
endif()
|
2014-02-10 17:05:11 +08:00
|
|
|
endif()
|
2010-10-14 23:54:41 +08:00
|
|
|
|
2014-02-10 17:05:11 +08:00
|
|
|
if(ARG_MODULE OR ARG_SHARED)
|
2014-09-27 06:40:15 +08:00
|
|
|
# Do not add -Dname_EXPORTS to the command-line when building files in this
|
|
|
|
# target. Doing so is actively harmful for the modules build because it
|
|
|
|
# creates extra module variants, and not useful because we don't use these
|
|
|
|
# macros.
|
|
|
|
set_target_properties( ${name} PROPERTIES DEFINE_SYMBOL "" )
|
|
|
|
|
2013-12-29 13:39:01 +08:00
|
|
|
if (LLVM_EXPORTED_SYMBOL_FILE)
|
|
|
|
add_llvm_symbol_exports( ${name} ${LLVM_EXPORTED_SYMBOL_FILE} )
|
|
|
|
endif()
|
2013-12-29 07:31:44 +08:00
|
|
|
endif()
|
|
|
|
|
2015-11-11 07:19:21 +08:00
|
|
|
if(ARG_SHARED AND UNIX)
|
|
|
|
if(NOT APPLE AND ARG_SONAME)
|
|
|
|
get_target_property(output_name ${name} OUTPUT_NAME)
|
|
|
|
if(${output_name} STREQUAL "output_name-NOTFOUND")
|
|
|
|
set(output_name ${name})
|
|
|
|
endif()
|
2018-03-29 17:44:09 +08:00
|
|
|
set(library_name ${output_name}-${LLVM_VERSION_MAJOR}${LLVM_VERSION_SUFFIX})
|
2015-11-11 07:19:21 +08:00
|
|
|
set(api_name ${output_name}-${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}${LLVM_VERSION_SUFFIX})
|
|
|
|
set_target_properties(${name} PROPERTIES OUTPUT_NAME ${library_name})
|
|
|
|
llvm_install_library_symlink(${api_name} ${library_name} SHARED
|
|
|
|
COMPONENT ${name}
|
|
|
|
ALWAYS_GENERATE)
|
|
|
|
llvm_install_library_symlink(${output_name} ${library_name} SHARED
|
|
|
|
COMPONENT ${name}
|
|
|
|
ALWAYS_GENERATE)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2016-05-26 19:16:43 +08:00
|
|
|
if(ARG_MODULE AND LLVM_EXPORT_SYMBOLS_FOR_PLUGINS AND ARG_PLUGIN_TOOL AND (WIN32 OR CYGWIN))
|
|
|
|
# On DLL platforms symbols are imported from the tool by linking against it.
|
|
|
|
set(llvm_libs ${ARG_PLUGIN_TOOL})
|
|
|
|
elseif (DEFINED LLVM_LINK_COMPONENTS OR DEFINED ARG_LINK_COMPONENTS)
|
2016-02-12 09:42:43 +08:00
|
|
|
if (LLVM_LINK_LLVM_DYLIB AND NOT ARG_DISABLE_LLVM_LINK_LLVM_DYLIB)
|
|
|
|
set(llvm_libs LLVM)
|
|
|
|
else()
|
|
|
|
llvm_map_components_to_libnames(llvm_libs
|
|
|
|
${ARG_LINK_COMPONENTS}
|
|
|
|
${LLVM_LINK_COMPONENTS}
|
|
|
|
)
|
|
|
|
endif()
|
Enable linking tools, shared libraries against libLLVM
Summary:
Three closely related changes, to have a mode in which we link all
executables and shared libraries against libLLVM.
1. Add a new LLVM_LINK_LLVM_DYLIB cmake option, which, when ON, will link
executables and shared libraries against libLLVM. For this to work, it
is necessary to also set LLVM_BUILD_LLVM_DYLIB and LLVM_DYLIB_EXPORT_ALL.
It is not strictly necessary to set LLVM_DISABLE_LLVM_DYLIB_ATEXIT, but
we also default to OFF in this mode, or tools tend to misbehave (e.g.
stdout may not flush on exit when output is buffered.)
llvm-config and Tablegen do not use libLLVM, as they are dependencies of
libLLVM.
2. Modify llvm-go to take a new flag, "linkmode=component-libs|dylib".
Depending on which one is passed (default is component-libs), we link
with the individual libraries or libLLVM respectively. We pass in dylib
when LLVM_LINK_LLVM_DYLIB is ON.
3. Fix LLVM_DYLIB_EXPORT_ALL on Linux, and expand the symbols exported to
actually export all. Don't strip leading underscore from symbols on Linux,
and make sure we get all exported symbols and weak-with-default symbols
("W" in nm output). Without these changes, passes won't load because
the "Annotate..." symbols defined in lib/Support/Valigrind.cpp are not
found.
Testing:
- Ran default build ("ninja") with LLVM, clang, compiler-rt, llgo, lldb.
- Ran "check", "check-clang", "check-tsan", "check-libgo" targets. I've
never had much success with LLDB tests, and llgoi is currently broken
so check-llgo fails for an unrelated reason.
- Ran "lldb" to ensure it loads.
Reviewers: chandlerc, beanz, pcc, rnk
Subscribers: rnk, chapuni, sylvestre.ledru, llvm-commits
Differential Revision: http://reviews.llvm.org/D12488
llvm-svn: 246527
2015-09-01 11:14:31 +08:00
|
|
|
else()
|
2016-02-12 09:42:43 +08:00
|
|
|
# Components have not been defined explicitly in CMake, so add the
|
|
|
|
# dependency information for this library as defined by LLVMBuild.
|
|
|
|
#
|
|
|
|
# It would be nice to verify that we have the dependencies for this library
|
|
|
|
# name, but using get_property(... SET) doesn't suffice to determine if a
|
|
|
|
# property has been set to an empty value.
|
|
|
|
get_property(lib_deps GLOBAL PROPERTY LLVMBUILD_LIB_DEPS_${name})
|
Enable linking tools, shared libraries against libLLVM
Summary:
Three closely related changes, to have a mode in which we link all
executables and shared libraries against libLLVM.
1. Add a new LLVM_LINK_LLVM_DYLIB cmake option, which, when ON, will link
executables and shared libraries against libLLVM. For this to work, it
is necessary to also set LLVM_BUILD_LLVM_DYLIB and LLVM_DYLIB_EXPORT_ALL.
It is not strictly necessary to set LLVM_DISABLE_LLVM_DYLIB_ATEXIT, but
we also default to OFF in this mode, or tools tend to misbehave (e.g.
stdout may not flush on exit when output is buffered.)
llvm-config and Tablegen do not use libLLVM, as they are dependencies of
libLLVM.
2. Modify llvm-go to take a new flag, "linkmode=component-libs|dylib".
Depending on which one is passed (default is component-libs), we link
with the individual libraries or libLLVM respectively. We pass in dylib
when LLVM_LINK_LLVM_DYLIB is ON.
3. Fix LLVM_DYLIB_EXPORT_ALL on Linux, and expand the symbols exported to
actually export all. Don't strip leading underscore from symbols on Linux,
and make sure we get all exported symbols and weak-with-default symbols
("W" in nm output). Without these changes, passes won't load because
the "Annotate..." symbols defined in lib/Support/Valigrind.cpp are not
found.
Testing:
- Ran default build ("ninja") with LLVM, clang, compiler-rt, llgo, lldb.
- Ran "check", "check-clang", "check-tsan", "check-libgo" targets. I've
never had much success with LLDB tests, and llgoi is currently broken
so check-llgo fails for an unrelated reason.
- Ran "lldb" to ensure it loads.
Reviewers: chandlerc, beanz, pcc, rnk
Subscribers: rnk, chapuni, sylvestre.ledru, llvm-commits
Differential Revision: http://reviews.llvm.org/D12488
llvm-svn: 246527
2015-09-01 11:14:31 +08:00
|
|
|
endif()
|
2014-02-26 19:58:01 +08:00
|
|
|
|
2016-06-09 06:48:01 +08:00
|
|
|
if(ARG_STATIC)
|
|
|
|
set(libtype INTERFACE)
|
2014-02-26 14:53:16 +08:00
|
|
|
else()
|
2014-11-07 23:33:56 +08:00
|
|
|
# We can use PRIVATE since SO knows its dependent libs.
|
2016-06-09 06:48:01 +08:00
|
|
|
set(libtype PRIVATE)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
target_link_libraries(${name} ${libtype}
|
2014-02-26 19:58:01 +08:00
|
|
|
${ARG_LINK_LIBS}
|
|
|
|
${lib_deps}
|
|
|
|
${llvm_libs}
|
|
|
|
)
|
2014-02-10 17:05:11 +08:00
|
|
|
|
|
|
|
if(LLVM_COMMON_DEPENDS)
|
|
|
|
add_dependencies(${name} ${LLVM_COMMON_DEPENDS})
|
2014-02-21 22:17:29 +08:00
|
|
|
# Add dependencies also to objlibs.
|
|
|
|
# CMake issue 14747 -- add_dependencies() might be ignored to objlib's user.
|
|
|
|
foreach(objlib ${objlibs})
|
|
|
|
add_dependencies(${objlib} ${LLVM_COMMON_DEPENDS})
|
|
|
|
endforeach()
|
2014-02-10 17:05:11 +08:00
|
|
|
endif()
|
2015-12-04 02:45:39 +08:00
|
|
|
|
|
|
|
if(ARG_SHARED OR ARG_MODULE)
|
|
|
|
llvm_externalize_debuginfo(${name})
|
2019-01-30 23:10:08 +08:00
|
|
|
llvm_codesign(${name} ENTITLEMENTS ${ARG_ENTITLEMENTS})
|
2015-12-04 02:45:39 +08:00
|
|
|
endif()
|
2014-02-10 17:05:11 +08:00
|
|
|
endfunction()
|
|
|
|
|
2017-12-01 05:48:26 +08:00
|
|
|
function(add_llvm_install_targets target)
|
|
|
|
cmake_parse_arguments(ARG "" "COMPONENT;PREFIX" "DEPENDS" ${ARGN})
|
|
|
|
if(ARG_COMPONENT)
|
|
|
|
set(component_option -DCMAKE_INSTALL_COMPONENT="${ARG_COMPONENT}")
|
|
|
|
endif()
|
|
|
|
if(ARG_PREFIX)
|
|
|
|
set(prefix_option -DCMAKE_INSTALL_PREFIX="${ARG_PREFIX}")
|
|
|
|
endif()
|
|
|
|
|
2019-04-24 05:59:07 +08:00
|
|
|
set(file_dependencies)
|
|
|
|
set(target_dependencies)
|
|
|
|
foreach(dependency ${ARG_DEPENDS})
|
|
|
|
if(TARGET ${dependency})
|
|
|
|
list(APPEND target_dependencies ${dependency})
|
|
|
|
else()
|
|
|
|
list(APPEND file_dependencies ${dependency})
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
2017-12-01 05:48:26 +08:00
|
|
|
add_custom_target(${target}
|
2019-04-24 05:59:07 +08:00
|
|
|
DEPENDS ${file_dependencies}
|
2017-12-01 05:48:26 +08:00
|
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
|
|
${component_option}
|
|
|
|
${prefix_option}
|
|
|
|
-P "${CMAKE_BINARY_DIR}/cmake_install.cmake"
|
|
|
|
USES_TERMINAL)
|
|
|
|
add_custom_target(${target}-stripped
|
2019-04-24 05:59:07 +08:00
|
|
|
DEPENDS ${file_dependencies}
|
2017-12-01 05:48:26 +08:00
|
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
|
|
${component_option}
|
|
|
|
${prefix_option}
|
|
|
|
-DCMAKE_INSTALL_DO_STRIP=1
|
|
|
|
-P "${CMAKE_BINARY_DIR}/cmake_install.cmake"
|
|
|
|
USES_TERMINAL)
|
2019-04-24 05:59:07 +08:00
|
|
|
if(target_dependencies)
|
|
|
|
add_dependencies(${target} ${target_dependencies})
|
|
|
|
add_dependencies(${target}-stripped ${target_dependencies})
|
|
|
|
endif()
|
2017-12-01 05:48:26 +08:00
|
|
|
endfunction()
|
|
|
|
|
2014-02-10 17:05:11 +08:00
|
|
|
macro(add_llvm_library name)
|
2015-04-17 00:56:18 +08:00
|
|
|
cmake_parse_arguments(ARG
|
2018-12-21 06:04:08 +08:00
|
|
|
"SHARED;BUILDTREE_ONLY;MODULE"
|
2015-04-17 00:56:18 +08:00
|
|
|
""
|
|
|
|
""
|
|
|
|
${ARGN})
|
2018-12-21 06:04:08 +08:00
|
|
|
if(ARG_MODULE)
|
|
|
|
llvm_add_library(${name} MODULE ${ARG_UNPARSED_ARGUMENTS})
|
|
|
|
elseif( BUILD_SHARED_LIBS OR ARG_SHARED )
|
2016-09-10 03:45:34 +08:00
|
|
|
llvm_add_library(${name} SHARED ${ARG_UNPARSED_ARGUMENTS})
|
2014-02-10 17:05:11 +08:00
|
|
|
else()
|
2016-09-10 03:45:34 +08:00
|
|
|
llvm_add_library(${name} ${ARG_UNPARSED_ARGUMENTS})
|
2014-02-10 17:05:11 +08:00
|
|
|
endif()
|
2016-09-10 03:45:34 +08:00
|
|
|
|
|
|
|
# Libraries that are meant to only be exposed via the build tree only are
|
|
|
|
# never installed and are only exported as a target in the special build tree
|
|
|
|
# config file.
|
2018-12-21 06:04:08 +08:00
|
|
|
if (NOT ARG_BUILDTREE_ONLY AND NOT ARG_MODULE)
|
2015-06-30 02:45:56 +08:00
|
|
|
set_property( GLOBAL APPEND PROPERTY LLVM_LIBS ${name} )
|
2019-03-05 08:38:32 +08:00
|
|
|
set(in_llvm_libs YES)
|
2015-06-30 02:45:56 +08:00
|
|
|
endif()
|
2014-02-10 17:05:11 +08:00
|
|
|
|
2018-12-21 06:36:02 +08:00
|
|
|
if (ARG_MODULE AND NOT TARGET ${name})
|
|
|
|
# Add empty "phony" target
|
|
|
|
add_custom_target(${name})
|
|
|
|
elseif( EXCLUDE_FROM_ALL )
|
2011-04-29 10:12:06 +08:00
|
|
|
set_target_properties( ${name} PROPERTIES EXCLUDE_FROM_ALL ON)
|
2016-09-10 03:45:34 +08:00
|
|
|
elseif(ARG_BUILDTREE_ONLY)
|
|
|
|
set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS_BUILDTREE_ONLY ${name})
|
|
|
|
else()
|
2016-09-17 02:50:39 +08:00
|
|
|
if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY OR ${name} STREQUAL "LTO" OR
|
2019-03-06 04:45:17 +08:00
|
|
|
${name} STREQUAL "Remarks" OR
|
2016-09-17 02:50:39 +08:00
|
|
|
(LLVM_LINK_LLVM_DYLIB AND ${name} STREQUAL "LLVM"))
|
2015-12-17 01:07:15 +08:00
|
|
|
set(install_dir lib${LLVM_LIBDIR_SUFFIX})
|
2018-12-21 06:04:08 +08:00
|
|
|
if(ARG_MODULE OR ARG_SHARED OR BUILD_SHARED_LIBS)
|
2015-12-17 01:07:15 +08:00
|
|
|
if(WIN32 OR CYGWIN OR MINGW)
|
2015-04-17 02:08:33 +08:00
|
|
|
set(install_type RUNTIME)
|
2015-12-17 01:07:15 +08:00
|
|
|
set(install_dir bin)
|
2015-04-17 01:40:51 +08:00
|
|
|
else()
|
2015-04-17 02:08:33 +08:00
|
|
|
set(install_type LIBRARY)
|
2015-04-17 01:40:51 +08:00
|
|
|
endif()
|
2015-04-17 00:56:18 +08:00
|
|
|
else()
|
2015-04-17 02:08:33 +08:00
|
|
|
set(install_type ARCHIVE)
|
2015-04-17 00:56:18 +08:00
|
|
|
endif()
|
2015-02-19 03:25:47 +08:00
|
|
|
|
2018-12-22 11:43:08 +08:00
|
|
|
if (ARG_MODULE)
|
|
|
|
set(install_type LIBRARY)
|
|
|
|
endif()
|
|
|
|
|
2019-03-27 06:16:53 +08:00
|
|
|
set(export_to_llvmexports)
|
2016-11-05 05:55:23 +08:00
|
|
|
if(${name} IN_LIST LLVM_DISTRIBUTION_COMPONENTS OR
|
2019-03-05 08:38:32 +08:00
|
|
|
(in_llvm_libs AND "llvm-libraries" IN_LIST LLVM_DISTRIBUTION_COMPONENTS) OR
|
2016-11-05 05:55:23 +08:00
|
|
|
NOT LLVM_DISTRIBUTION_COMPONENTS)
|
|
|
|
set(export_to_llvmexports EXPORT LLVMExports)
|
2016-11-08 13:02:18 +08:00
|
|
|
set_property(GLOBAL PROPERTY LLVM_HAS_EXPORTS True)
|
2016-11-05 05:55:23 +08:00
|
|
|
endif()
|
|
|
|
|
2015-04-17 02:08:33 +08:00
|
|
|
install(TARGETS ${name}
|
2016-11-05 05:55:23 +08:00
|
|
|
${export_to_llvmexports}
|
|
|
|
${install_type} DESTINATION ${install_dir}
|
|
|
|
COMPONENT ${name})
|
2015-04-17 02:08:33 +08:00
|
|
|
|
2018-10-16 05:20:02 +08:00
|
|
|
if (NOT LLVM_ENABLE_IDE)
|
2017-12-01 05:48:26 +08:00
|
|
|
add_llvm_install_targets(install-${name}
|
|
|
|
DEPENDS ${name}
|
|
|
|
COMPONENT ${name})
|
2015-02-19 03:25:47 +08:00
|
|
|
endif()
|
2013-08-24 08:20:36 +08:00
|
|
|
endif()
|
2014-02-10 00:36:16 +08:00
|
|
|
set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS ${name})
|
2011-04-29 10:12:06 +08:00
|
|
|
endif()
|
2018-12-21 06:04:08 +08:00
|
|
|
if (ARG_MODULE)
|
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Loadable modules")
|
2018-12-21 06:36:02 +08:00
|
|
|
else()
|
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Libraries")
|
2018-12-21 06:04:08 +08:00
|
|
|
endif()
|
|
|
|
endmacro(add_llvm_library name)
|
2009-11-10 10:45:37 +08:00
|
|
|
|
2008-09-22 09:08:49 +08:00
|
|
|
macro(add_llvm_executable name)
|
2018-11-17 02:10:36 +08:00
|
|
|
cmake_parse_arguments(ARG
|
|
|
|
"DISABLE_LLVM_LINK_LLVM_DYLIB;IGNORE_EXTERNALIZE_DEBUGINFO;NO_INSTALL_RPATH"
|
|
|
|
"ENTITLEMENTS"
|
|
|
|
"DEPENDS"
|
|
|
|
${ARGN})
|
|
|
|
|
Enable linking tools, shared libraries against libLLVM
Summary:
Three closely related changes, to have a mode in which we link all
executables and shared libraries against libLLVM.
1. Add a new LLVM_LINK_LLVM_DYLIB cmake option, which, when ON, will link
executables and shared libraries against libLLVM. For this to work, it
is necessary to also set LLVM_BUILD_LLVM_DYLIB and LLVM_DYLIB_EXPORT_ALL.
It is not strictly necessary to set LLVM_DISABLE_LLVM_DYLIB_ATEXIT, but
we also default to OFF in this mode, or tools tend to misbehave (e.g.
stdout may not flush on exit when output is buffered.)
llvm-config and Tablegen do not use libLLVM, as they are dependencies of
libLLVM.
2. Modify llvm-go to take a new flag, "linkmode=component-libs|dylib".
Depending on which one is passed (default is component-libs), we link
with the individual libraries or libLLVM respectively. We pass in dylib
when LLVM_LINK_LLVM_DYLIB is ON.
3. Fix LLVM_DYLIB_EXPORT_ALL on Linux, and expand the symbols exported to
actually export all. Don't strip leading underscore from symbols on Linux,
and make sure we get all exported symbols and weak-with-default symbols
("W" in nm output). Without these changes, passes won't load because
the "Annotate..." symbols defined in lib/Support/Valigrind.cpp are not
found.
Testing:
- Ran default build ("ninja") with LLVM, clang, compiler-rt, llgo, lldb.
- Ran "check", "check-clang", "check-tsan", "check-libgo" targets. I've
never had much success with LLDB tests, and llgoi is currently broken
so check-llgo fails for an unrelated reason.
- Ran "lldb" to ensure it loads.
Reviewers: chandlerc, beanz, pcc, rnk
Subscribers: rnk, chapuni, sylvestre.ledru, llvm-commits
Differential Revision: http://reviews.llvm.org/D12488
llvm-svn: 246527
2015-09-01 11:14:31 +08:00
|
|
|
llvm_process_sources( ALL_FILES ${ARG_UNPARSED_ARGUMENTS} )
|
2015-06-12 23:58:29 +08:00
|
|
|
|
2016-11-17 12:36:59 +08:00
|
|
|
list(APPEND LLVM_COMMON_DEPENDS ${ARG_DEPENDS})
|
|
|
|
|
2015-08-28 00:10:47 +08:00
|
|
|
# Generate objlib
|
|
|
|
if(LLVM_ENABLE_OBJLIB)
|
|
|
|
# Generate an obj library for both targets.
|
|
|
|
set(obj_name "obj.${name}")
|
|
|
|
add_library(${obj_name} OBJECT EXCLUDE_FROM_ALL
|
|
|
|
${ALL_FILES}
|
|
|
|
)
|
|
|
|
llvm_update_compile_flags(${obj_name})
|
|
|
|
set(ALL_FILES "$<TARGET_OBJECTS:${obj_name}>")
|
|
|
|
|
|
|
|
set_target_properties(${obj_name} PROPERTIES FOLDER "Object Libraries")
|
|
|
|
endif()
|
|
|
|
|
2015-08-28 08:36:58 +08:00
|
|
|
add_windows_version_resource_file(ALL_FILES ${ALL_FILES})
|
|
|
|
|
2015-09-11 01:18:51 +08:00
|
|
|
if(XCODE)
|
|
|
|
# Note: the dummy.cpp source file provides no definitions. However,
|
|
|
|
# it forces Xcode to properly link the static library.
|
2015-09-11 01:55:02 +08:00
|
|
|
list(APPEND ALL_FILES "${LLVM_MAIN_SRC_DIR}/cmake/dummy.cpp")
|
2015-09-11 01:18:51 +08:00
|
|
|
endif()
|
2017-09-16 06:10:46 +08:00
|
|
|
|
2009-11-23 08:21:43 +08:00
|
|
|
if( EXCLUDE_FROM_ALL )
|
|
|
|
add_executable(${name} EXCLUDE_FROM_ALL ${ALL_FILES})
|
|
|
|
else()
|
|
|
|
add_executable(${name} ${ALL_FILES})
|
|
|
|
endif()
|
2015-06-12 23:58:29 +08:00
|
|
|
|
2016-11-19 09:32:09 +08:00
|
|
|
setup_dependency_debugging(${name} ${LLVM_COMMON_DEPENDS})
|
|
|
|
|
2016-11-03 14:58:16 +08:00
|
|
|
if(NOT ARG_NO_INSTALL_RPATH)
|
|
|
|
llvm_setup_rpath(${name})
|
|
|
|
endif()
|
2016-11-02 01:44:58 +08:00
|
|
|
|
2015-06-12 23:58:29 +08:00
|
|
|
if(DEFINED windows_resource_file)
|
|
|
|
set_windows_version_resource_properties(${name} ${windows_resource_file})
|
|
|
|
endif()
|
|
|
|
|
2015-09-08 15:42:06 +08:00
|
|
|
# $<TARGET_OBJECTS> doesn't require compile flags.
|
|
|
|
if(NOT LLVM_ENABLE_OBJLIB)
|
|
|
|
llvm_update_compile_flags(${name})
|
|
|
|
endif()
|
2014-11-02 20:14:22 +08:00
|
|
|
add_link_opts( ${name} )
|
2013-12-29 07:31:44 +08:00
|
|
|
|
2014-09-27 06:40:15 +08:00
|
|
|
# Do not add -Dname_EXPORTS to the command-line when building files in this
|
|
|
|
# target. Doing so is actively harmful for the modules build because it
|
|
|
|
# creates extra module variants, and not useful because we don't use these
|
|
|
|
# macros.
|
|
|
|
set_target_properties( ${name} PROPERTIES DEFINE_SYMBOL "" )
|
|
|
|
|
2013-12-29 07:31:44 +08:00
|
|
|
if (LLVM_EXPORTED_SYMBOL_FILE)
|
|
|
|
add_llvm_symbol_exports( ${name} ${LLVM_EXPORTED_SYMBOL_FILE} )
|
|
|
|
endif(LLVM_EXPORTED_SYMBOL_FILE)
|
|
|
|
|
Enable linking tools, shared libraries against libLLVM
Summary:
Three closely related changes, to have a mode in which we link all
executables and shared libraries against libLLVM.
1. Add a new LLVM_LINK_LLVM_DYLIB cmake option, which, when ON, will link
executables and shared libraries against libLLVM. For this to work, it
is necessary to also set LLVM_BUILD_LLVM_DYLIB and LLVM_DYLIB_EXPORT_ALL.
It is not strictly necessary to set LLVM_DISABLE_LLVM_DYLIB_ATEXIT, but
we also default to OFF in this mode, or tools tend to misbehave (e.g.
stdout may not flush on exit when output is buffered.)
llvm-config and Tablegen do not use libLLVM, as they are dependencies of
libLLVM.
2. Modify llvm-go to take a new flag, "linkmode=component-libs|dylib".
Depending on which one is passed (default is component-libs), we link
with the individual libraries or libLLVM respectively. We pass in dylib
when LLVM_LINK_LLVM_DYLIB is ON.
3. Fix LLVM_DYLIB_EXPORT_ALL on Linux, and expand the symbols exported to
actually export all. Don't strip leading underscore from symbols on Linux,
and make sure we get all exported symbols and weak-with-default symbols
("W" in nm output). Without these changes, passes won't load because
the "Annotate..." symbols defined in lib/Support/Valigrind.cpp are not
found.
Testing:
- Ran default build ("ninja") with LLVM, clang, compiler-rt, llgo, lldb.
- Ran "check", "check-clang", "check-tsan", "check-libgo" targets. I've
never had much success with LLDB tests, and llgoi is currently broken
so check-llgo fails for an unrelated reason.
- Ran "lldb" to ensure it loads.
Reviewers: chandlerc, beanz, pcc, rnk
Subscribers: rnk, chapuni, sylvestre.ledru, llvm-commits
Differential Revision: http://reviews.llvm.org/D12488
llvm-svn: 246527
2015-09-01 11:14:31 +08:00
|
|
|
if (LLVM_LINK_LLVM_DYLIB AND NOT ARG_DISABLE_LLVM_LINK_LLVM_DYLIB)
|
2015-09-05 16:27:33 +08:00
|
|
|
set(USE_SHARED USE_SHARED)
|
Enable linking tools, shared libraries against libLLVM
Summary:
Three closely related changes, to have a mode in which we link all
executables and shared libraries against libLLVM.
1. Add a new LLVM_LINK_LLVM_DYLIB cmake option, which, when ON, will link
executables and shared libraries against libLLVM. For this to work, it
is necessary to also set LLVM_BUILD_LLVM_DYLIB and LLVM_DYLIB_EXPORT_ALL.
It is not strictly necessary to set LLVM_DISABLE_LLVM_DYLIB_ATEXIT, but
we also default to OFF in this mode, or tools tend to misbehave (e.g.
stdout may not flush on exit when output is buffered.)
llvm-config and Tablegen do not use libLLVM, as they are dependencies of
libLLVM.
2. Modify llvm-go to take a new flag, "linkmode=component-libs|dylib".
Depending on which one is passed (default is component-libs), we link
with the individual libraries or libLLVM respectively. We pass in dylib
when LLVM_LINK_LLVM_DYLIB is ON.
3. Fix LLVM_DYLIB_EXPORT_ALL on Linux, and expand the symbols exported to
actually export all. Don't strip leading underscore from symbols on Linux,
and make sure we get all exported symbols and weak-with-default symbols
("W" in nm output). Without these changes, passes won't load because
the "Annotate..." symbols defined in lib/Support/Valigrind.cpp are not
found.
Testing:
- Ran default build ("ninja") with LLVM, clang, compiler-rt, llgo, lldb.
- Ran "check", "check-clang", "check-tsan", "check-libgo" targets. I've
never had much success with LLDB tests, and llgoi is currently broken
so check-llgo fails for an unrelated reason.
- Ran "lldb" to ensure it loads.
Reviewers: chandlerc, beanz, pcc, rnk
Subscribers: rnk, chapuni, sylvestre.ledru, llvm-commits
Differential Revision: http://reviews.llvm.org/D12488
llvm-svn: 246527
2015-09-01 11:14:31 +08:00
|
|
|
endif()
|
2015-09-05 16:27:33 +08:00
|
|
|
|
|
|
|
set(EXCLUDE_FROM_ALL OFF)
|
2015-09-30 23:20:51 +08:00
|
|
|
set_output_directory(${name} BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR} LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR})
|
2015-09-05 16:27:33 +08:00
|
|
|
llvm_config( ${name} ${USE_SHARED} ${LLVM_LINK_COMPONENTS} )
|
2009-08-14 12:38:57 +08:00
|
|
|
if( LLVM_COMMON_DEPENDS )
|
|
|
|
add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} )
|
|
|
|
endif( LLVM_COMMON_DEPENDS )
|
2015-12-04 02:45:39 +08:00
|
|
|
|
2015-12-09 05:51:48 +08:00
|
|
|
if(NOT ARG_IGNORE_EXTERNALIZE_DEBUGINFO)
|
|
|
|
llvm_externalize_debuginfo(${name})
|
|
|
|
endif()
|
2017-02-10 09:59:20 +08:00
|
|
|
if (LLVM_PTHREAD_LIB)
|
2016-06-22 03:34:40 +08:00
|
|
|
# libpthreads overrides some standard library symbols, so main
|
|
|
|
# executable must be linked with it in order to provide consistent
|
|
|
|
# API for all shared libaries loaded by this executable.
|
[CMake] Use PRIVATE in target_link_libraries for executables
We currently use target_link_libraries without an explicit scope
specifier (INTERFACE, PRIVATE or PUBLIC) when linking executables.
Dependencies added in this way apply to both the target and its
dependencies, i.e. they become part of the executable's link interface
and are transitive.
Transitive dependencies generally don't make sense for executables,
since you wouldn't normally be linking against an executable. This also
causes issues for generating install export files when using
LLVM_DISTRIBUTION_COMPONENTS. For example, clang has a lot of LLVM
library dependencies, which are currently added as interface
dependencies. If clang is in the distribution components but the LLVM
libraries it depends on aren't (which is a perfectly legitimate use case
if the LLVM libraries are being built static and there are therefore no
run-time dependencies on them), CMake will complain about the LLVM
libraries not being in export set when attempting to generate the
install export file for clang. This is reasonable behavior on CMake's
part, and the right thing is for LLVM's build system to explicitly use
PRIVATE dependencies for executables.
Unfortunately, CMake doesn't allow you to mix and match the keyword and
non-keyword target_link_libraries signatures for a single target; i.e.,
if a single call to target_link_libraries for a particular target uses
one of the INTERFACE, PRIVATE, or PUBLIC keywords, all other calls must
also be updated to use those keywords. This means we must do this change
in a single shot. I also fully expect to have missed some instances; I
tested by enabling all the projects in the monorepo (except dragonegg),
and configuring both with and without shared libraries, on both Darwin
and Linux, but I'm planning to rely on the buildbots for other
configurations (since it should be pretty easy to fix those).
Even after this change, we still have a lot of target_link_libraries
calls that don't specify a scope keyword, mostly for shared libraries.
I'm thinking about addressing those in a follow-up, but that's a
separate change IMO.
Differential Revision: https://reviews.llvm.org/D40823
llvm-svn: 319840
2017-12-06 05:49:56 +08:00
|
|
|
target_link_libraries(${name} PRIVATE ${LLVM_PTHREAD_LIB})
|
2016-06-22 03:34:40 +08:00
|
|
|
endif()
|
2018-07-11 01:32:48 +08:00
|
|
|
|
2018-12-14 02:51:19 +08:00
|
|
|
llvm_codesign(${name} ENTITLEMENTS ${ARG_ENTITLEMENTS})
|
2008-09-22 09:08:49 +08:00
|
|
|
endmacro(add_llvm_executable name)
|
|
|
|
|
2015-03-19 04:09:13 +08:00
|
|
|
function(export_executable_symbols target)
|
2016-05-26 19:16:43 +08:00
|
|
|
if (LLVM_EXPORTED_SYMBOL_FILE)
|
|
|
|
# The symbol file should contain the symbols we want the executable to
|
|
|
|
# export
|
|
|
|
set_target_properties(${target} PROPERTIES ENABLE_EXPORTS 1)
|
|
|
|
elseif (LLVM_EXPORT_SYMBOLS_FOR_PLUGINS)
|
|
|
|
# Extract the symbols to export from the static libraries that the
|
|
|
|
# executable links against.
|
|
|
|
set_target_properties(${target} PROPERTIES ENABLE_EXPORTS 1)
|
|
|
|
set(exported_symbol_file ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${target}.symbols)
|
|
|
|
# We need to consider not just the direct link dependencies, but also the
|
|
|
|
# transitive link dependencies. Do this by starting with the set of direct
|
|
|
|
# dependencies, then the dependencies of those dependencies, and so on.
|
|
|
|
get_target_property(new_libs ${target} LINK_LIBRARIES)
|
|
|
|
set(link_libs ${new_libs})
|
|
|
|
while(NOT "${new_libs}" STREQUAL "")
|
|
|
|
foreach(lib ${new_libs})
|
2016-07-05 21:16:54 +08:00
|
|
|
if(TARGET ${lib})
|
|
|
|
get_target_property(lib_type ${lib} TYPE)
|
|
|
|
if("${lib_type}" STREQUAL "STATIC_LIBRARY")
|
|
|
|
list(APPEND static_libs ${lib})
|
|
|
|
else()
|
|
|
|
list(APPEND other_libs ${lib})
|
2016-05-26 19:16:43 +08:00
|
|
|
endif()
|
2016-07-05 21:16:54 +08:00
|
|
|
get_target_property(transitive_libs ${lib} INTERFACE_LINK_LIBRARIES)
|
|
|
|
foreach(transitive_lib ${transitive_libs})
|
|
|
|
list(FIND link_libs ${transitive_lib} idx)
|
|
|
|
if(TARGET ${transitive_lib} AND idx EQUAL -1)
|
|
|
|
list(APPEND newer_libs ${transitive_lib})
|
|
|
|
list(APPEND link_libs ${transitive_lib})
|
|
|
|
endif()
|
|
|
|
endforeach(transitive_lib)
|
|
|
|
endif()
|
2016-05-26 19:16:43 +08:00
|
|
|
endforeach(lib)
|
|
|
|
set(new_libs ${newer_libs})
|
|
|
|
set(newer_libs "")
|
|
|
|
endwhile()
|
|
|
|
if (MSVC)
|
|
|
|
set(mangling microsoft)
|
|
|
|
else()
|
|
|
|
set(mangling itanium)
|
|
|
|
endif()
|
|
|
|
add_custom_command(OUTPUT ${exported_symbol_file}
|
|
|
|
COMMAND ${PYTHON_EXECUTABLE} ${LLVM_MAIN_SRC_DIR}/utils/extract_symbols.py --mangling=${mangling} ${static_libs} -o ${exported_symbol_file}
|
|
|
|
WORKING_DIRECTORY ${LLVM_LIBRARY_OUTPUT_INTDIR}
|
|
|
|
DEPENDS ${LLVM_MAIN_SRC_DIR}/utils/extract_symbols.py ${static_libs}
|
|
|
|
VERBATIM
|
|
|
|
COMMENT "Generating export list for ${target}")
|
|
|
|
add_llvm_symbol_exports( ${target} ${exported_symbol_file} )
|
|
|
|
# If something links against this executable then we want a
|
|
|
|
# transitive link against only the libraries whose symbols
|
|
|
|
# we aren't exporting.
|
|
|
|
set_target_properties(${target} PROPERTIES INTERFACE_LINK_LIBRARIES "${other_libs}")
|
|
|
|
# The default import library suffix that cmake uses for cygwin/mingw is
|
|
|
|
# ".dll.a", but for clang.exe that causes a collision with libclang.dll,
|
|
|
|
# where the import libraries of both get named libclang.dll.a. Use a suffix
|
|
|
|
# of ".exe.a" to avoid this.
|
|
|
|
if(CYGWIN OR MINGW)
|
|
|
|
set_target_properties(${target} PROPERTIES IMPORT_SUFFIX ".exe.a")
|
|
|
|
endif()
|
|
|
|
elseif(NOT (WIN32 OR CYGWIN))
|
|
|
|
# On Windows auto-exporting everything doesn't work because of the limit on
|
|
|
|
# the size of the exported symbol table, but on other platforms we can do
|
|
|
|
# it without any trouble.
|
2015-03-19 04:09:13 +08:00
|
|
|
set_target_properties(${target} PROPERTIES ENABLE_EXPORTS 1)
|
2015-11-24 08:58:58 +08:00
|
|
|
if (APPLE)
|
2015-12-04 06:51:08 +08:00
|
|
|
set_property(TARGET ${target} APPEND_STRING PROPERTY
|
2015-12-04 06:55:36 +08:00
|
|
|
LINK_FLAGS " -rdynamic")
|
2015-11-24 08:58:58 +08:00
|
|
|
endif()
|
2015-03-19 04:09:13 +08:00
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
2015-09-11 01:23:32 +08:00
|
|
|
if(NOT LLVM_TOOLCHAIN_TOOLS)
|
|
|
|
set (LLVM_TOOLCHAIN_TOOLS
|
|
|
|
llvm-ar
|
2015-09-15 07:09:06 +08:00
|
|
|
llvm-ranlib
|
|
|
|
llvm-lib
|
2015-09-11 01:23:32 +08:00
|
|
|
llvm-objdump
|
2018-08-01 15:51:55 +08:00
|
|
|
llvm-rc
|
2015-09-11 01:23:32 +08:00
|
|
|
)
|
|
|
|
endif()
|
2013-08-24 08:20:36 +08:00
|
|
|
|
2008-09-22 09:08:49 +08:00
|
|
|
macro(add_llvm_tool name)
|
2009-11-23 08:32:42 +08:00
|
|
|
if( NOT LLVM_BUILD_TOOLS )
|
2009-11-23 08:21:43 +08:00
|
|
|
set(EXCLUDE_FROM_ALL ON)
|
|
|
|
endif()
|
2010-09-26 04:25:25 +08:00
|
|
|
add_llvm_executable(${name} ${ARGN})
|
2013-08-24 08:20:36 +08:00
|
|
|
|
2016-09-28 01:47:24 +08:00
|
|
|
if ( ${name} IN_LIST LLVM_TOOLCHAIN_TOOLS OR NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
|
2013-08-24 08:20:36 +08:00
|
|
|
if( LLVM_BUILD_TOOLS )
|
2019-03-27 06:16:53 +08:00
|
|
|
set(export_to_llvmexports)
|
2016-11-05 05:55:23 +08:00
|
|
|
if(${name} IN_LIST LLVM_DISTRIBUTION_COMPONENTS OR
|
|
|
|
NOT LLVM_DISTRIBUTION_COMPONENTS)
|
|
|
|
set(export_to_llvmexports EXPORT LLVMExports)
|
2016-11-08 13:02:18 +08:00
|
|
|
set_property(GLOBAL PROPERTY LLVM_HAS_EXPORTS True)
|
2016-11-05 05:55:23 +08:00
|
|
|
endif()
|
|
|
|
|
2014-02-10 00:36:03 +08:00
|
|
|
install(TARGETS ${name}
|
2016-11-05 05:55:23 +08:00
|
|
|
${export_to_llvmexports}
|
2016-06-09 05:19:26 +08:00
|
|
|
RUNTIME DESTINATION ${LLVM_TOOLS_INSTALL_DIR}
|
2015-02-19 03:25:47 +08:00
|
|
|
COMPONENT ${name})
|
|
|
|
|
2018-10-16 05:20:02 +08:00
|
|
|
if (NOT LLVM_ENABLE_IDE)
|
2017-12-01 05:48:26 +08:00
|
|
|
add_llvm_install_targets(install-${name}
|
|
|
|
DEPENDS ${name}
|
|
|
|
COMPONENT ${name})
|
2015-02-19 03:25:47 +08:00
|
|
|
endif()
|
2013-08-24 08:20:36 +08:00
|
|
|
endif()
|
2009-11-23 08:32:42 +08:00
|
|
|
endif()
|
2014-02-10 00:36:16 +08:00
|
|
|
if( LLVM_BUILD_TOOLS )
|
|
|
|
set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS ${name})
|
|
|
|
endif()
|
2011-02-21 06:06:10 +08:00
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Tools")
|
2008-09-22 09:08:49 +08:00
|
|
|
endmacro(add_llvm_tool name)
|
|
|
|
|
|
|
|
|
|
|
|
macro(add_llvm_example name)
|
2009-11-23 08:32:42 +08:00
|
|
|
if( NOT LLVM_BUILD_EXAMPLES )
|
2009-11-23 08:21:43 +08:00
|
|
|
set(EXCLUDE_FROM_ALL ON)
|
|
|
|
endif()
|
2010-09-26 04:25:25 +08:00
|
|
|
add_llvm_executable(${name} ${ARGN})
|
2009-11-23 08:32:42 +08:00
|
|
|
if( LLVM_BUILD_EXAMPLES )
|
|
|
|
install(TARGETS ${name} RUNTIME DESTINATION examples)
|
|
|
|
endif()
|
2011-02-21 06:06:10 +08:00
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Examples")
|
2008-09-22 09:08:49 +08:00
|
|
|
endmacro(add_llvm_example name)
|
2008-09-26 12:40:32 +08:00
|
|
|
|
2016-07-10 10:43:47 +08:00
|
|
|
# This is a macro that is used to create targets for executables that are needed
|
|
|
|
# for development, but that are not intended to be installed by default.
|
2011-02-21 06:06:10 +08:00
|
|
|
macro(add_llvm_utility name)
|
2016-07-10 10:43:47 +08:00
|
|
|
if ( NOT LLVM_BUILD_UTILS )
|
|
|
|
set(EXCLUDE_FROM_ALL ON)
|
|
|
|
endif()
|
|
|
|
|
2015-09-05 16:27:33 +08:00
|
|
|
add_llvm_executable(${name} DISABLE_LLVM_LINK_LLVM_DYLIB ${ARGN})
|
2011-02-21 06:06:10 +08:00
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Utils")
|
2019-02-01 21:08:09 +08:00
|
|
|
if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
|
|
|
|
if (LLVM_INSTALL_UTILS AND LLVM_BUILD_UTILS)
|
2019-03-27 06:16:53 +08:00
|
|
|
set(export_to_llvmexports)
|
2019-02-01 21:08:09 +08:00
|
|
|
if (${name} IN_LIST LLVM_DISTRIBUTION_COMPONENTS OR
|
|
|
|
NOT LLVM_DISTRIBUTION_COMPONENTS)
|
|
|
|
set(export_to_llvmexports EXPORT LLVMExports)
|
|
|
|
set_property(GLOBAL PROPERTY LLVM_HAS_EXPORTS True)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
install(TARGETS ${name}
|
|
|
|
${export_to_llvmexports}
|
|
|
|
RUNTIME DESTINATION ${LLVM_UTILS_INSTALL_DIR}
|
|
|
|
COMPONENT ${name})
|
|
|
|
|
|
|
|
if (NOT LLVM_ENABLE_IDE)
|
|
|
|
add_llvm_install_targets(install-${name}
|
|
|
|
DEPENDS ${name}
|
|
|
|
COMPONENT ${name})
|
|
|
|
endif()
|
|
|
|
set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS ${name})
|
|
|
|
elseif(LLVM_BUILD_UTILS)
|
|
|
|
set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS_BUILDTREE_ONLY ${name})
|
2015-03-28 00:53:06 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
2011-02-21 06:06:10 +08:00
|
|
|
endmacro(add_llvm_utility name)
|
|
|
|
|
2017-08-31 08:36:33 +08:00
|
|
|
macro(add_llvm_fuzzer name)
|
2017-09-02 01:02:22 +08:00
|
|
|
cmake_parse_arguments(ARG "" "DUMMY_MAIN" "" ${ARGN})
|
2017-10-13 05:58:41 +08:00
|
|
|
if( LLVM_LIB_FUZZING_ENGINE )
|
|
|
|
set(LLVM_OPTIONAL_SOURCES ${ARG_DUMMY_MAIN})
|
|
|
|
add_llvm_executable(${name} ${ARG_UNPARSED_ARGUMENTS})
|
2017-12-07 07:32:46 +08:00
|
|
|
target_link_libraries(${name} PRIVATE ${LLVM_LIB_FUZZING_ENGINE})
|
2017-10-13 05:58:41 +08:00
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Fuzzers")
|
|
|
|
elseif( LLVM_USE_SANITIZE_COVERAGE )
|
2017-08-31 08:36:33 +08:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=fuzzer")
|
2017-09-03 07:43:04 +08:00
|
|
|
set(LLVM_OPTIONAL_SOURCES ${ARG_DUMMY_MAIN})
|
2017-09-02 01:02:22 +08:00
|
|
|
add_llvm_executable(${name} ${ARG_UNPARSED_ARGUMENTS})
|
2017-08-31 08:36:33 +08:00
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Fuzzers")
|
2017-09-02 01:02:22 +08:00
|
|
|
elseif( ARG_DUMMY_MAIN )
|
|
|
|
add_llvm_executable(${name} ${ARG_DUMMY_MAIN} ${ARG_UNPARSED_ARGUMENTS})
|
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Fuzzers")
|
2017-10-13 05:58:41 +08:00
|
|
|
endif()
|
2017-08-31 08:36:33 +08:00
|
|
|
endmacro()
|
2011-02-21 06:06:10 +08:00
|
|
|
|
2008-09-26 12:40:32 +08:00
|
|
|
macro(add_llvm_target target_name)
|
2011-07-26 04:17:01 +08:00
|
|
|
include_directories(BEFORE
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR})
|
2014-03-05 01:05:28 +08:00
|
|
|
add_llvm_library(LLVM${target_name} ${ARGN})
|
2011-02-20 10:55:27 +08:00
|
|
|
set( CURRENT_LLVM_TARGET LLVM${target_name} )
|
2008-09-26 12:40:32 +08:00
|
|
|
endmacro(add_llvm_target)
|
2012-04-27 03:43:35 +08:00
|
|
|
|
2015-07-21 04:36:06 +08:00
|
|
|
function(canonicalize_tool_name name output)
|
|
|
|
string(REPLACE "${CMAKE_CURRENT_SOURCE_DIR}/" "" nameStrip ${name})
|
|
|
|
string(REPLACE "-" "_" nameUNDERSCORE ${nameStrip})
|
|
|
|
string(TOUPPER ${nameUNDERSCORE} nameUPPER)
|
|
|
|
set(${output} "${nameUPPER}" PARENT_SCOPE)
|
|
|
|
endfunction(canonicalize_tool_name)
|
|
|
|
|
2015-10-21 00:42:58 +08:00
|
|
|
# Custom add_subdirectory wrapper
|
2016-04-29 21:03:40 +08:00
|
|
|
# Takes in a project name (i.e. LLVM), the subdirectory name, and an optional
|
|
|
|
# path if it differs from the name.
|
2018-12-04 04:05:11 +08:00
|
|
|
function(add_llvm_subdirectory project type name)
|
2012-10-05 22:10:17 +08:00
|
|
|
set(add_llvm_external_dir "${ARGN}")
|
|
|
|
if("${add_llvm_external_dir}" STREQUAL "")
|
|
|
|
set(add_llvm_external_dir ${name})
|
|
|
|
endif()
|
2015-07-21 04:36:06 +08:00
|
|
|
canonicalize_tool_name(${name} nameUPPER)
|
2018-12-04 04:05:11 +08:00
|
|
|
set(canonical_full_name ${project}_${type}_${nameUPPER})
|
|
|
|
get_property(already_processed GLOBAL PROPERTY ${canonical_full_name}_PROCESSED)
|
|
|
|
if(already_processed)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
set_property(GLOBAL PROPERTY ${canonical_full_name}_PROCESSED YES)
|
|
|
|
|
2015-08-22 12:53:52 +08:00
|
|
|
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${add_llvm_external_dir}/CMakeLists.txt)
|
|
|
|
# Treat it as in-tree subproject.
|
2018-12-04 04:05:11 +08:00
|
|
|
option(${canonical_full_name}_BUILD
|
2015-10-21 00:42:58 +08:00
|
|
|
"Whether to build ${name} as part of ${project}" On)
|
|
|
|
mark_as_advanced(${project}_${type}_${name}_BUILD)
|
2018-12-04 04:05:11 +08:00
|
|
|
if(${canonical_full_name}_BUILD)
|
2015-08-22 12:53:52 +08:00
|
|
|
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/${add_llvm_external_dir} ${add_llvm_external_dir})
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
set(LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR
|
|
|
|
"${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR}"
|
|
|
|
CACHE PATH "Path to ${name} source directory")
|
2018-12-04 04:05:11 +08:00
|
|
|
set(${canonical_full_name}_BUILD_DEFAULT ON)
|
2015-08-22 12:53:52 +08:00
|
|
|
if(NOT LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR OR NOT EXISTS ${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR})
|
2018-12-04 04:05:11 +08:00
|
|
|
set(${canonical_full_name}_BUILD_DEFAULT OFF)
|
2015-08-22 12:53:52 +08:00
|
|
|
endif()
|
|
|
|
if("${LLVM_EXTERNAL_${nameUPPER}_BUILD}" STREQUAL "OFF")
|
2018-12-04 04:05:11 +08:00
|
|
|
set(${canonical_full_name}_BUILD_DEFAULT OFF)
|
2015-08-22 12:53:52 +08:00
|
|
|
endif()
|
2018-12-04 04:05:11 +08:00
|
|
|
option(${canonical_full_name}_BUILD
|
2015-08-22 12:53:52 +08:00
|
|
|
"Whether to build ${name} as part of LLVM"
|
2018-12-04 04:05:11 +08:00
|
|
|
${${canonical_full_name}_BUILD_DEFAULT})
|
|
|
|
if (${canonical_full_name}_BUILD)
|
2015-08-22 13:11:02 +08:00
|
|
|
if(EXISTS ${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR})
|
|
|
|
add_subdirectory(${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR} ${add_llvm_external_dir})
|
|
|
|
elseif(NOT "${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR}" STREQUAL "")
|
|
|
|
message(WARNING "Nonexistent directory for ${name}: ${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR}")
|
|
|
|
endif()
|
2012-04-27 03:43:35 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
2018-12-04 04:05:11 +08:00
|
|
|
endfunction()
|
2015-10-21 00:42:58 +08:00
|
|
|
|
|
|
|
# Add external project that may want to be built as part of llvm such as Clang,
|
|
|
|
# lld, and Polly. This adds two options. One for the source directory of the
|
|
|
|
# project, which defaults to ${CMAKE_CURRENT_SOURCE_DIR}/${name}. Another to
|
|
|
|
# enable or disable building it with everything else.
|
|
|
|
# Additional parameter can be specified as the name of directory.
|
|
|
|
macro(add_llvm_external_project name)
|
2015-10-22 16:31:46 +08:00
|
|
|
add_llvm_subdirectory(LLVM TOOL ${name} ${ARGN})
|
2015-10-21 00:42:58 +08:00
|
|
|
endmacro()
|
2012-06-21 13:16:58 +08:00
|
|
|
|
2013-08-22 03:13:44 +08:00
|
|
|
macro(add_llvm_tool_subdirectory name)
|
2015-07-21 04:36:06 +08:00
|
|
|
add_llvm_external_project(${name})
|
2013-08-22 03:13:44 +08:00
|
|
|
endmacro(add_llvm_tool_subdirectory)
|
|
|
|
|
2015-07-21 04:36:06 +08:00
|
|
|
function(get_project_name_from_src_var var output)
|
|
|
|
string(REGEX MATCH "LLVM_EXTERNAL_(.*)_SOURCE_DIR"
|
|
|
|
MACHED_TOOL "${var}")
|
|
|
|
if(MACHED_TOOL)
|
|
|
|
set(${output} ${CMAKE_MATCH_1} PARENT_SCOPE)
|
|
|
|
else()
|
|
|
|
set(${output} PARENT_SCOPE)
|
|
|
|
endif()
|
|
|
|
endfunction()
|
2013-08-22 03:13:44 +08:00
|
|
|
|
2015-10-21 00:42:58 +08:00
|
|
|
function(create_subdirectory_options project type)
|
2015-07-21 04:36:06 +08:00
|
|
|
file(GLOB sub-dirs "${CMAKE_CURRENT_SOURCE_DIR}/*")
|
|
|
|
foreach(dir ${sub-dirs})
|
|
|
|
if(IS_DIRECTORY "${dir}" AND EXISTS "${dir}/CMakeLists.txt")
|
|
|
|
canonicalize_tool_name(${dir} name)
|
2015-10-21 00:42:58 +08:00
|
|
|
option(${project}_${type}_${name}_BUILD
|
|
|
|
"Whether to build ${name} as part of ${project}" On)
|
|
|
|
mark_as_advanced(${project}_${type}_${name}_BUILD)
|
2015-07-21 04:36:06 +08:00
|
|
|
endif()
|
|
|
|
endforeach()
|
2015-10-21 00:42:58 +08:00
|
|
|
endfunction(create_subdirectory_options)
|
|
|
|
|
|
|
|
function(create_llvm_tool_options)
|
|
|
|
create_subdirectory_options(LLVM TOOL)
|
2015-07-21 04:36:06 +08:00
|
|
|
endfunction(create_llvm_tool_options)
|
|
|
|
|
2016-03-09 02:43:28 +08:00
|
|
|
function(llvm_add_implicit_projects project)
|
2013-08-22 03:13:44 +08:00
|
|
|
set(list_of_implicit_subdirs "")
|
|
|
|
file(GLOB sub-dirs "${CMAKE_CURRENT_SOURCE_DIR}/*")
|
|
|
|
foreach(dir ${sub-dirs})
|
2015-07-21 04:36:06 +08:00
|
|
|
if(IS_DIRECTORY "${dir}" AND EXISTS "${dir}/CMakeLists.txt")
|
|
|
|
canonicalize_tool_name(${dir} name)
|
2016-03-09 02:43:28 +08:00
|
|
|
if (${project}_TOOL_${name}_BUILD)
|
2013-08-22 03:13:44 +08:00
|
|
|
get_filename_component(fn "${dir}" NAME)
|
|
|
|
list(APPEND list_of_implicit_subdirs "${fn}")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
foreach(external_proj ${list_of_implicit_subdirs})
|
2016-03-09 02:43:28 +08:00
|
|
|
add_llvm_subdirectory(${project} TOOL "${external_proj}" ${ARGN})
|
2013-08-22 03:13:44 +08:00
|
|
|
endforeach()
|
2016-03-09 02:43:28 +08:00
|
|
|
endfunction(llvm_add_implicit_projects)
|
|
|
|
|
|
|
|
function(add_llvm_implicit_projects)
|
|
|
|
llvm_add_implicit_projects(LLVM)
|
2015-07-21 04:36:06 +08:00
|
|
|
endfunction(add_llvm_implicit_projects)
|
2013-08-22 03:13:44 +08:00
|
|
|
|
2012-12-19 20:30:33 +08:00
|
|
|
# Generic support for adding a unittest.
|
|
|
|
function(add_unittest test_suite test_name)
|
2012-06-21 13:16:58 +08:00
|
|
|
if( NOT LLVM_BUILD_TESTS )
|
|
|
|
set(EXCLUDE_FROM_ALL ON)
|
|
|
|
endif()
|
|
|
|
|
2017-10-28 05:12:28 +08:00
|
|
|
# Our current version of gtest does not properly recognize C++11 support
|
|
|
|
# with MSVC, so it falls back to tr1 / experimental classes. Since LLVM
|
|
|
|
# itself requires C++11, we can safely force it on unconditionally so that
|
Pull google/benchmark library to the LLVM tree
This patch pulls google/benchmark v1.4.1 into the LLVM tree so that any
project could use it for benchmark generation. A dummy benchmark is
added to `llvm/benchmarks/DummyYAML.cpp` to validate the correctness of
the build process.
The current version does not utilize LLVM LNT and LLVM CMake
infrastructure, but that might be sufficient for most users. Two
introduced CMake variables:
* `LLVM_INCLUDE_BENCHMARKS` (`ON` by default) generates benchmark
targets
* `LLVM_BUILD_BENCHMARKS` (`OFF` by default) adds generated
benchmark targets to the list of default LLVM targets (i.e. if `ON`
benchmarks will be built upon standard build invocation, e.g. `ninja` or
`make` with no specific targets)
List of modifications:
* `BENCHMARK_ENABLE_TESTING` is disabled
* `BENCHMARK_ENABLE_EXCEPTIONS` is disabled
* `BENCHMARK_ENABLE_INSTALL` is disabled
* `BENCHMARK_ENABLE_GTEST_TESTS` is disabled
* `BENCHMARK_DOWNLOAD_DEPENDENCIES` is disabled
Original discussion can be found here:
http://lists.llvm.org/pipermail/llvm-dev/2018-August/125023.html
Reviewed by: dberris, lebedev.ri
Subscribers: ilya-biryukov, ioeric, EricWF, lebedev.ri, srhines,
dschuff, mgorny, krytarowski, fedor.sergeev, mgrang, jfb, llvm-commits
Differential Revision: https://reviews.llvm.org/D50894
llvm-svn: 340809
2018-08-28 17:42:41 +08:00
|
|
|
# we don't have to fight with the buggy gtest check.
|
2017-10-28 05:12:28 +08:00
|
|
|
add_definitions(-DGTEST_LANG_CXX11=1)
|
|
|
|
add_definitions(-DGTEST_HAS_TR1_TUPLE=0)
|
|
|
|
|
2014-01-07 18:24:14 +08:00
|
|
|
include_directories(${LLVM_MAIN_SRC_DIR}/utils/unittest/googletest/include)
|
Add the 'googlemock' component of Google Test to LLVM's unittest libraries.
I have two immediate motivations for adding this:
1) It makes writing expectations in tests *dramatically* easier. A
quick example that is a taste of what is possible:
std::vector<int> v = ...;
EXPECT_THAT(v, UnorderedElementsAre(1, 2, 3));
This checks that v contains '1', '2', and '3' in some order. There
are a wealth of other helpful matchers like this. They tend to be
highly generic and STL-friendly so they will in almost all cases work
out of the box even on custom LLVM data structures.
I actually find the matcher syntax substantially easier to read even
for simple assertions:
EXPECT_THAT(a, Eq(b));
EXPECT_THAT(b, Ne(c));
Both of these make it clear what is being *tested* and what is being
*expected*. With `EXPECT_EQ` this is implicit (the LHS is expected,
the RHS is tested) and often confusing. With `EXPECT_NE` it is just
not clear. Even the failure error messages are superior with the
matcher based expectations.
2) When testing any kind of generic code, you are continually defining
dummy types with interfaces and then trying to check that the
interfaces are manipulated in a particular way. This is actually what
mocks are *good* for -- testing *interface interactions*. With
generic code, there is often no "fake" or other object that can be
used.
For a concrete example of where this is currently causing significant
pain, look at the pass manager unittests which are riddled with
counters incremented when methods are called. All of these could be
replaced with mocks. The result would be more effective at testing
the code by having tighter constraints. It would be substantially
more readable and maintainable when updating the code. And the error
messages on failure would have substantially more information as
mocks automatically record stack traces and other information *when
the API is misused* instead of trying to diagnose it after the fact.
I expect that #1 will be the overwhelming majority of the uses of gmock,
but I think that is sufficient to justify having it. I would actually
like to update the coding standards to encourage the use of matchers
rather than any other form of `EXPECT_...` macros as they are IMO
a strict superset in terms of functionality and readability.
I think that #2 is relatively rarely useful, but there *are* cases where
it is useful. Historically, I think misuse of actual mocking as
described in #2 has led to resistance towards this framework. I am
actually sympathetic to this -- mocking can easily be overused. However
I think this is not a significant concern in LLVM. First and foremost,
LLVM has very careful and rare exposure of abstract interfaces or
dependency injection, which are the most prone to abuse with mocks. So
there are few opportunities to abuse them. Second, a large fraction of
LLVM's unittests are testing *generic code* where mocks actually make
tremendous sense. And gmock is well suited to building interfaces that
exercise generic libraries. Finally, I still think we should be willing
to have testing utilities in tree even if they should be used rarely. We
can use code review to help guide the usage here.
For a longer and more complete discussion of this, see the llvm-dev
thread here:
http://lists.llvm.org/pipermail/llvm-dev/2017-January/108672.html
The general consensus seems that this is a reasonable direction to start
down, but that doesn't mean we should race ahead and use this
everywhere. I have one test that is blocked on this to land and that was
specifically used as an example. Before widespread adoption, I'm going
to work up some (brief) guidelines as some of these facilities should be
used sparingly and carefully.
Differential Revision: https://reviews.llvm.org/D28156
llvm-svn: 291606
2017-01-11 06:32:26 +08:00
|
|
|
include_directories(${LLVM_MAIN_SRC_DIR}/utils/unittest/googlemock/include)
|
2014-01-07 18:24:14 +08:00
|
|
|
if (NOT LLVM_ENABLE_THREADS)
|
|
|
|
list(APPEND LLVM_COMPILE_DEFINITIONS GTEST_HAS_PTHREAD=0)
|
|
|
|
endif ()
|
|
|
|
|
2017-01-07 07:16:00 +08:00
|
|
|
if (SUPPORTS_VARIADIC_MACROS_FLAG)
|
2014-01-31 06:55:25 +08:00
|
|
|
list(APPEND LLVM_COMPILE_FLAGS "-Wno-variadic-macros")
|
2014-01-07 18:24:14 +08:00
|
|
|
endif ()
|
2017-01-05 07:40:06 +08:00
|
|
|
# Some parts of gtest rely on this GNU extension, don't warn on it.
|
2017-01-07 07:16:00 +08:00
|
|
|
if(SUPPORTS_GNU_ZERO_VARIADIC_MACRO_ARGUMENTS_FLAG)
|
2017-01-05 07:40:06 +08:00
|
|
|
list(APPEND LLVM_COMPILE_FLAGS "-Wno-gnu-zero-variadic-macro-arguments")
|
|
|
|
endif()
|
2014-01-07 18:24:14 +08:00
|
|
|
|
2014-01-28 17:44:06 +08:00
|
|
|
set(LLVM_REQUIRES_RTTI OFF)
|
2014-01-07 18:24:14 +08:00
|
|
|
|
2016-02-12 09:42:43 +08:00
|
|
|
list(APPEND LLVM_LINK_COMPONENTS Support) # gtest needs it for raw_ostream
|
2016-11-03 14:58:16 +08:00
|
|
|
add_llvm_executable(${test_name} IGNORE_EXTERNALIZE_DEBUGINFO NO_INSTALL_RPATH ${ARGN})
|
2013-12-30 14:48:30 +08:00
|
|
|
set(outdir ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR})
|
2015-09-30 23:20:51 +08:00
|
|
|
set_output_directory(${test_name} BINARY_DIR ${outdir} LIBRARY_DIR ${outdir})
|
2016-06-22 03:34:40 +08:00
|
|
|
# libpthreads overrides some standard library symbols, so main
|
|
|
|
# executable must be linked with it in order to provide consistent
|
|
|
|
# API for all shared libaries loaded by this executable.
|
[CMake] Use PRIVATE in target_link_libraries for executables
We currently use target_link_libraries without an explicit scope
specifier (INTERFACE, PRIVATE or PUBLIC) when linking executables.
Dependencies added in this way apply to both the target and its
dependencies, i.e. they become part of the executable's link interface
and are transitive.
Transitive dependencies generally don't make sense for executables,
since you wouldn't normally be linking against an executable. This also
causes issues for generating install export files when using
LLVM_DISTRIBUTION_COMPONENTS. For example, clang has a lot of LLVM
library dependencies, which are currently added as interface
dependencies. If clang is in the distribution components but the LLVM
libraries it depends on aren't (which is a perfectly legitimate use case
if the LLVM libraries are being built static and there are therefore no
run-time dependencies on them), CMake will complain about the LLVM
libraries not being in export set when attempting to generate the
install export file for clang. This is reasonable behavior on CMake's
part, and the right thing is for LLVM's build system to explicitly use
PRIVATE dependencies for executables.
Unfortunately, CMake doesn't allow you to mix and match the keyword and
non-keyword target_link_libraries signatures for a single target; i.e.,
if a single call to target_link_libraries for a particular target uses
one of the INTERFACE, PRIVATE, or PUBLIC keywords, all other calls must
also be updated to use those keywords. This means we must do this change
in a single shot. I also fully expect to have missed some instances; I
tested by enabling all the projects in the monorepo (except dragonegg),
and configuring both with and without shared libraries, on both Darwin
and Linux, but I'm planning to rely on the buildbots for other
configurations (since it should be pretty easy to fix those).
Even after this change, we still have a lot of target_link_libraries
calls that don't specify a scope keyword, mostly for shared libraries.
I'm thinking about addressing those in a follow-up, but that's a
separate change IMO.
Differential Revision: https://reviews.llvm.org/D40823
llvm-svn: 319840
2017-12-06 05:49:56 +08:00
|
|
|
target_link_libraries(${test_name} PRIVATE gtest_main gtest ${LLVM_PTHREAD_LIB})
|
2018-09-15 03:43:11 +08:00
|
|
|
|
2012-06-21 13:16:58 +08:00
|
|
|
add_dependencies(${test_suite} ${test_name})
|
|
|
|
get_target_property(test_suite_folder ${test_suite} FOLDER)
|
|
|
|
if (NOT ${test_suite_folder} STREQUAL "NOTFOUND")
|
|
|
|
set_property(TARGET ${test_name} PROPERTY FOLDER "${test_suite_folder}")
|
|
|
|
endif ()
|
|
|
|
endfunction()
|
2012-06-28 14:36:24 +08:00
|
|
|
|
2018-09-15 01:34:46 +08:00
|
|
|
# Use for test binaries that call llvm::getInputFileDirectory(). Use of this
|
|
|
|
# is discouraged.
|
|
|
|
function(add_unittest_with_input_files test_suite test_name)
|
|
|
|
set(LLVM_UNITTEST_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
configure_file(
|
|
|
|
${LLVM_MAIN_SRC_DIR}/unittests/unittest.cfg.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/llvm.srcdir.txt)
|
|
|
|
|
|
|
|
add_unittest(${test_suite} ${test_name} ${ARGN})
|
|
|
|
endfunction()
|
2018-09-06 07:30:17 +08:00
|
|
|
|
Pull google/benchmark library to the LLVM tree
This patch pulls google/benchmark v1.4.1 into the LLVM tree so that any
project could use it for benchmark generation. A dummy benchmark is
added to `llvm/benchmarks/DummyYAML.cpp` to validate the correctness of
the build process.
The current version does not utilize LLVM LNT and LLVM CMake
infrastructure, but that might be sufficient for most users. Two
introduced CMake variables:
* `LLVM_INCLUDE_BENCHMARKS` (`ON` by default) generates benchmark
targets
* `LLVM_BUILD_BENCHMARKS` (`OFF` by default) adds generated
benchmark targets to the list of default LLVM targets (i.e. if `ON`
benchmarks will be built upon standard build invocation, e.g. `ninja` or
`make` with no specific targets)
List of modifications:
* `BENCHMARK_ENABLE_TESTING` is disabled
* `BENCHMARK_ENABLE_EXCEPTIONS` is disabled
* `BENCHMARK_ENABLE_INSTALL` is disabled
* `BENCHMARK_ENABLE_GTEST_TESTS` is disabled
* `BENCHMARK_DOWNLOAD_DEPENDENCIES` is disabled
Original discussion can be found here:
http://lists.llvm.org/pipermail/llvm-dev/2018-August/125023.html
Reviewed by: dberris, lebedev.ri
Subscribers: ilya-biryukov, ioeric, EricWF, lebedev.ri, srhines,
dschuff, mgorny, krytarowski, fedor.sergeev, mgrang, jfb, llvm-commits
Differential Revision: https://reviews.llvm.org/D50894
llvm-svn: 340809
2018-08-28 17:42:41 +08:00
|
|
|
# Generic support for adding a benchmark.
|
|
|
|
function(add_benchmark benchmark_name)
|
|
|
|
if( NOT LLVM_BUILD_BENCHMARKS )
|
|
|
|
set(EXCLUDE_FROM_ALL ON)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_llvm_executable(${benchmark_name} IGNORE_EXTERNALIZE_DEBUGINFO NO_INSTALL_RPATH ${ARGN})
|
|
|
|
set(outdir ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR})
|
|
|
|
set_output_directory(${benchmark_name} BINARY_DIR ${outdir} LIBRARY_DIR ${outdir})
|
2018-09-22 07:01:32 +08:00
|
|
|
set_property(TARGET ${benchmark_name} PROPERTY FOLDER "Utils")
|
Pull google/benchmark library to the LLVM tree
This patch pulls google/benchmark v1.4.1 into the LLVM tree so that any
project could use it for benchmark generation. A dummy benchmark is
added to `llvm/benchmarks/DummyYAML.cpp` to validate the correctness of
the build process.
The current version does not utilize LLVM LNT and LLVM CMake
infrastructure, but that might be sufficient for most users. Two
introduced CMake variables:
* `LLVM_INCLUDE_BENCHMARKS` (`ON` by default) generates benchmark
targets
* `LLVM_BUILD_BENCHMARKS` (`OFF` by default) adds generated
benchmark targets to the list of default LLVM targets (i.e. if `ON`
benchmarks will be built upon standard build invocation, e.g. `ninja` or
`make` with no specific targets)
List of modifications:
* `BENCHMARK_ENABLE_TESTING` is disabled
* `BENCHMARK_ENABLE_EXCEPTIONS` is disabled
* `BENCHMARK_ENABLE_INSTALL` is disabled
* `BENCHMARK_ENABLE_GTEST_TESTS` is disabled
* `BENCHMARK_DOWNLOAD_DEPENDENCIES` is disabled
Original discussion can be found here:
http://lists.llvm.org/pipermail/llvm-dev/2018-August/125023.html
Reviewed by: dberris, lebedev.ri
Subscribers: ilya-biryukov, ioeric, EricWF, lebedev.ri, srhines,
dschuff, mgorny, krytarowski, fedor.sergeev, mgrang, jfb, llvm-commits
Differential Revision: https://reviews.llvm.org/D50894
llvm-svn: 340809
2018-08-28 17:42:41 +08:00
|
|
|
target_link_libraries(${benchmark_name} PRIVATE benchmark)
|
|
|
|
endfunction()
|
|
|
|
|
2014-11-27 08:15:21 +08:00
|
|
|
function(llvm_add_go_executable binary pkgpath)
|
|
|
|
cmake_parse_arguments(ARG "ALL" "" "DEPENDS;GOFLAGS" ${ARGN})
|
|
|
|
|
|
|
|
if(LLVM_BINDINGS MATCHES "go")
|
|
|
|
# FIXME: This should depend only on the libraries Go needs.
|
|
|
|
get_property(llvmlibs GLOBAL PROPERTY LLVM_LIBS)
|
|
|
|
set(binpath ${CMAKE_BINARY_DIR}/bin/${binary}${CMAKE_EXECUTABLE_SUFFIX})
|
|
|
|
set(cc "${CMAKE_C_COMPILER} ${CMAKE_C_COMPILER_ARG1}")
|
|
|
|
set(cxx "${CMAKE_CXX_COMPILER} ${CMAKE_CXX_COMPILER_ARG1}")
|
2014-12-30 06:50:30 +08:00
|
|
|
set(cppflags "")
|
|
|
|
get_property(include_dirs DIRECTORY PROPERTY INCLUDE_DIRECTORIES)
|
|
|
|
foreach(d ${include_dirs})
|
|
|
|
set(cppflags "${cppflags} -I${d}")
|
|
|
|
endforeach(d)
|
2014-11-27 08:15:21 +08:00
|
|
|
set(ldflags "${CMAKE_EXE_LINKER_FLAGS}")
|
|
|
|
add_custom_command(OUTPUT ${binpath}
|
2016-07-27 11:21:51 +08:00
|
|
|
COMMAND ${CMAKE_BINARY_DIR}/bin/llvm-go "go=${GO_EXECUTABLE}" "cc=${cc}" "cxx=${cxx}" "cppflags=${cppflags}" "ldflags=${ldflags}" "packages=${LLVM_GO_PACKAGES}"
|
2014-11-27 08:15:21 +08:00
|
|
|
${ARG_GOFLAGS} build -o ${binpath} ${pkgpath}
|
|
|
|
DEPENDS llvm-config ${CMAKE_BINARY_DIR}/bin/llvm-go${CMAKE_EXECUTABLE_SUFFIX}
|
|
|
|
${llvmlibs} ${ARG_DEPENDS}
|
|
|
|
COMMENT "Building Go executable ${binary}"
|
|
|
|
VERBATIM)
|
|
|
|
if (ARG_ALL)
|
|
|
|
add_custom_target(${binary} ALL DEPENDS ${binpath})
|
|
|
|
else()
|
|
|
|
add_custom_target(${binary} DEPENDS ${binpath})
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
2017-01-07 05:33:48 +08:00
|
|
|
# This function canonicalize the CMake variables passed by names
|
|
|
|
# from CMake boolean to 0/1 suitable for passing into Python or C++,
|
|
|
|
# in place.
|
|
|
|
function(llvm_canonicalize_cmake_booleans)
|
|
|
|
foreach(var ${ARGN})
|
|
|
|
if(${var})
|
|
|
|
set(${var} 1 PARENT_SCOPE)
|
|
|
|
else()
|
|
|
|
set(${var} 0 PARENT_SCOPE)
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endfunction(llvm_canonicalize_cmake_booleans)
|
|
|
|
|
2017-11-13 20:40:05 +08:00
|
|
|
macro(set_llvm_build_mode)
|
|
|
|
# Configuration-time: See Unit/lit.site.cfg.in
|
|
|
|
if (CMAKE_CFG_INTDIR STREQUAL ".")
|
|
|
|
set(LLVM_BUILD_MODE ".")
|
|
|
|
else ()
|
|
|
|
set(LLVM_BUILD_MODE "%(build_mode)s")
|
|
|
|
endif ()
|
|
|
|
endmacro()
|
|
|
|
|
2012-06-28 14:36:24 +08:00
|
|
|
# This function provides an automatic way to 'configure'-like generate a file
|
2013-12-20 08:33:39 +08:00
|
|
|
# based on a set of common and custom variables, specifically targeting the
|
2012-06-28 14:36:24 +08:00
|
|
|
# variables needed for the 'lit.site.cfg' files. This function bundles the
|
|
|
|
# common variables that any Lit instance is likely to need, and custom
|
|
|
|
# variables can be passed in.
|
2017-09-21 08:24:52 +08:00
|
|
|
function(configure_lit_site_cfg site_in site_out)
|
2017-09-22 00:18:28 +08:00
|
|
|
cmake_parse_arguments(ARG "" "" "MAIN_CONFIG;OUTPUT_MAPPING" ${ARGN})
|
2017-09-21 08:24:52 +08:00
|
|
|
|
|
|
|
if ("${ARG_MAIN_CONFIG}" STREQUAL "")
|
2017-09-22 00:18:28 +08:00
|
|
|
get_filename_component(INPUT_DIR ${site_in} DIRECTORY)
|
|
|
|
set(ARG_MAIN_CONFIG "${INPUT_DIR}/lit.cfg")
|
|
|
|
endif()
|
|
|
|
if ("${ARG_OUTPUT_MAPPING}" STREQUAL "")
|
|
|
|
set(ARG_OUTPUT_MAPPING "${site_out}")
|
2017-09-21 08:24:52 +08:00
|
|
|
endif()
|
|
|
|
|
2012-06-28 14:36:24 +08:00
|
|
|
foreach(c ${LLVM_TARGETS_TO_BUILD})
|
|
|
|
set(TARGETS_BUILT "${TARGETS_BUILT} ${c}")
|
|
|
|
endforeach(c)
|
|
|
|
set(TARGETS_TO_BUILD ${TARGETS_BUILT})
|
|
|
|
|
|
|
|
set(SHLIBEXT "${LTDL_SHLIB_EXT}")
|
|
|
|
|
2017-11-13 20:40:05 +08:00
|
|
|
set_llvm_build_mode()
|
2012-06-28 14:36:24 +08:00
|
|
|
|
2014-01-26 14:18:56 +08:00
|
|
|
# They below might not be the build tree but provided binary tree.
|
2012-06-28 14:36:24 +08:00
|
|
|
set(LLVM_SOURCE_DIR ${LLVM_MAIN_SRC_DIR})
|
|
|
|
set(LLVM_BINARY_DIR ${LLVM_BINARY_DIR})
|
2017-09-20 01:19:10 +08:00
|
|
|
string(REPLACE "${CMAKE_CFG_INTDIR}" "${LLVM_BUILD_MODE}" LLVM_TOOLS_DIR "${LLVM_TOOLS_BINARY_DIR}")
|
|
|
|
string(REPLACE ${CMAKE_CFG_INTDIR} ${LLVM_BUILD_MODE} LLVM_LIBS_DIR "${LLVM_LIBRARY_DIR}")
|
2014-01-26 14:18:56 +08:00
|
|
|
|
|
|
|
# SHLIBDIR points the build tree.
|
2017-09-20 01:19:10 +08:00
|
|
|
string(REPLACE "${CMAKE_CFG_INTDIR}" "${LLVM_BUILD_MODE}" SHLIBDIR "${LLVM_SHLIB_OUTPUT_INTDIR}")
|
2014-01-26 14:18:56 +08:00
|
|
|
|
2012-06-28 14:36:24 +08:00
|
|
|
set(PYTHON_EXECUTABLE ${PYTHON_EXECUTABLE})
|
2014-07-04 12:45:40 +08:00
|
|
|
# FIXME: "ENABLE_SHARED" doesn't make sense, since it is used just for
|
|
|
|
# plugins. We may rename it.
|
|
|
|
if(LLVM_ENABLE_PLUGINS)
|
|
|
|
set(ENABLE_SHARED "1")
|
|
|
|
else()
|
|
|
|
set(ENABLE_SHARED "0")
|
|
|
|
endif()
|
2012-06-28 14:36:24 +08:00
|
|
|
|
|
|
|
if(LLVM_ENABLE_ASSERTIONS AND NOT MSVC_IDE)
|
|
|
|
set(ENABLE_ASSERTIONS "1")
|
|
|
|
else()
|
|
|
|
set(ENABLE_ASSERTIONS "0")
|
|
|
|
endif()
|
|
|
|
|
2015-01-24 09:42:44 +08:00
|
|
|
set(HOST_OS ${CMAKE_SYSTEM_NAME})
|
2013-02-15 00:49:32 +08:00
|
|
|
set(HOST_ARCH ${CMAKE_SYSTEM_PROCESSOR})
|
2012-06-28 14:36:24 +08:00
|
|
|
|
2014-10-18 02:32:36 +08:00
|
|
|
set(HOST_CC "${CMAKE_C_COMPILER} ${CMAKE_C_COMPILER_ARG1}")
|
|
|
|
set(HOST_CXX "${CMAKE_CXX_COMPILER} ${CMAKE_CXX_COMPILER_ARG1}")
|
2014-10-21 08:36:28 +08:00
|
|
|
set(HOST_LDFLAGS "${CMAKE_EXE_LINKER_FLAGS}")
|
2014-10-17 06:48:02 +08:00
|
|
|
|
2017-09-21 08:24:52 +08:00
|
|
|
set(LIT_SITE_CFG_IN_HEADER "## Autogenerated from ${site_in}\n## Do not edit!")
|
2016-04-16 14:47:41 +08:00
|
|
|
|
2017-06-17 11:19:08 +08:00
|
|
|
# Override config_target_triple (and the env)
|
|
|
|
if(LLVM_TARGET_TRIPLE_ENV)
|
|
|
|
# This is expanded into the heading.
|
|
|
|
string(CONCAT LIT_SITE_CFG_IN_HEADER "${LIT_SITE_CFG_IN_HEADER}\n\n"
|
|
|
|
"import os\n"
|
|
|
|
"target_env = \"${LLVM_TARGET_TRIPLE_ENV}\"\n"
|
|
|
|
"config.target_triple = config.environment[target_env] = os.environ.get(target_env, \"${TARGET_TRIPLE}\")\n"
|
|
|
|
)
|
|
|
|
|
|
|
|
# This is expanded to; config.target_triple = ""+config.target_triple+""
|
|
|
|
set(TARGET_TRIPLE "\"+config.target_triple+\"")
|
|
|
|
endif()
|
|
|
|
|
2017-09-21 08:24:52 +08:00
|
|
|
configure_file(${site_in} ${site_out} @ONLY)
|
|
|
|
if (EXISTS "${ARG_MAIN_CONFIG}")
|
|
|
|
set(PYTHON_STATEMENT "map_config('${ARG_MAIN_CONFIG}', '${site_out}')")
|
2017-09-16 06:10:46 +08:00
|
|
|
get_property(LLVM_LIT_CONFIG_MAP GLOBAL PROPERTY LLVM_LIT_CONFIG_MAP)
|
|
|
|
set(LLVM_LIT_CONFIG_MAP "${LLVM_LIT_CONFIG_MAP}\n${PYTHON_STATEMENT}")
|
|
|
|
set_property(GLOBAL PROPERTY LLVM_LIT_CONFIG_MAP ${LLVM_LIT_CONFIG_MAP})
|
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
2017-09-19 05:52:02 +08:00
|
|
|
function(dump_all_cmake_variables)
|
|
|
|
get_cmake_property(_variableNames VARIABLES)
|
|
|
|
foreach (_variableName ${_variableNames})
|
|
|
|
message(STATUS "${_variableName}=${${_variableName}}")
|
|
|
|
endforeach()
|
|
|
|
endfunction()
|
|
|
|
|
2017-09-16 06:10:46 +08:00
|
|
|
function(get_llvm_lit_path base_dir file_name)
|
|
|
|
cmake_parse_arguments(ARG "ALLOW_EXTERNAL" "" "" ${ARGN})
|
|
|
|
|
|
|
|
if (ARG_ALLOW_EXTERNAL)
|
|
|
|
set (LLVM_EXTERNAL_LIT "" CACHE STRING "Command used to spawn lit")
|
2017-09-21 00:01:50 +08:00
|
|
|
if ("${LLVM_EXTERNAL_LIT}" STREQUAL "")
|
|
|
|
set(LLVM_EXTERNAL_LIT "${LLVM_DEFAULT_EXTERNAL_LIT}")
|
|
|
|
endif()
|
|
|
|
|
2017-09-16 06:10:46 +08:00
|
|
|
if (NOT "${LLVM_EXTERNAL_LIT}" STREQUAL "")
|
|
|
|
if (EXISTS ${LLVM_EXTERNAL_LIT})
|
|
|
|
get_filename_component(LIT_FILE_NAME ${LLVM_EXTERNAL_LIT} NAME)
|
|
|
|
get_filename_component(LIT_BASE_DIR ${LLVM_EXTERNAL_LIT} DIRECTORY)
|
|
|
|
set(${file_name} ${LIT_FILE_NAME} PARENT_SCOPE)
|
|
|
|
set(${base_dir} ${LIT_BASE_DIR} PARENT_SCOPE)
|
|
|
|
return()
|
|
|
|
else()
|
2019-03-16 04:43:53 +08:00
|
|
|
message(WARNING "LLVM_EXTERNAL_LIT set to ${LLVM_EXTERNAL_LIT}, but the path does not exist.")
|
2017-09-16 06:10:46 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(lit_file_name "llvm-lit")
|
2018-06-29 18:34:37 +08:00
|
|
|
if (CMAKE_HOST_WIN32 AND NOT CYGWIN)
|
2017-09-16 06:10:46 +08:00
|
|
|
# llvm-lit needs suffix.py for multiprocess to find a main module.
|
|
|
|
set(lit_file_name "${lit_file_name}.py")
|
|
|
|
endif ()
|
|
|
|
set(${file_name} ${lit_file_name} PARENT_SCOPE)
|
|
|
|
|
|
|
|
get_property(LLVM_LIT_BASE_DIR GLOBAL PROPERTY LLVM_LIT_BASE_DIR)
|
|
|
|
if (NOT "${LLVM_LIT_BASE_DIR}" STREQUAL "")
|
|
|
|
set(${base_dir} ${LLVM_LIT_BASE_DIR} PARENT_SCOPE)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Allow individual projects to provide an override
|
|
|
|
if (NOT "${LLVM_LIT_OUTPUT_DIR}" STREQUAL "")
|
|
|
|
set(LLVM_LIT_BASE_DIR ${LLVM_LIT_OUTPUT_DIR})
|
|
|
|
elseif(NOT "${LLVM_RUNTIME_OUTPUT_INTDIR}" STREQUAL "")
|
|
|
|
set(LLVM_LIT_BASE_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR})
|
|
|
|
else()
|
2017-09-21 00:01:50 +08:00
|
|
|
set(LLVM_LIT_BASE_DIR "")
|
2017-09-16 06:10:46 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Cache this so we don't have to do it again and have subsequent calls
|
|
|
|
# potentially disagree on the value.
|
|
|
|
set_property(GLOBAL PROPERTY LLVM_LIT_BASE_DIR ${LLVM_LIT_BASE_DIR})
|
|
|
|
set(${base_dir} ${LLVM_LIT_BASE_DIR} PARENT_SCOPE)
|
2012-06-28 14:36:24 +08:00
|
|
|
endfunction()
|
2012-06-30 18:14:14 +08:00
|
|
|
|
|
|
|
# A raw function to create a lit target. This is used to implement the testuite
|
|
|
|
# management functions.
|
|
|
|
function(add_lit_target target comment)
|
2015-06-19 11:45:40 +08:00
|
|
|
cmake_parse_arguments(ARG "" "" "PARAMS;DEPENDS;ARGS" ${ARGN})
|
2012-06-30 18:14:14 +08:00
|
|
|
set(LIT_ARGS "${ARG_ARGS} ${LLVM_LIT_ARGS}")
|
|
|
|
separate_arguments(LIT_ARGS)
|
2013-12-04 19:15:17 +08:00
|
|
|
if (NOT CMAKE_CFG_INTDIR STREQUAL ".")
|
|
|
|
list(APPEND LIT_ARGS --param build_mode=${CMAKE_CFG_INTDIR})
|
|
|
|
endif ()
|
2017-09-16 06:10:46 +08:00
|
|
|
|
|
|
|
# Get the path to the lit to *run* tests with. This can be overriden by
|
|
|
|
# the user by specifying -DLLVM_EXTERNAL_LIT=<path-to-lit.py>
|
|
|
|
get_llvm_lit_path(
|
|
|
|
lit_base_dir
|
|
|
|
lit_file_name
|
|
|
|
ALLOW_EXTERNAL
|
|
|
|
)
|
|
|
|
|
|
|
|
set(LIT_COMMAND "${PYTHON_EXECUTABLE};${lit_base_dir}/${lit_file_name}")
|
2014-05-22 00:44:03 +08:00
|
|
|
list(APPEND LIT_COMMAND ${LIT_ARGS})
|
2012-06-30 18:14:14 +08:00
|
|
|
foreach(param ${ARG_PARAMS})
|
|
|
|
list(APPEND LIT_COMMAND --param ${param})
|
|
|
|
endforeach()
|
2015-06-19 11:45:40 +08:00
|
|
|
if (ARG_UNPARSED_ARGUMENTS)
|
2012-12-25 06:43:59 +08:00
|
|
|
add_custom_target(${target}
|
2015-06-19 11:45:40 +08:00
|
|
|
COMMAND ${LIT_COMMAND} ${ARG_UNPARSED_ARGUMENTS}
|
2012-12-25 06:43:59 +08:00
|
|
|
COMMENT "${comment}"
|
2016-06-09 06:19:25 +08:00
|
|
|
USES_TERMINAL
|
2012-12-25 06:43:59 +08:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
add_custom_target(${target}
|
2013-12-29 08:11:20 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E echo "${target} does nothing, no tools built.")
|
2012-12-25 06:43:59 +08:00
|
|
|
message(STATUS "${target} does nothing.")
|
|
|
|
endif()
|
2018-10-01 22:00:51 +08:00
|
|
|
|
2015-02-19 06:25:35 +08:00
|
|
|
if (ARG_DEPENDS)
|
|
|
|
add_dependencies(${target} ${ARG_DEPENDS})
|
|
|
|
endif()
|
2013-12-02 19:31:19 +08:00
|
|
|
|
|
|
|
# Tests should be excluded from "Build Solution".
|
|
|
|
set_target_properties(${target} PROPERTIES EXCLUDE_FROM_DEFAULT_BUILD ON)
|
2012-06-30 18:14:14 +08:00
|
|
|
endfunction()
|
|
|
|
|
|
|
|
# A function to add a set of lit test suites to be driven through 'check-*' targets.
|
|
|
|
function(add_lit_testsuite target comment)
|
2015-06-19 11:45:40 +08:00
|
|
|
cmake_parse_arguments(ARG "" "" "PARAMS;DEPENDS;ARGS" ${ARGN})
|
2012-06-30 18:14:14 +08:00
|
|
|
|
2012-10-10 21:32:55 +08:00
|
|
|
# EXCLUDE_FROM_ALL excludes the test ${target} out of check-all.
|
|
|
|
if(NOT EXCLUDE_FROM_ALL)
|
|
|
|
# Register the testsuites, params and depends for the global check rule.
|
2015-06-19 11:45:40 +08:00
|
|
|
set_property(GLOBAL APPEND PROPERTY LLVM_LIT_TESTSUITES ${ARG_UNPARSED_ARGUMENTS})
|
2012-10-10 21:32:55 +08:00
|
|
|
set_property(GLOBAL APPEND PROPERTY LLVM_LIT_PARAMS ${ARG_PARAMS})
|
|
|
|
set_property(GLOBAL APPEND PROPERTY LLVM_LIT_DEPENDS ${ARG_DEPENDS})
|
|
|
|
set_property(GLOBAL APPEND PROPERTY LLVM_LIT_EXTRA_ARGS ${ARG_ARGS})
|
|
|
|
endif()
|
2012-06-30 18:14:14 +08:00
|
|
|
|
|
|
|
# Produce a specific suffixed check rule.
|
|
|
|
add_lit_target(${target} ${comment}
|
2015-06-19 11:45:40 +08:00
|
|
|
${ARG_UNPARSED_ARGUMENTS}
|
2012-06-30 18:14:14 +08:00
|
|
|
PARAMS ${ARG_PARAMS}
|
|
|
|
DEPENDS ${ARG_DEPENDS}
|
|
|
|
ARGS ${ARG_ARGS}
|
|
|
|
)
|
|
|
|
endfunction()
|
2015-03-24 04:04:00 +08:00
|
|
|
|
|
|
|
function(add_lit_testsuites project directory)
|
2018-10-16 05:20:02 +08:00
|
|
|
if (NOT LLVM_ENABLE_IDE)
|
2015-06-19 11:45:40 +08:00
|
|
|
cmake_parse_arguments(ARG "" "" "PARAMS;DEPENDS;ARGS" ${ARGN})
|
2016-05-07 05:57:30 +08:00
|
|
|
|
|
|
|
# Search recursively for test directories by assuming anything not
|
|
|
|
# in a directory called Inputs contains tests.
|
2016-06-09 06:36:37 +08:00
|
|
|
file(GLOB_RECURSE to_process LIST_DIRECTORIES true ${directory}/*)
|
|
|
|
foreach(lit_suite ${to_process})
|
|
|
|
if(NOT IS_DIRECTORY ${lit_suite})
|
|
|
|
continue()
|
|
|
|
endif()
|
|
|
|
string(FIND ${lit_suite} Inputs is_inputs)
|
2016-07-26 02:07:14 +08:00
|
|
|
string(FIND ${lit_suite} Output is_output)
|
2017-04-13 17:26:49 +08:00
|
|
|
if (NOT (is_inputs EQUAL -1 AND is_output EQUAL -1))
|
2016-06-09 06:36:37 +08:00
|
|
|
continue()
|
|
|
|
endif()
|
2016-05-07 05:57:30 +08:00
|
|
|
|
2016-06-09 06:36:37 +08:00
|
|
|
# Create a check- target for the directory.
|
|
|
|
string(REPLACE ${directory} "" name_slash ${lit_suite})
|
2015-03-24 04:04:00 +08:00
|
|
|
if (name_slash)
|
|
|
|
string(REPLACE "/" "-" name_slash ${name_slash})
|
|
|
|
string(REPLACE "\\" "-" name_dashes ${name_slash})
|
|
|
|
string(TOLOWER "${project}${name_dashes}" name_var)
|
2016-06-09 06:36:37 +08:00
|
|
|
add_lit_target("check-${name_var}" "Running lit suite ${lit_suite}"
|
|
|
|
${lit_suite}
|
2015-03-24 04:04:00 +08:00
|
|
|
PARAMS ${ARG_PARAMS}
|
|
|
|
DEPENDS ${ARG_DEPENDS}
|
|
|
|
ARGS ${ARG_ARGS}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endif()
|
|
|
|
endfunction()
|
2015-09-15 07:09:06 +08:00
|
|
|
|
2015-11-05 07:11:12 +08:00
|
|
|
function(llvm_install_library_symlink name dest type)
|
|
|
|
cmake_parse_arguments(ARG "ALWAYS_GENERATE" "COMPONENT" "" ${ARGN})
|
|
|
|
foreach(path ${CMAKE_MODULE_PATH})
|
|
|
|
if(EXISTS ${path}/LLVMInstallSymlink.cmake)
|
|
|
|
set(INSTALL_SYMLINK ${path}/LLVMInstallSymlink.cmake)
|
|
|
|
break()
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
set(component ${ARG_COMPONENT})
|
|
|
|
if(NOT component)
|
|
|
|
set(component ${name})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(full_name ${CMAKE_${type}_LIBRARY_PREFIX}${name}${CMAKE_${type}_LIBRARY_SUFFIX})
|
|
|
|
set(full_dest ${CMAKE_${type}_LIBRARY_PREFIX}${dest}${CMAKE_${type}_LIBRARY_SUFFIX})
|
|
|
|
|
2015-11-12 00:19:39 +08:00
|
|
|
set(output_dir lib${LLVM_LIBDIR_SUFFIX})
|
2015-11-05 07:11:12 +08:00
|
|
|
if(WIN32 AND "${type}" STREQUAL "SHARED")
|
|
|
|
set(output_dir bin)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
install(SCRIPT ${INSTALL_SYMLINK}
|
|
|
|
CODE "install_symlink(${full_name} ${full_dest} ${output_dir})"
|
|
|
|
COMPONENT ${component})
|
|
|
|
|
2018-10-16 05:20:02 +08:00
|
|
|
if (NOT LLVM_ENABLE_IDE AND NOT ARG_ALWAYS_GENERATE)
|
2017-12-01 05:48:26 +08:00
|
|
|
add_llvm_install_targets(install-${name}
|
|
|
|
DEPENDS ${name} ${dest} install-${dest}
|
|
|
|
COMPONENT ${name})
|
2015-11-05 07:11:12 +08:00
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
2015-09-17 04:49:59 +08:00
|
|
|
function(llvm_install_symlink name dest)
|
2016-12-04 06:03:24 +08:00
|
|
|
cmake_parse_arguments(ARG "ALWAYS_GENERATE" "COMPONENT" "" ${ARGN})
|
2015-09-19 01:39:58 +08:00
|
|
|
foreach(path ${CMAKE_MODULE_PATH})
|
|
|
|
if(EXISTS ${path}/LLVMInstallSymlink.cmake)
|
|
|
|
set(INSTALL_SYMLINK ${path}/LLVMInstallSymlink.cmake)
|
|
|
|
break()
|
|
|
|
endif()
|
|
|
|
endforeach()
|
2015-11-11 02:26:34 +08:00
|
|
|
|
2016-12-04 06:03:24 +08:00
|
|
|
if(ARG_COMPONENT)
|
|
|
|
set(component ${ARG_COMPONENT})
|
2015-09-19 05:08:32 +08:00
|
|
|
else()
|
2016-12-04 06:03:24 +08:00
|
|
|
if(ARG_ALWAYS_GENERATE)
|
|
|
|
set(component ${dest})
|
|
|
|
else()
|
|
|
|
set(component ${name})
|
|
|
|
endif()
|
2015-09-19 05:08:32 +08:00
|
|
|
endif()
|
|
|
|
|
2015-10-17 07:17:13 +08:00
|
|
|
set(full_name ${name}${CMAKE_EXECUTABLE_SUFFIX})
|
|
|
|
set(full_dest ${dest}${CMAKE_EXECUTABLE_SUFFIX})
|
|
|
|
|
2015-09-19 01:39:58 +08:00
|
|
|
install(SCRIPT ${INSTALL_SYMLINK}
|
2016-06-09 05:19:26 +08:00
|
|
|
CODE "install_symlink(${full_name} ${full_dest} ${LLVM_TOOLS_INSTALL_DIR})"
|
2015-09-19 05:08:32 +08:00
|
|
|
COMPONENT ${component})
|
2015-09-17 04:49:59 +08:00
|
|
|
|
2018-10-16 05:20:02 +08:00
|
|
|
if (NOT LLVM_ENABLE_IDE AND NOT ARG_ALWAYS_GENERATE)
|
2017-12-01 05:48:26 +08:00
|
|
|
add_llvm_install_targets(install-${name}
|
|
|
|
DEPENDS ${name} ${dest} install-${dest}
|
|
|
|
COMPONENT ${name})
|
2015-09-17 04:49:59 +08:00
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
2016-12-05 11:28:03 +08:00
|
|
|
function(add_llvm_tool_symlink link_name target)
|
|
|
|
cmake_parse_arguments(ARG "ALWAYS_GENERATE" "OUTPUT_DIR" "" ${ARGN})
|
2016-12-16 02:17:07 +08:00
|
|
|
set(dest_binary "$<TARGET_FILE:${target}>")
|
|
|
|
|
2016-12-06 01:02:11 +08:00
|
|
|
# This got a bit gross... For multi-configuration generators the target
|
|
|
|
# properties return the resolved value of the string, not the build system
|
|
|
|
# expression. To reconstruct the platform-agnostic path we have to do some
|
|
|
|
# magic. First we grab one of the types, and a type-specific path. Then from
|
|
|
|
# the type-specific path we find the last occurrence of the type in the path,
|
|
|
|
# and replace it with CMAKE_CFG_INTDIR. This allows the build step to be type
|
2017-09-16 06:10:46 +08:00
|
|
|
# agnostic again.
|
2016-12-05 11:28:03 +08:00
|
|
|
if(NOT ARG_OUTPUT_DIR)
|
2016-12-16 02:17:07 +08:00
|
|
|
# If you're not overriding the OUTPUT_DIR, we can make the link relative in
|
|
|
|
# the same directory.
|
[cmake] Use symlinks for Windows-hosted toolchains built on Unix
When cross-compiling for Windows on Unix, the built toolchain will need
to be transferred to Windows to actually run. My opinion is that the
Unix build should use symlinks, and the transfer to Windows should take
care of making those symlinks usable. E.g., I envision tarballs to be a
common form of transfer from Unix to Windows, in which case the tarball
can be created using --dereference to follow the symlinks.
The motivation here is that, when cross-compiling for Windows on Unix,
the installation will *already* create symlinks. The reason is that the
installation script will be invoked without knowing the host system, so
the `if(UNIX)` check in the installation symlink creation script will
reflect the build system rather than the host system. We could either
make the build and install trees both contain copies or both contain
symlinks, and using symlinks is a significant space saving without (in
my opinion) having any detrimental effect on the usage of the cross-
compiled toolchain on Windows.
A secondary motivation is that Windows 10 version 1703 and later finally
lift the administrator rights requirement for creating symbolic links
(if the system is in Developer Mode), which makes symlinks a lot more
practical even on Windows. Of course Unix and Windows symlinks aren't
interoperable, but symlinks for Windows toolchains is a reasonable
future direction to be going in anyway.
Differential Revision: https://reviews.llvm.org/D41314
llvm-svn: 322061
2018-01-09 15:50:18 +08:00
|
|
|
if(CMAKE_HOST_UNIX)
|
2016-12-16 02:17:07 +08:00
|
|
|
set(dest_binary "$<TARGET_FILE_NAME:${target}>")
|
|
|
|
endif()
|
2016-12-06 01:02:11 +08:00
|
|
|
if(CMAKE_CONFIGURATION_TYPES)
|
|
|
|
list(GET CMAKE_CONFIGURATION_TYPES 0 first_type)
|
|
|
|
string(TOUPPER ${first_type} first_type_upper)
|
|
|
|
set(first_type_suffix _${first_type_upper})
|
|
|
|
endif()
|
2016-12-05 11:28:03 +08:00
|
|
|
get_target_property(target_type ${target} TYPE)
|
|
|
|
if(${target_type} STREQUAL "STATIC_LIBRARY")
|
2016-12-06 01:02:11 +08:00
|
|
|
get_target_property(ARG_OUTPUT_DIR ${target} ARCHIVE_OUTPUT_DIRECTORY${first_type_suffix})
|
2016-12-05 11:28:03 +08:00
|
|
|
elseif(UNIX AND ${target_type} STREQUAL "SHARED_LIBRARY")
|
2016-12-06 01:02:11 +08:00
|
|
|
get_target_property(ARG_OUTPUT_DIR ${target} LIBRARY_OUTPUT_DIRECTORY${first_type_suffix})
|
2016-12-05 11:28:03 +08:00
|
|
|
else()
|
2016-12-06 01:02:11 +08:00
|
|
|
get_target_property(ARG_OUTPUT_DIR ${target} RUNTIME_OUTPUT_DIRECTORY${first_type_suffix})
|
|
|
|
endif()
|
|
|
|
if(CMAKE_CONFIGURATION_TYPES)
|
|
|
|
string(FIND "${ARG_OUTPUT_DIR}" "/${first_type}/" type_start REVERSE)
|
|
|
|
string(SUBSTRING "${ARG_OUTPUT_DIR}" 0 ${type_start} path_prefix)
|
|
|
|
string(SUBSTRING "${ARG_OUTPUT_DIR}" ${type_start} -1 path_suffix)
|
|
|
|
string(REPLACE "/${first_type}/" "/${CMAKE_CFG_INTDIR}/"
|
|
|
|
path_suffix ${path_suffix})
|
|
|
|
set(ARG_OUTPUT_DIR ${path_prefix}${path_suffix})
|
2016-12-05 11:28:03 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
[cmake] Use symlinks for Windows-hosted toolchains built on Unix
When cross-compiling for Windows on Unix, the built toolchain will need
to be transferred to Windows to actually run. My opinion is that the
Unix build should use symlinks, and the transfer to Windows should take
care of making those symlinks usable. E.g., I envision tarballs to be a
common form of transfer from Unix to Windows, in which case the tarball
can be created using --dereference to follow the symlinks.
The motivation here is that, when cross-compiling for Windows on Unix,
the installation will *already* create symlinks. The reason is that the
installation script will be invoked without knowing the host system, so
the `if(UNIX)` check in the installation symlink creation script will
reflect the build system rather than the host system. We could either
make the build and install trees both contain copies or both contain
symlinks, and using symlinks is a significant space saving without (in
my opinion) having any detrimental effect on the usage of the cross-
compiled toolchain on Windows.
A secondary motivation is that Windows 10 version 1703 and later finally
lift the administrator rights requirement for creating symbolic links
(if the system is in Developer Mode), which makes symlinks a lot more
practical even on Windows. Of course Unix and Windows symlinks aren't
interoperable, but symlinks for Windows toolchains is a reasonable
future direction to be going in anyway.
Differential Revision: https://reviews.llvm.org/D41314
llvm-svn: 322061
2018-01-09 15:50:18 +08:00
|
|
|
if(CMAKE_HOST_UNIX)
|
2015-09-15 07:09:06 +08:00
|
|
|
set(LLVM_LINK_OR_COPY create_symlink)
|
|
|
|
else()
|
|
|
|
set(LLVM_LINK_OR_COPY copy)
|
|
|
|
endif()
|
|
|
|
|
2016-12-05 11:28:03 +08:00
|
|
|
set(output_path "${ARG_OUTPUT_DIR}/${link_name}${CMAKE_EXECUTABLE_SUFFIX}")
|
2015-09-15 07:09:06 +08:00
|
|
|
|
2016-12-05 11:28:03 +08:00
|
|
|
set(target_name ${link_name})
|
|
|
|
if(TARGET ${link_name})
|
|
|
|
set(target_name ${link_name}-link)
|
2016-09-17 06:19:19 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
|
2015-09-19 05:08:32 +08:00
|
|
|
if(ARG_ALWAYS_GENERATE)
|
|
|
|
set_property(DIRECTORY APPEND PROPERTY
|
|
|
|
ADDITIONAL_MAKE_CLEAN_FILES ${dest_binary})
|
2016-12-05 11:28:03 +08:00
|
|
|
add_custom_command(TARGET ${target} POST_BUILD
|
2015-09-19 05:08:32 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E ${LLVM_LINK_OR_COPY} "${dest_binary}" "${output_path}")
|
|
|
|
else()
|
|
|
|
add_custom_command(OUTPUT ${output_path}
|
2015-09-15 10:15:53 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E ${LLVM_LINK_OR_COPY} "${dest_binary}" "${output_path}"
|
2016-12-05 11:28:03 +08:00
|
|
|
DEPENDS ${target})
|
|
|
|
add_custom_target(${target_name} ALL DEPENDS ${target} ${output_path})
|
2016-09-17 06:19:19 +08:00
|
|
|
set_target_properties(${target_name} PROPERTIES FOLDER Tools)
|
2015-09-15 07:09:06 +08:00
|
|
|
|
2016-09-28 01:47:24 +08:00
|
|
|
# Make sure both the link and target are toolchain tools
|
2016-12-05 11:28:03 +08:00
|
|
|
if (${link_name} IN_LIST LLVM_TOOLCHAIN_TOOLS AND ${target} IN_LIST LLVM_TOOLCHAIN_TOOLS)
|
2016-09-30 14:29:28 +08:00
|
|
|
set(TOOL_IS_TOOLCHAIN ON)
|
2015-09-19 05:08:32 +08:00
|
|
|
endif()
|
2015-09-15 07:09:06 +08:00
|
|
|
|
2016-09-30 14:29:28 +08:00
|
|
|
if ((TOOL_IS_TOOLCHAIN OR NOT LLVM_INSTALL_TOOLCHAIN_ONLY) AND LLVM_BUILD_TOOLS)
|
2016-12-05 11:28:03 +08:00
|
|
|
llvm_install_symlink(${link_name} ${target})
|
2015-09-15 07:09:06 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endfunction()
|
2015-12-04 02:45:39 +08:00
|
|
|
|
|
|
|
function(llvm_externalize_debuginfo name)
|
|
|
|
if(NOT LLVM_EXTERNALIZE_DEBUGINFO)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2016-04-01 04:03:19 +08:00
|
|
|
if(NOT LLVM_EXTERNALIZE_DEBUGINFO_SKIP_STRIP)
|
2017-02-18 03:29:12 +08:00
|
|
|
if(APPLE)
|
2018-06-29 02:36:52 +08:00
|
|
|
if(NOT CMAKE_STRIP)
|
|
|
|
set(CMAKE_STRIP xcrun strip)
|
|
|
|
endif()
|
|
|
|
set(strip_command COMMAND ${CMAKE_STRIP} -Sxl $<TARGET_FILE:${name}>)
|
2017-02-18 03:29:12 +08:00
|
|
|
else()
|
2018-08-14 10:00:21 +08:00
|
|
|
set(strip_command COMMAND ${CMAKE_STRIP} -g -x $<TARGET_FILE:${name}>)
|
2017-02-18 03:29:12 +08:00
|
|
|
endif()
|
2016-04-01 04:03:19 +08:00
|
|
|
endif()
|
|
|
|
|
2019-04-19 00:37:07 +08:00
|
|
|
if(APPLE)
|
|
|
|
if(LLVM_EXTERNALIZE_DEBUGINFO_EXTENSION)
|
|
|
|
set(file_ext ${LLVM_EXTERNALIZE_DEBUGINFO_EXTENSION})
|
|
|
|
else()
|
|
|
|
set(file_ext dSYM)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(output_name "$<TARGET_FILE_NAME:${name}>.${file_ext}")
|
|
|
|
|
|
|
|
if(LLVM_EXTERNALIZE_DEBUGINFO_OUTPUT_DIR)
|
2018-12-03 18:42:32 +08:00
|
|
|
set(output_path "-o=${LLVM_EXTERNALIZE_DEBUGINFO_OUTPUT_DIR}/${output_name}")
|
2019-04-19 00:37:07 +08:00
|
|
|
else()
|
|
|
|
set(output_path "-o=${output_name}")
|
2018-12-03 18:42:32 +08:00
|
|
|
endif()
|
|
|
|
|
2015-12-04 02:45:39 +08:00
|
|
|
if(CMAKE_CXX_FLAGS MATCHES "-flto"
|
|
|
|
OR CMAKE_CXX_FLAGS_${uppercase_CMAKE_BUILD_TYPE} MATCHES "-flto")
|
|
|
|
|
|
|
|
set(lto_object ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${name}-lto.o)
|
2015-12-04 06:51:08 +08:00
|
|
|
set_property(TARGET ${name} APPEND_STRING PROPERTY
|
|
|
|
LINK_FLAGS " -Wl,-object_path_lto,${lto_object}")
|
2015-12-04 02:45:39 +08:00
|
|
|
endif()
|
2018-06-29 02:36:52 +08:00
|
|
|
if(NOT CMAKE_DSYMUTIL)
|
|
|
|
set(CMAKE_DSYMUTIL xcrun dsymutil)
|
|
|
|
endif()
|
2015-12-04 02:45:39 +08:00
|
|
|
add_custom_command(TARGET ${name} POST_BUILD
|
2018-12-03 18:42:32 +08:00
|
|
|
COMMAND ${CMAKE_DSYMUTIL} ${output_path} $<TARGET_FILE:${name}>
|
2016-04-01 04:03:19 +08:00
|
|
|
${strip_command}
|
|
|
|
)
|
2015-12-04 02:45:39 +08:00
|
|
|
else()
|
2017-02-18 03:29:12 +08:00
|
|
|
add_custom_command(TARGET ${name} POST_BUILD
|
2018-05-09 08:07:42 +08:00
|
|
|
COMMAND ${CMAKE_OBJCOPY} --only-keep-debug $<TARGET_FILE:${name}> $<TARGET_FILE:${name}>.debug
|
2017-02-18 03:29:12 +08:00
|
|
|
${strip_command} -R .gnu_debuglink
|
2018-05-09 08:07:42 +08:00
|
|
|
COMMAND ${CMAKE_OBJCOPY} --add-gnu-debuglink=$<TARGET_FILE:${name}>.debug $<TARGET_FILE:${name}>
|
2017-02-18 03:29:12 +08:00
|
|
|
)
|
2015-12-04 02:45:39 +08:00
|
|
|
endif()
|
|
|
|
endfunction()
|
2016-11-02 01:44:58 +08:00
|
|
|
|
2018-12-14 02:51:19 +08:00
|
|
|
# Usage: llvm_codesign(name [ENTITLEMENTS file])
|
|
|
|
function(llvm_codesign name)
|
|
|
|
cmake_parse_arguments(ARG "" "ENTITLEMENTS" "" ${ARGN})
|
2018-11-17 02:10:36 +08:00
|
|
|
|
2018-07-11 01:32:48 +08:00
|
|
|
if(NOT LLVM_CODESIGNING_IDENTITY)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2019-01-04 17:22:32 +08:00
|
|
|
if(CMAKE_GENERATOR STREQUAL "Xcode")
|
|
|
|
set_target_properties(${name} PROPERTIES
|
|
|
|
XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY ${LLVM_CODESIGNING_IDENTITY}
|
|
|
|
)
|
|
|
|
if(DEFINED ARG_ENTITLEMENTS)
|
|
|
|
set_target_properties(${name} PROPERTIES
|
|
|
|
XCODE_ATTRIBUTE_CODE_SIGN_ENTITLEMENTS ${ARG_ENTITLEMENTS}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
elseif(APPLE)
|
2018-07-11 01:32:48 +08:00
|
|
|
if(NOT CMAKE_CODESIGN)
|
|
|
|
set(CMAKE_CODESIGN xcrun codesign)
|
|
|
|
endif()
|
|
|
|
if(NOT CMAKE_CODESIGN_ALLOCATE)
|
|
|
|
execute_process(
|
|
|
|
COMMAND xcrun -f codesign_allocate
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
OUTPUT_VARIABLE CMAKE_CODESIGN_ALLOCATE
|
|
|
|
)
|
|
|
|
endif()
|
2018-11-17 02:10:36 +08:00
|
|
|
if(DEFINED ARG_ENTITLEMENTS)
|
2018-12-14 02:51:19 +08:00
|
|
|
set(pass_entitlements --entitlements ${ARG_ENTITLEMENTS})
|
|
|
|
endif()
|
2018-11-17 02:10:36 +08:00
|
|
|
|
2018-07-11 01:32:48 +08:00
|
|
|
add_custom_command(
|
2018-12-14 02:51:19 +08:00
|
|
|
TARGET ${name} POST_BUILD
|
2018-07-11 01:32:48 +08:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E
|
|
|
|
env CODESIGN_ALLOCATE=${CMAKE_CODESIGN_ALLOCATE}
|
|
|
|
${CMAKE_CODESIGN} -s ${LLVM_CODESIGNING_IDENTITY}
|
2019-01-04 17:22:32 +08:00
|
|
|
${pass_entitlements} $<TARGET_FILE:${name}>
|
2018-07-11 01:32:48 +08:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
2016-11-02 01:44:58 +08:00
|
|
|
function(llvm_setup_rpath name)
|
2016-11-08 08:45:05 +08:00
|
|
|
if(CMAKE_INSTALL_RPATH)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2016-11-02 01:44:58 +08:00
|
|
|
if(LLVM_INSTALL_PREFIX AND NOT (LLVM_INSTALL_PREFIX STREQUAL CMAKE_INSTALL_PREFIX))
|
|
|
|
set(extra_libdir ${LLVM_LIBRARY_DIR})
|
|
|
|
elseif(LLVM_BUILD_LIBRARY_DIR)
|
|
|
|
set(extra_libdir ${LLVM_LIBRARY_DIR})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (APPLE)
|
|
|
|
set(_install_name_dir INSTALL_NAME_DIR "@rpath")
|
|
|
|
set(_install_rpath "@loader_path/../lib" ${extra_libdir})
|
|
|
|
elseif(UNIX)
|
2016-11-08 08:45:05 +08:00
|
|
|
set(_install_rpath "\$ORIGIN/../lib${LLVM_LIBDIR_SUFFIX}" ${extra_libdir})
|
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|DragonFly)")
|
|
|
|
set_property(TARGET ${name} APPEND_STRING PROPERTY
|
|
|
|
LINK_FLAGS " -Wl,-z,origin ")
|
2018-03-08 23:09:38 +08:00
|
|
|
endif()
|
|
|
|
if(LLVM_LINKER_IS_GNULD)
|
2016-11-08 08:45:05 +08:00
|
|
|
# $ORIGIN is not interpreted at link time by ld.bfd
|
|
|
|
set_property(TARGET ${name} APPEND_STRING PROPERTY
|
|
|
|
LINK_FLAGS " -Wl,-rpath-link,${LLVM_LIBRARY_OUTPUT_INTDIR} ")
|
2016-11-02 01:44:58 +08:00
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2016-11-08 08:45:05 +08:00
|
|
|
set_target_properties(${name} PROPERTIES
|
|
|
|
BUILD_WITH_INSTALL_RPATH On
|
|
|
|
INSTALL_RPATH "${_install_rpath}"
|
|
|
|
${_install_name_dir})
|
2016-11-02 01:44:58 +08:00
|
|
|
endfunction()
|
2016-11-17 12:36:59 +08:00
|
|
|
|
|
|
|
function(setup_dependency_debugging name)
|
|
|
|
if(NOT LLVM_DEPENDENCY_DEBUGGING)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if("intrinsics_gen" IN_LIST ARGN)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2018-04-26 01:07:46 +08:00
|
|
|
set(deny_attributes_inc "(deny file* (literal \"${LLVM_BINARY_DIR}/include/llvm/IR/Attributes.inc\"))")
|
|
|
|
set(deny_intrinsics_inc "(deny file* (literal \"${LLVM_BINARY_DIR}/include/llvm/IR/Intrinsics.inc\"))")
|
2016-11-17 12:36:59 +08:00
|
|
|
|
2018-04-26 01:07:46 +08:00
|
|
|
set(sandbox_command "sandbox-exec -p '(version 1) (allow default) ${deny_attributes_inc} ${deny_intrinsics_inc}'")
|
2016-11-19 09:32:09 +08:00
|
|
|
set_target_properties(${name} PROPERTIES RULE_LAUNCH_COMPILE ${sandbox_command})
|
2016-11-17 12:36:59 +08:00
|
|
|
endfunction()
|
2017-09-03 01:28:39 +08:00
|
|
|
|
2019-02-06 11:51:00 +08:00
|
|
|
function(find_first_existing_vc_file path out_var)
|
2019-02-20 09:11:05 +08:00
|
|
|
if(NOT EXISTS "${path}")
|
|
|
|
return()
|
|
|
|
endif()
|
2019-02-06 11:51:00 +08:00
|
|
|
if(EXISTS "${path}/.svn")
|
|
|
|
set(svn_files
|
|
|
|
"${path}/.svn/wc.db" # SVN 1.7
|
|
|
|
"${path}/.svn/entries" # SVN 1.6
|
|
|
|
)
|
|
|
|
foreach(file IN LISTS svn_files)
|
|
|
|
if(EXISTS "${file}")
|
|
|
|
set(${out_var} "${file}" PARENT_SCOPE)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
else()
|
|
|
|
find_package(Git)
|
|
|
|
if(GIT_FOUND)
|
|
|
|
execute_process(COMMAND ${GIT_EXECUTABLE} rev-parse --git-dir
|
|
|
|
WORKING_DIRECTORY ${path}
|
|
|
|
RESULT_VARIABLE git_result
|
|
|
|
OUTPUT_VARIABLE git_output
|
|
|
|
ERROR_QUIET)
|
|
|
|
if(git_result EQUAL 0)
|
|
|
|
string(STRIP "${git_output}" git_output)
|
|
|
|
get_filename_component(git_dir ${git_output} ABSOLUTE BASE_DIR ${path})
|
|
|
|
# Some branchless cases (e.g. 'repo') may not yet have .git/logs/HEAD
|
|
|
|
if (NOT EXISTS "${git_dir}/logs/HEAD")
|
|
|
|
file(WRITE "${git_dir}/logs/HEAD" "")
|
|
|
|
endif()
|
|
|
|
set(${out_var} "${git_dir}/logs/HEAD" PARENT_SCOPE)
|
2019-01-31 15:12:43 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
2019-02-06 11:51:00 +08:00
|
|
|
endif()
|
|
|
|
endfunction()
|