Add library LLVMsystem.a because the JIT now needs it.
authorReid Spencer <rspencer@reidspencer.com>
Sat, 11 Sep 2004 04:29:44 +0000 (04:29 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sat, 11 Sep 2004 04:29:44 +0000 (04:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16285 91177308-0d34-0410-b5e6-96231b3b80d8

examples/Fibonacci/Makefile
examples/HowToUseJIT/Makefile
examples/ModuleMaker/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
index 834ad02e3c327673e7c7f2bf2e5cd523c7c45926..9e42223d435c55938393a74349b1c1388de8d500 100644 (file)
@@ -10,6 +10,6 @@ LEVEL = ../..
 TOOLNAME = HowToUseJIT
 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
index de7a0a5494596a98db207140587a170004ea00d7..4ae28ccb7a2338ac80c1d9d315bdb51dd8e744b7 100644 (file)
@@ -8,6 +8,6 @@
 ##===----------------------------------------------------------------------===##
 LEVEL=../..
 TOOLNAME=ModuleMaker
-USEDLIBS= bcwriter vmcore support.a
+USEDLIBS= bcwriter vmcore support.a LLVMsystem.a
 
 include $(LEVEL)/Makefile.common