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
|
|
|
|
2020-03-03 16:45:14 +08:00
|
|
|
if(LLD_BUILT_STANDALONE)
|
|
|
|
# Set HAVE_LIBZ according to recorded LLVM_ENABLE_ZLIB value. This
|
|
|
|
# value is forced to 0 if zlib was not found, so it is fine to use it
|
|
|
|
# instead of HAVE_LIBZ (not recorded).
|
|
|
|
if(LLVM_ENABLE_ZLIB)
|
|
|
|
set(HAVE_LIBZ 1)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2017-02-09 04:08:29 +08:00
|
|
|
llvm_canonicalize_cmake_booleans(
|
2020-03-03 16:45:14 +08:00
|
|
|
HAVE_LIBZ
|
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
|
lld-link: Reject more than one resource .obj file
Users are exepcted to pass all .res files to the linker, which then
merges all the resource in all .res files into a tree structure and then
converts the final tree structure to a .obj file with .rsrc$01 and
.rsrc$02 sections and then links that.
If the user instead passes several .obj files containing such resources,
the correct thing to do would be to have custom code to merge the trees
in the resource sections instead of doing normal section merging -- but
link.exe rejects if multiple resource obj files are passed in with
LNK4078, so let lld-link do that too instead of silently writing broken
.rsrc sections in that case.
The only real way to run into this is if users manually convert .res
files to .obj files by running cvtres and then handing the resulting
.obj files to lld-link instead, which in practice likely never happens.
(lld-link is slightly stricter than link.exe now: If link.exe is passed
one .obj file created by cvtres, and a .res file, for some reason it
just emits a warning instead of an error and outputs strange looking
data. lld-link now errors out on mixed input like this.)
One way users could accidentally run into this is the following
scenario: If a .res file is passed to lib.exe, then lib.exe calls
cvtres.exe on the .res file before putting it in the output .lib.
(llvm-lib currently doesn't do this.)
link.exe's /wholearchive seems to only add obj files referenced from the
static library index, but lld-link current really adds all files in the
archive. So if lld-link /wholearchive is used with .lib files produced
by lib.exe and .res files were among the files handed to lib.exe, we
previously silently produced invalid output, but now we error out.
link.exe's /wholearchive semantics on the other hand mean that it
wouldn't load the resource object files from the .lib file at all.
Since this scenario is probably still an unlikely corner case,
the difference in behavior here seems fine -- and lld-link might have to
change to use link.exe's /wholearchive semantics in the future anyways.
Vaguely related to PR42180.
Differential Revision: https://reviews.llvm.org/D63109
llvm-svn: 363078
2019-06-11 23:22:28 +08:00
|
|
|
FileCheck count llc llvm-ar llvm-as llvm-bcanalyzer llvm-config llvm-cvtres
|
|
|
|
llvm-dis llvm-dwarfdump llvm-lib llvm-mc llvm-nm llvm-objcopy llvm-objdump
|
2018-07-23 22:12:57 +08:00
|
|
|
llvm-pdbutil llvm-readelf llvm-readobj not obj2yaml opt 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")
|