[llvm-commits] CVS: llvm/examples/Fibonacci/Makefile

Chris Lattner lattner at cs.uiuc.edu
Sun Sep 3 23:04:20 PDT 2006



Changes in directory llvm/examples/Fibonacci:

Makefile updated: 1.7 -> 1.8
---
Log message:

Use llvm-config to determine what to link in


---
Diffs of the changes:  (+2 -2)

 Makefile |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/examples/Fibonacci/Makefile
diff -u llvm/examples/Fibonacci/Makefile:1.7 llvm/examples/Fibonacci/Makefile:1.8
--- llvm/examples/Fibonacci/Makefile:1.7	Mon Nov 29 01:17:19 2004
+++ llvm/examples/Fibonacci/Makefile	Mon Sep  4 01:04:03 2006
@@ -11,7 +11,7 @@
 TOOLNAME = Fibonacci
 EXAMPLE_TOOL = 1
 
-# Enable JIT support
-LLVMLIBS := JIT
+# Link in JIT support
+LINK_COMPONENTS := jit interpreter native
 
 include $(LEVEL)/Makefile.common






More information about the llvm-commits mailing list