summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-10-28 05:37:24 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-10-28 05:37:24 +0000
commit685f86ac0e0a1b43f5e17064e9f99c18d4d4cdba (patch)
tree4c7744b99790e81fc88f45440bfd91890ed64816
parent002242149f854c58ecaf5eeac3f72319b9164acd (diff)
downloadllvm-685f86ac0e0a1b43f5e17064e9f99c18d4d4cdba.tar.gz
llvm-685f86ac0e0a1b43f5e17064e9f99c18d4d4cdba.tar.bz2
llvm-685f86ac0e0a1b43f5e17064e9f99c18d4d4cdba.tar.xz
Fix library name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17307 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/ExecutionEngine/Interpreter/Makefile2
-rw-r--r--lib/ExecutionEngine/JIT/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Makefile b/lib/ExecutionEngine/Interpreter/Makefile
index a219a4f39d..93f74ec6a8 100644
--- a/lib/ExecutionEngine/Interpreter/Makefile
+++ b/lib/ExecutionEngine/Interpreter/Makefile
@@ -7,6 +7,6 @@
#
##===----------------------------------------------------------------------===##
LEVEL = ../../..
-LIBRARYNAME = lli-interpreter
+LIBRARYNAME = LLVMInterpreter
include $(LEVEL)/Makefile.common
diff --git a/lib/ExecutionEngine/JIT/Makefile b/lib/ExecutionEngine/JIT/Makefile
index 761b951bad..ebbdc3f3db 100644
--- a/lib/ExecutionEngine/JIT/Makefile
+++ b/lib/ExecutionEngine/JIT/Makefile
@@ -7,7 +7,7 @@
#
##===----------------------------------------------------------------------===##
LEVEL = ../../..
-LIBRARYNAME = lli-jit
+LIBRARYNAME = LLVMJIT
# Get the $(ARCH) setting
include $(LEVEL)/Makefile.config