1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

Fix most of LLVM's tests with LLVM_ENABLE_PIC=OFF

Lots of tests rely on llvm-lto being present, but LLVM_ENABLE_PIC=OFF currently
disables building that executable.

There's no reason for not building llvm-lto with LLVM_ENABLE_PIC=OFF so just
build it. r191042 moved it into a "if (!WIN)" block at the time, and then
211852 made that "if(NOT CYGWIN AND LLVM_ENABLE_PIC)" -- but that's only needed
for LTO (the ld64 plugin), not for the llvm-lto binary.

Differential Revision: https://reviews.llvm.org/D56801

llvm-svn: 351374
This commit is contained in:
Nico Weber 2019-01-16 20:44:36 +00:00
parent 9f9869fa2f
commit a042271911

View File

@ -27,7 +27,6 @@ endif()
if(CYGWIN OR NOT LLVM_ENABLE_PIC) if(CYGWIN OR NOT LLVM_ENABLE_PIC)
set(LLVM_TOOL_LTO_BUILD Off) set(LLVM_TOOL_LTO_BUILD Off)
set(LLVM_TOOL_LLVM_LTO_BUILD Off)
endif() endif()
# Add LTO, llvm-ar, llvm-config, and llvm-profdata before clang, ExternalProject # Add LTO, llvm-ar, llvm-config, and llvm-profdata before clang, ExternalProject