diff options
author | Sean Callanan <scallanan@apple.com> | 2010-04-12 20:23:08 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2010-04-12 20:23:08 +0000 |
commit | 5c3efd5bb2944c15a60a306939e1655676c20b0b (patch) | |
tree | 2f965c7042d8425df3a648f2e2059c649026dfb2 /tools | |
parent | e075db987228c58a2f00c887254bd9f78c7ca569 (diff) | |
download | external_llvm-5c3efd5bb2944c15a60a306939e1655676c20b0b.zip external_llvm-5c3efd5bb2944c15a60a306939e1655676c20b0b.tar.gz external_llvm-5c3efd5bb2944c15a60a306939e1655676c20b0b.tar.bz2 |
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')
-rw-r--r-- | tools/edis/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/edis/Makefile b/tools/edis/Makefile index a5ec82b..a6d99c7 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 |