Add library LLVMsystem.a because the JIT now needs it.
[oota-llvm.git] / examples / Fibonacci / Makefile
index bc5fd0fe1d8118d8d217d1dae2b639ef609beafe..60392e2b06355216b2aa1b25e0944a5fbc413cb3 100644 (file)
@@ -1,4 +1,4 @@
-##===- projects/HowToUseJIT/Makefile -----------------------*- Makefile -*-===##
+##===- projects/Fibonacci/Makefile -------------------------*- Makefile -*-===##
 # 
 #                     The LLVM Compiler Infrastructure
 #
@@ -10,6 +10,6 @@ LEVEL = ../..
 TOOLNAME = Fibonacci
 USEDLIBS = lli-jit lli-interpreter codegen executionengine x86 selectiondag \
           scalaropts analysis.a transformutils.a bcreader target.a vmcore \
-          support.a
+          support.a LLVMsystem.a
 
 include $(LEVEL)/Makefile.common