Add the LLVMsystem.a library as it is now used for operating system
authorReid Spencer <rspencer@reidspencer.com>
Sun, 29 Aug 2004 19:29:38 +0000 (19:29 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sun, 29 Aug 2004 19:29:38 +0000 (19:29 +0000)
independence of the tool.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16092 91177308-0d34-0410-b5e6-96231b3b80d8

16 files changed:
tools/analyze/Makefile
tools/bugpoint/Makefile
tools/extract/Makefile
tools/gccas/Makefile
tools/gccld/Makefile
tools/llc/Makefile
tools/lli/Makefile
tools/llvm-ar/Makefile
tools/llvm-as/Makefile
tools/llvm-bcanalyzer/Makefile
tools/llvm-db/Makefile
tools/llvm-dis/Makefile
tools/llvm-link/Makefile
tools/llvm-nm/Makefile
tools/llvm-prof/Makefile
tools/opt/Makefile

index 81e84e29801a49d1819f65f72e0fd71eaad98517..074f26b1586271e1d549fc0a34e63604c8b8c6c3 100644 (file)
@@ -9,7 +9,7 @@
 LEVEL = ../..
 TOOLNAME = analyze
 USEDLIBS = asmparser bcreader analysis ipa datastructure scalaropts.a transforms.a \
-           target.a scalaropts.a transformutils.a vmcore support
+           target.a scalaropts.a transformutils.a vmcore support LLVMsystem.a
 TOOLLINKOPTS = $(PLATFORMLIBDL)
 
 include $(LEVEL)/Makefile.common
index a0d25b34b7cf8bd1a92d01ff83e3f384f3e7bb43..5377d3d7d0bda1699cc0ec4bf8d917fd77526361 100644 (file)
@@ -14,7 +14,7 @@ OPTLIBS  = transforms instrument profpaths
 ANALIBS  = datastructure ipa target.a 
 
 USEDLIBS = ipo scalaropts analysis $(OPTLIBS) $(ANALIBS) \
-           transformutils asmparser bcreader bcwriter vmcore support
+           transformutils asmparser bcreader bcwriter vmcore support LLVMsystem.a
 
 TOOLLINKOPTS = $(PLATFORMLIBDL)
 
index cae06322f3b7a500274730e5d2a7b2225a68ee6d..35c624a4d6b8befb5a49bf286a26c41741c1bc6d 100644 (file)
@@ -10,6 +10,6 @@ LEVEL = ../..
 
 TOOLNAME = extract
 USEDLIBS = bcreader bcwriter transforms.a ipo.a target.a analysis.a \
-           transformutils.a ipa.a vmcore support.a
+           transformutils.a ipa.a vmcore support.a LLVMsystem.a
 
 include $(LEVEL)/Makefile.common
index 9ff03434451315c01138298b55dade0cc16a8b6f..37404d4b5ffd16146e4e7b025d43be9efd9ec28c 100644 (file)
@@ -10,6 +10,6 @@ LEVEL = ../..
 
 TOOLNAME = gccas
 USEDLIBS = asmparser bcwriter transforms ipo.a ipa.a scalaropts analysis.a \
-           target.a transformutils vmcore support.a
+           target.a transformutils vmcore support.a LLVMsystem.a
 
 include $(LEVEL)/Makefile.common
index 506093489ad0072989d6c93ce7756dfe46bbf50d..fe1b166f044f88bd28225f33869140db28c3e927 100644 (file)
@@ -11,6 +11,6 @@ LEVEL = ../..
 
 TOOLNAME = gccld
 USEDLIBS = ipo.a transforms.a scalaropts.a analysis.a ipa.a transformutils.a \
-           target.a bcreader bcwriter vmcore support.a
+           target.a bcreader bcwriter vmcore support.a LLVMsystem.a
 
 include $(LEVEL)/Makefile.common
index a6361cac210572127233c5c366ab119f7ee37873..ed3225a75bfb42ff5190b3d9a36a4531c66e94f8 100644 (file)
@@ -29,7 +29,8 @@ USEDLIBS = \
        bcreader \
        bcwriter \
        vmcore \
-       support.a
+       support.a \
+       LLVMsystem.a
 TOOLLINKOPTS = $(PLATFORMLIBDL)
 
 include $(LEVEL)/Makefile.common
index 593459d48aa7b619ada21891a0515b5b0f0c6512..403c3965281c2d2a48b6e2fa00567ff276c6f85f 100644 (file)
@@ -47,7 +47,7 @@ ifdef ENABLE_SPARC_JIT
 endif
 
 USEDLIBS = lli-interpreter $(JITLIBS) $(ARCHLIBS) scalaropts analysis.a \
-           transformutils.a bcreader vmcore support target.a
+           transformutils.a bcreader vmcore support target.a LLVMsystem.a
 
 # Have gcc tell the linker to export symbols from the program so that
 # dynamically loaded modules can be linked against them.
index 6dc57390302a77a799cf6d13cee167bbd9b442d8..2f4257b64de43ba2f58128820d20239118b7f6e4 100644 (file)
@@ -9,6 +9,6 @@
 LEVEL = ../..
 
 TOOLNAME = llvm-ar 
-USEDLIBS = bcreader vmcore support.a
+USEDLIBS = bcreader vmcore support.a LLVMsystem.a
 
 include $(LEVEL)/Makefile.common
index 28e90f620ec07fcb1ed48c5442aa92967a5f7e40..689e2684aeee82a45819f6aca75af5fd6c89e9b5 100644 (file)
@@ -8,6 +8,6 @@
 ##===----------------------------------------------------------------------===##
 LEVEL = ../..
 TOOLNAME = llvm-as
-USEDLIBS = asmparser bcwriter vmcore support.a
+USEDLIBS = asmparser bcwriter vmcore support.a LLVMsystem.a
 
 include $(LEVEL)/Makefile.common
index 2608344f38ea090449f7cbccd4b0072fc71febbb..e913be2f14b654e9cf681d00f9b291887374d89a 100644 (file)
@@ -9,5 +9,5 @@
 LEVEL = ../..
 
 TOOLNAME = llvm-bcanalyzer
-USEDLIBS = bcreader vmcore support.a
+USEDLIBS = bcreader vmcore support.a LLVMsystem.a
 include $(LEVEL)/Makefile.common
index cfb2ac52214c5ceb44bc10f87c7ca846c0c4feed..65f7b40cd8531ff965761357a86fed1f1845ed30 100644 (file)
@@ -48,7 +48,7 @@ ifdef ENABLE_SPARC_JIT
 endif
 
 USEDLIBS = lli-interpreter $(JITLIBS) $(ARCHLIBS) scalaropts analysis.a \
-           transformutils.a debugger bcreader vmcore support target.a
+           transformutils.a debugger bcreader vmcore support target.a LLVMsystem.a
 
 
 # Have gcc tell the linker to export symbols from the program so that
index a0b51cf27725a33ca14f1dbb0e36de3eac0b787e..2b0189d40ea27a2e31d76987035dd8f68cd72fb3 100644 (file)
@@ -9,5 +9,5 @@
 LEVEL = ../..
 
 TOOLNAME = llvm-dis
-USEDLIBS = bcreader vmcore support.a
+USEDLIBS = bcreader vmcore support.a LLVMsystem.a
 include $(LEVEL)/Makefile.common
index c3845a17245cf91a9377aa234efaf550916e166a..1fc4683bb494fe92f352bfe55437b0e15f064df5 100644 (file)
@@ -9,6 +9,6 @@
 LEVEL = ../..
 
 TOOLNAME = llvm-link
-USEDLIBS = bcreader bcwriter vmcore support.a
+USEDLIBS = bcreader bcwriter vmcore support.a LLVMsystem.a
 
 include $(LEVEL)/Makefile.common
index d470a7a26d03e601da21bb91c69944442b31c16b..d1b1bd150550fd325156a94724d673b212f3b347 100644 (file)
@@ -9,5 +9,5 @@
 LEVEL = ../..
 
 TOOLNAME = llvm-nm
-USEDLIBS = bcreader vmcore support.a
+USEDLIBS = bcreader vmcore support.a LLVMsystem.a
 include $(LEVEL)/Makefile.common
index 8c96e2bc3403357c8ce6ac4e429a4172455af5f7..c187296f844b9ba4bd2aa3d118d86f1c8e046f11 100644 (file)
@@ -9,5 +9,5 @@
 LEVEL = ../..
 
 TOOLNAME = llvm-prof
-USEDLIBS = analysis.a bcreader vmcore support.a
+USEDLIBS = analysis.a bcreader vmcore support.a LLVMsystem.a
 include $(LEVEL)/Makefile.common
index 42e87ca8bb50608e1fc9beffe8c8dd69f684be65..de0568afd2e2ef626456b468f626c1fd86971668 100644 (file)
@@ -12,7 +12,7 @@ TOOLNAME = opt
 USEDLIBS = bcreader bcwriter \
            instrument profpaths scalaropts \
            ipo ipa datastructure transforms target.a analysis \
-           transformutils vmcore support
+           transformutils vmcore support LLVMsystem.a
 TOOLLINKOPTS = $(PLATFORMLIBDL)
 
 include $(LEVEL)/Makefile.common