diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-29 07:17:18 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-29 07:17:18 +0000 |
commit | 8f631784f70d8b03cffdc4ffe6a2f0fed0ad4438 (patch) | |
tree | 23491aade21dffb8a813d1acddcc79b8f3e1bdc4 /tools/lli/Makefile | |
parent | 7c787c93551f984ee2d216af97678d0c930f19b6 (diff) | |
download | external_llvm-8f631784f70d8b03cffdc4ffe6a2f0fed0ad4438.zip external_llvm-8f631784f70d8b03cffdc4ffe6a2f0fed0ad4438.tar.gz external_llvm-8f631784f70d8b03cffdc4ffe6a2f0fed0ad4438.tar.bz2 |
Use LLVMLIBS=JIT to get JIT libraries
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18333 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lli/Makefile')
-rw-r--r-- | tools/lli/Makefile | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/tools/lli/Makefile b/tools/lli/Makefile index 394fec6..0e537f9 100644 --- a/tools/lli/Makefile +++ b/tools/lli/Makefile @@ -6,15 +6,9 @@ # the University of Illinois Open Source License. See LICENSE.TXT for details. # ##===----------------------------------------------------------------------===## -LEVEL = ../.. -TOOLNAME = lli +LEVEL := ../.. +TOOLNAME := lli +LLVMLIBS := JIT # Enable JIT support -include ../Makefile.JIT - -# 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 |