mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 02:33:06 +01:00
[ASTMatchers] Fix build when no targets are enabled
This makes sense to do when building only tools like clang-tidy for example. Differential Revision: https://reviews.llvm.org/D93987
This commit is contained in:
parent
828ab5c21a
commit
d9608eed9a
@ -28,7 +28,9 @@ function(is_llvm_target_library library return_var)
|
||||
string(TOUPPER "${LLVM_TARGETS_TO_BUILD}" targets)
|
||||
elseif(ARG_OMITTED_TARGETS)
|
||||
set(omitted_targets ${LLVM_ALL_TARGETS})
|
||||
list(REMOVE_ITEM omitted_targets ${LLVM_TARGETS_TO_BUILD})
|
||||
if (LLVM_TARGETS_TO_BUILD)
|
||||
list(REMOVE_ITEM omitted_targets ${LLVM_TARGETS_TO_BUILD})
|
||||
endif()
|
||||
string(TOUPPER "${omitted_targets}" targets)
|
||||
else()
|
||||
string(TOUPPER "${LLVM_ALL_TARGETS}" targets)
|
||||
|
Loading…
Reference in New Issue
Block a user