diff options
| author | Chris Lattner <sabre@nondot.org> | 2003-09-08 18:19:58 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2003-09-08 18:19:58 +0000 |
| commit | 6052fe375cfe93879e1f665d54ab9902f1b83781 (patch) | |
| tree | 8b8365124fc8fad3fcbc0c4f3b6420d83cb9633e /llvm/lib/ExecutionEngine | |
| parent | 01a8391236b85c63c89f1c712f5e94e345008587 (diff) | |
| download | bcm5719-llvm-6052fe375cfe93879e1f665d54ab9902f1b83781.tar.gz bcm5719-llvm-6052fe375cfe93879e1f665d54ab9902f1b83781.zip | |
Remove a bunch of unneeded stuph
llvm-svn: 8400
Diffstat (limited to 'llvm/lib/ExecutionEngine')
| -rw-r--r-- | llvm/lib/ExecutionEngine/Makefile | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/llvm/lib/ExecutionEngine/Makefile b/llvm/lib/ExecutionEngine/Makefile index 3757bedf6d9..1c86863b3f5 100644 --- a/llvm/lib/ExecutionEngine/Makefile +++ b/llvm/lib/ExecutionEngine/Makefile @@ -2,49 +2,4 @@ LEVEL = ../.. LIBRARYNAME = executionengine PARALLEL_DIRS = Interpreter JIT -# Get the $(ARCH) setting -include $(LEVEL)/Makefile.config - -# Generic JIT libraries -JITLIBS = lli-jit codegen -ARCHLIBS = - -# You can enable the X86 JIT on a non-X86 host by setting the flag -# ENABLE_X86_JIT on the make command line. If not, it will still be -# enabled automagically on an X86 host. -ifeq ($(ARCH), x86) - ENABLE_X86_JIT = 1 -endif - -# What the X86 JIT requires -ifdef ENABLE_X86_JIT - CPPFLAGS += -DENABLE_X86_JIT - JITLIBS += x86 selectiondag - # X86 doesn't require any ARCHLIBS -endif - -# You can enable the Sparc JIT on a non-Sparc host by setting the flag -# ENABLE_SPARC_JIT on the make command line. If not, it will still be -# enabled automagically on an Sparc host. -ifeq ($(ARCH), Sparc) - ENABLE_SPARC_JIT = 1 -endif - -# What the Sparc JIT requires -ifdef ENABLE_SPARC_JIT - CPPFLAGS += -DENABLE_SPARC_JIT - JITLIBS += sparc - ARCHLIBS += sched livevar instrument.a profpaths \ - bcwriter transforms.a ipo.a ipa.a datastructure.a regalloc \ - select -endif - -USEDLIBS = lli-interpreter $(JITLIBS) $(ARCHLIBS) scalaropts analysis.a \ - transformutils.a bcreader vmcore support target.a - -# Have gcc tell the linker to export symbols from the program so that -# dynamically loaded modules can be linked against them. -# -TOOLLINKOPTS = $(PLATFORMLIBDL) - include $(LEVEL)/Makefile.common |

