diff options
author | Dan Albert <danalbert@google.com> | 2015-02-10 18:46:57 +0000 |
---|---|---|
committer | Dan Albert <danalbert@google.com> | 2015-02-10 18:46:57 +0000 |
commit | 86cc60eeea958621a14ceb3ec0aa083005ee34e3 (patch) | |
tree | a570bed148655aab44cdb2922741078be6052d1e | |
parent | 57c6ac5e416ff75b9e97e9f85eb78408e67fff11 (diff) | |
download | bcm5719-llvm-86cc60eeea958621a14ceb3ec0aa083005ee34e3.tar.gz bcm5719-llvm-86cc60eeea958621a14ceb3ec0aa083005ee34e3.zip |
Make ABI header not found a warning, not an error.
Since we've added a new header to libc++abi (__cxxabi_config.h), we
now have a case where we might not always find all the ABI headers:
building libc++ against the system's libc++abi on Darwin.
Since this isn't actually a fatal error, degrade it to a warning.
llvm-svn: 228720
-rw-r--r-- | libcxx/cmake/Modules/HandleLibCXXABI.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/cmake/Modules/HandleLibCXXABI.cmake b/libcxx/cmake/Modules/HandleLibCXXABI.cmake index b71ebb95824..8c04244b7fc 100644 --- a/libcxx/cmake/Modules/HandleLibCXXABI.cmake +++ b/libcxx/cmake/Modules/HandleLibCXXABI.cmake @@ -49,7 +49,7 @@ macro(setup_abi_lib abipathvar abidefines abilib abifiles abidirs) endif() endforeach() if (NOT found) - message(FATAL_ERROR "Failed to find ${fpath}") + message(WARNING "Failed to find ${fpath}") endif() endforeach() |