mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 05:41:42 +00:00
[cmake] Fix handling compiler-rt in LLVM_ENABLE_PROJECTS by turning any "-" into "_"
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@286317 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a20694002c
commit
ecca5dd36c
@ -109,6 +109,7 @@ foreach(proj ${LLVM_ENABLE_PROJECTS})
|
||||
message(FATAL_ERROR "LLVM_ENABLE_PROJECTS requests ${proj} but directory not found: ${PROJ_DIR}")
|
||||
endif()
|
||||
string(TOUPPER "${proj}" upper_proj)
|
||||
STRING(REGEX REPLACE "-" "_" upper_proj ${upper_proj})
|
||||
set(LLVM_EXTERNAL_${upper_proj}_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../${proj}")
|
||||
# There is a widely spread opinion that clang-tools-extra should be merged
|
||||
# into clang. The following simulates it by always enabling clang-tools-extra
|
||||
|
Loading…
x
Reference in New Issue
Block a user