diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2010-07-31 21:33:01 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2010-07-31 21:33:01 +0000 |
| commit | b6ab76b82f3b52b71226e784d1e9becad7493a29 (patch) | |
| tree | f641f34b5af5dc27931ea0c50745cbeec9fef3e5 /clang/tools | |
| parent | 40842fa2ee2d2b30ea4dd3469d4cbe418ec8fdf4 (diff) | |
| download | bcm5719-llvm-b6ab76b82f3b52b71226e784d1e9becad7493a29.tar.gz bcm5719-llvm-b6ab76b82f3b52b71226e784d1e9becad7493a29.zip | |
build: Don't pass -avoid-version or -no-undefined on Darwin, they don't do
anything.
llvm-svn: 109958
Diffstat (limited to 'clang/tools')
| -rw-r--r-- | clang/tools/libclang/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/tools/libclang/Makefile b/clang/tools/libclang/Makefile index 253ea38c7b9..7a620c15a93 100644 --- a/clang/tools/libclang/Makefile +++ b/clang/tools/libclang/Makefile @@ -34,7 +34,6 @@ ifeq ($(HOST_OS),Darwin) endif # extra options to override libtool defaults LLVMLibsOptions := $(LLVMLibsOptions) \ - -avoid-version \ -Wl,-dead_strip \ -Wl,-seg1addr -Wl,0xE0000000 @@ -42,7 +41,7 @@ ifeq ($(HOST_OS),Darwin) DARWIN_VERS := $(shell echo $(TARGET_TRIPLE) | sed 's/.*darwin\([0-9]*\).*/\1/') ifneq ($(DARWIN_VERS),8) LLVMLibsOptions := $(LLVMLibsOptions) \ - -no-undefined -Wl,-install_name \ + -Wl,-install_name \ -Wl,"@rpath/lib$(LIBRARYNAME)$(SHLIBEXT)" endif endif |

