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
This commit is contained in:
Dan Albert 2015-02-10 18:46:57 +00:00
parent 57c6ac5e41
commit 86cc60eeea
1 changed files with 1 additions and 1 deletions

View File

@ -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()