From: Sean Callanan Date: Mon, 12 Apr 2010 20:23:08 +0000 (+0000) Subject: Bug fix: made the enhanced disassembler's link X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=dae9efc23e959d4452f5b67706896ea292b687f3;p=oota-llvm.git 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 --- diff --git a/tools/edis/Makefile b/tools/edis/Makefile index a5ec82ba7e4..a6d99c75628 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