summaryrefslogtreecommitdiff
path: root/tools/edis
diff options
context:
space:
mode:
authorSean Callanan <scallanan@apple.com>2010-04-12 20:23:08 +0000
committerSean Callanan <scallanan@apple.com>2010-04-12 20:23:08 +0000
commitdae9efc23e959d4452f5b67706896ea292b687f3 (patch)
tree2f965c7042d8425df3a648f2e2059c649026dfb2 /tools/edis
parent4b318ef9747b8e6ce71b6724fce0c4c2b9b94556 (diff)
downloadllvm-dae9efc23e959d4452f5b67706896ea292b687f3.tar.gz
llvm-dae9efc23e959d4452f5b67706896ea292b687f3.tar.bz2
llvm-dae9efc23e959d4452f5b67706896ea292b687f3.tar.xz
Bug fix: made the enhanced disassembler's link
flags work properly when EDIS_VERSION is defined git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101063 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/edis')
-rw-r--r--tools/edis/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/edis/Makefile b/tools/edis/Makefile
index a5ec82ba7e..a6d99c7562 100644
--- a/tools/edis/Makefile
+++ b/tools/edis/Makefile
@@ -32,7 +32,7 @@ ifeq ($(HOST_OS),Darwin)
-Wl,-dead_strip
ifdef EDIS_VERSION
- LLVMLibsOptions := -Wl,-current_version -Wl,$(EDIS_VERSION) \
+ LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version -Wl,$(EDIS_VERSION) \
-Wl,-compatibility_version -Wl,1
endif