forked from OSchip/llvm-project
[clang] Remove cmake warning message (NFC)
Recognize an empty string for CLANG_DEFAULT_UNWINDLIB as a valid option. llvm-svn: 356920
This commit is contained in:
parent
1f44814952
commit
7e8476ddfa
|
@ -276,7 +276,8 @@ if (CLANG_DEFAULT_UNWINDLIB STREQUAL "")
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (NOT(CLANG_DEFAULT_UNWINDLIB STREQUAL "none" OR
|
if (NOT(CLANG_DEFAULT_UNWINDLIB STREQUAL "" OR
|
||||||
|
CLANG_DEFAULT_UNWINDLIB STREQUAL "none" OR
|
||||||
CLANG_DEFAULT_UNWINDLIB STREQUAL "libgcc" OR
|
CLANG_DEFAULT_UNWINDLIB STREQUAL "libgcc" OR
|
||||||
CLANG_DEFAULT_UNWINDLIB STREQUAL "libunwind"))
|
CLANG_DEFAULT_UNWINDLIB STREQUAL "libunwind"))
|
||||||
message(WARNING "Resetting default unwindlib to use platform default")
|
message(WARNING "Resetting default unwindlib to use platform default")
|
||||||
|
|
Loading…
Reference in New Issue