summaryrefslogtreecommitdiff
path: root/examples/Fibonacci
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-09-11 04:29:44 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-09-11 04:29:44 +0000
commit86e5aef1cebf1a3f6669b9eaaaebfdccba18d4a0 (patch)
treef3c20b76d36a94d88a0e31b7f069583fc647de72 /examples/Fibonacci
parent9cab9e51bb0b08ff236aed3f9636a82b1c572ad0 (diff)
downloadllvm-86e5aef1cebf1a3f6669b9eaaaebfdccba18d4a0.tar.gz
llvm-86e5aef1cebf1a3f6669b9eaaaebfdccba18d4a0.tar.bz2
llvm-86e5aef1cebf1a3f6669b9eaaaebfdccba18d4a0.tar.xz
Add library LLVMsystem.a because the JIT now needs it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16285 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/Fibonacci')
-rw-r--r--examples/Fibonacci/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/Fibonacci/Makefile b/examples/Fibonacci/Makefile
index bc5fd0fe1d..60392e2b06 100644
--- a/examples/Fibonacci/Makefile
+++ b/examples/Fibonacci/Makefile
@@ -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