diff options
author | Hans Wennborg <hans@hanshq.net> | 2014-08-12 18:18:07 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2014-08-12 18:18:07 +0000 |
commit | d57db6e877d89af25979a633f237c8e542b5f6ce (patch) | |
tree | 799b30a3950562fdfe097c0a326fb3e6afc2a54d | |
parent | 2f6a96e1b65667f2577fd1e15c2ea2fd496bb8f5 (diff) | |
download | bcm5719-llvm-d57db6e877d89af25979a633f237c8e542b5f6ce.tar.gz bcm5719-llvm-d57db6e877d89af25979a633f237c8e542b5f6ce.zip |
Fix the CMake build on Mac when setting MACOSX_DEPLOYMENT_TARGET=10.6
The build file was trying to use LIBCXXABI_VERSION, which isn't set
anywhere.
llvm-svn: 215465
-rw-r--r-- | libcxxabi/src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxxabi/src/CMakeLists.txt b/libcxxabi/src/CMakeLists.txt index a3fdf6c443c..774ef27945b 100644 --- a/libcxxabi/src/CMakeLists.txt +++ b/libcxxabi/src/CMakeLists.txt @@ -66,7 +66,7 @@ if ( APPLE ) list(APPEND compile_flags "-U__STRICT_ANSI__") list(APPEND link_flags "-compatibility_version 1" - "-current_version ${LIBCXXABI_VERSION}" + "-current_version 1" "-install_name /usr/lib/libc++abi.1.dylib" "/usr/lib/libSystem.B.dylib") else() |