2011-12-18 16:27:59 +08:00
|
|
|
set(LLVM_SOURCE_DIR "${LLVM_MAIN_SRC_DIR}")
|
|
|
|
set(LLVM_BINARY_DIR "${LLVM_BINARY_DIR}")
|
|
|
|
set(LLVM_BUILD_MODE "%(build_mode)s")
|
|
|
|
set(LLVM_TOOLS_DIR "${LLVM_TOOLS_BINARY_DIR}/%(build_config)s")
|
2014-12-29 20:11:30 +08:00
|
|
|
set(LLVM_LIBS_DIR "${LLVM_BINARY_DIR}/lib${LLVM_LIBDIR_SUFFIX}/%(build_config)s")
|
2017-02-09 04:08:29 +08:00
|
|
|
|
|
|
|
llvm_canonicalize_cmake_booleans(
|
2020-05-01 04:07:13 +08:00
|
|
|
LLVM_ENABLE_ZLIB
|
2019-01-19 08:09:43 +08:00
|
|
|
LLVM_LIBXML2_ENABLED
|
|
|
|
)
|
2011-12-18 16:27:59 +08:00
|
|
|
|
2013-01-13 09:09:51 +08:00
|
|
|
configure_lit_site_cfg(
|
2017-09-22 01:38:13 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.py.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg.py
|
|
|
|
MAIN_CONFIG
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lit.cfg.py
|
|
|
|
)
|
2013-07-24 07:42:17 +08:00
|
|
|
configure_lit_site_cfg(
|
2017-09-22 01:38:13 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/Unit/lit.site.cfg.py.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/Unit/lit.site.cfg.py
|
|
|
|
MAIN_CONFIG
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/Unit/lit.cfg.py
|
2013-07-24 07:42:17 +08:00
|
|
|
)
|
2011-12-18 16:27:59 +08:00
|
|
|
|
2017-01-31 22:10:20 +08:00
|
|
|
set(LLD_TEST_DEPS lld)
|
|
|
|
if (NOT LLD_BUILT_STANDALONE)
|
|
|
|
list(APPEND LLD_TEST_DEPS
|
2020-07-29 04:26:09 +08:00
|
|
|
FileCheck count llc llvm-ar llvm-as llvm-bcanalyzer llvm-config llvm-cvtres
|
2020-04-30 06:42:36 +08:00
|
|
|
llvm-dis llvm-dwarfdump llvm-lib llvm-lipo llvm-mc llvm-nm llvm-objcopy
|
[lld-macho] Use export trie instead of symtab when linking against dylibs
Summary:
This allows us to link against stripped dylibs. Moreover, it's simply
more correct: The symbol table includes symbols that the dylib uses but
doesn't export.
This temporarily regresses our ability to do lazy symbol binding because
dyld_stub_binder isn't in libSystem's export trie. Rather, it is in one
of the sub-libraries libSystem re-exports. (This doesn't affect our
tests since we are mocking out dyld_stub_binder there.) A follow-up diff
will address this by adding support for sub-libraries.
Depends on D79114.
Reviewers: ruiu, pcc, MaskRay, smeenai, alexshap, gkm, Ktwu, christylee
Subscribers: mgorny, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D79226
2020-04-23 11:00:57 +08:00
|
|
|
llvm-objdump llvm-pdbutil llvm-readelf llvm-readobj llvm-strip not obj2yaml
|
2020-08-04 01:17:55 +08:00
|
|
|
opt split-file yaml2obj
|
2017-01-31 22:10:20 +08:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2015-03-13 00:49:52 +08:00
|
|
|
if (LLVM_INCLUDE_TESTS)
|
2017-01-31 22:10:20 +08:00
|
|
|
list(APPEND LLD_TEST_DEPS LLDUnitTests)
|
2015-03-13 00:49:52 +08:00
|
|
|
endif()
|
|
|
|
|
2015-01-13 05:41:10 +08:00
|
|
|
add_lit_testsuite(check-lld "Running lld test suite"
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
DEPENDS ${LLD_TEST_DEPS}
|
|
|
|
)
|
2011-12-18 16:27:59 +08:00
|
|
|
|
2018-08-30 01:30:45 +08:00
|
|
|
add_custom_target(lld-test-depends DEPENDS ${LLD_TEST_DEPS})
|
|
|
|
set_target_properties(lld-test-depends PROPERTIES FOLDER "lld tests")
|
|
|
|
|
2018-02-14 21:28:53 +08:00
|
|
|
add_lit_testsuites(LLD ${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
DEPENDS ${LLD_TEST_DEPS}
|
|
|
|
)
|
|
|
|
|
2015-01-13 05:41:10 +08:00
|
|
|
set_target_properties(check-lld PROPERTIES FOLDER "lld tests")
|
2012-08-01 02:44:52 +08:00
|
|
|
|
|
|
|
# Add a legacy target spelling: lld-test
|
|
|
|
add_custom_target(lld-test)
|
|
|
|
add_dependencies(lld-test check-lld)
|
|
|
|
set_target_properties(lld-test PROPERTIES FOLDER "lld tests")
|