diff options
author | Chris Lattner <sabre@nondot.org> | 2010-07-20 20:33:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-07-20 20:33:59 +0000 |
commit | 56ff3f15e71cb0baad677b9d1d9f1038b26cf18d (patch) | |
tree | 56758b03fc9cd47cdfe6730f7213ebb5b1e68629 /tools | |
parent | de8d40503ecf8cee9e33d59a1139cac855f652ff (diff) | |
download | external_llvm-56ff3f15e71cb0baad677b9d1d9f1038b26cf18d.zip external_llvm-56ff3f15e71cb0baad677b9d1d9f1038b26cf18d.tar.gz external_llvm-56ff3f15e71cb0baad677b9d1d9f1038b26cf18d.tar.bz2 |
this logic is handled by tools/makefile.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108919 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/edis/Makefile | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/tools/edis/Makefile b/tools/edis/Makefile index f28929f..ab65b2b 100644 --- a/tools/edis/Makefile +++ b/tools/edis/Makefile @@ -9,6 +9,8 @@ LEVEL = ../.. LIBRARYNAME = EnhancedDisassembly +LINK_LIBS_IN_SHARED = 1 +SHARED_LIBRARY = 1 EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/EnhancedDisassembly.exports @@ -17,15 +19,6 @@ EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/EnhancedDisassembly.exports # early so we can set up LINK_COMPONENTS before including Makefile.rules include $(LEVEL)/Makefile.config -ifeq ($(ENABLE_PIC),1) - ifneq ($(DISABLE_EDIS),1) - ifneq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin MingW)) - LINK_LIBS_IN_SHARED = 1 - SHARED_LIBRARY = 1 - endif - endif -endif - LINK_COMPONENTS := $(TARGETS_TO_BUILD) mcdisassembler x86asmprinter x86disassembler include $(LEVEL)/Makefile.common |