[llvm-commits] CVS: llvm/tools/lli/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Tue Jun 17 12:54:01 PDT 2003
Changes in directory llvm/tools/lli:
Makefile updated: 1.27 -> 1.28
---
Log message:
Make sure to get the value of ARCH before we use it
---
Diffs of the changes:
Index: llvm/tools/lli/Makefile
diff -u llvm/tools/lli/Makefile:1.27 llvm/tools/lli/Makefile:1.28
--- llvm/tools/lli/Makefile:1.27 Tue Jun 17 10:54:52 2003
+++ llvm/tools/lli/Makefile Tue Jun 17 12:53:35 2003
@@ -2,6 +2,9 @@
TOOLNAME = lli
PARALLEL_DIRS = Interpreter JIT
+# Get the config name...
+include $(LEVEL)/Makefile.config
+
# Generic JIT libraries
JITLIBS = lli-jit codegen
ARCHLIBS =
@@ -9,6 +12,8 @@
# What the X86 JIT requires
JITLIBS += x86
# X86 doesn't require any ARCHLIBS
+
+
# What the Sparc JIT requires
ifeq ($(ARCH),Sparc)
More information about the llvm-commits
mailing list