[llvm-commits] [llvm] r101063 - /llvm/trunk/tools/edis/Makefile

Sean Callanan scallanan at apple.com
Mon Apr 12 13:23:08 PDT 2010


Author: spyffe
Date: Mon Apr 12 15:23:08 2010
New Revision: 101063

URL: http://llvm.org/viewvc/llvm-project?rev=101063&view=rev
Log:
Bug fix: made the enhanced disassembler's link
flags work properly when EDIS_VERSION is defined

Modified:
    llvm/trunk/tools/edis/Makefile

Modified: llvm/trunk/tools/edis/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/edis/Makefile?rev=101063&r1=101062&r2=101063&view=diff
==============================================================================
--- llvm/trunk/tools/edis/Makefile (original)
+++ llvm/trunk/tools/edis/Makefile Mon Apr 12 15:23:08 2010
@@ -32,7 +32,7 @@
                          -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
 





More information about the llvm-commits mailing list