diff options
author | Shantonu Sen <ssen@apple.com> | 2010-12-01 20:38:11 +0000 |
---|---|---|
committer | Shantonu Sen <ssen@apple.com> | 2010-12-01 20:38:11 +0000 |
commit | 8283f1551a862420114fdc3966008747c5a3667c (patch) | |
tree | 5bead5b2e9680f4a71b07f571ff122b69126edee /clang/runtime | |
parent | 795adf50615978b0f2ff2316b0264ec1b320f432 (diff) | |
download | bcm5719-llvm-8283f1551a862420114fdc3966008747c5a3667c.tar.gz bcm5719-llvm-8283f1551a862420114fdc3966008747c5a3667c.zip |
Fix build of in-tree libcxx. libcxx doesn't actually
need any of the LLVM support libraries. Reviewed
by Daniel Dunbar.
llvm-svn: 120602
Diffstat (limited to 'clang/runtime')
-rw-r--r-- | clang/runtime/libcxx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/runtime/libcxx/Makefile b/clang/runtime/libcxx/Makefile index e0780206305..10d4e9bb845 100644 --- a/clang/runtime/libcxx/Makefile +++ b/clang/runtime/libcxx/Makefile @@ -43,7 +43,7 @@ ifeq ($(HOST_OS),Darwin) LLVMLibsOptions += -Wl,-compatibility_version,1 # Don't link with default libraries. - LLVMLibsOptions += -nodefaultlibs -lSupport + LLVMLibsOptions += -nodefaultlibs # Reexport libc++abi. LLVMLibsOptions += -Wl,-reexport_library,/usr/lib/libc++abi.dylib |