Skip to content

Commit

Permalink
Add the LLVMsystem.a library as it is now used for operating system
Browse files Browse the repository at this point in the history
independence of the tool.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16092 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Reid Spencer committed Aug 29, 2004
1 parent 9de7b33 commit 7c4c98d
Show file tree
Hide file tree
Showing 16 changed files with 17 additions and 16 deletions.
2 changes: 1 addition & 1 deletion tools/analyze/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tools/bugpoint/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion tools/extract/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion tools/gccas/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion tools/gccld/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 2 additions & 1 deletion tools/llc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ USEDLIBS = \
bcreader \
bcwriter \
vmcore \
support.a
support.a \
LLVMsystem.a
TOOLLINKOPTS = $(PLATFORMLIBDL)

include $(LEVEL)/Makefile.common
Expand Down
2 changes: 1 addition & 1 deletion tools/lli/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion tools/llvm-ar/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
LEVEL = ../..

TOOLNAME = llvm-ar
USEDLIBS = bcreader vmcore support.a
USEDLIBS = bcreader vmcore support.a LLVMsystem.a

include $(LEVEL)/Makefile.common
2 changes: 1 addition & 1 deletion tools/llvm-as/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion tools/llvm-bcanalyzer/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
LEVEL = ../..

TOOLNAME = llvm-bcanalyzer
USEDLIBS = bcreader vmcore support.a
USEDLIBS = bcreader vmcore support.a LLVMsystem.a
include $(LEVEL)/Makefile.common
2 changes: 1 addition & 1 deletion tools/llvm-db/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tools/llvm-dis/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
LEVEL = ../..

TOOLNAME = llvm-dis
USEDLIBS = bcreader vmcore support.a
USEDLIBS = bcreader vmcore support.a LLVMsystem.a
include $(LEVEL)/Makefile.common
2 changes: 1 addition & 1 deletion tools/llvm-link/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion tools/llvm-nm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
LEVEL = ../..

TOOLNAME = llvm-nm
USEDLIBS = bcreader vmcore support.a
USEDLIBS = bcreader vmcore support.a LLVMsystem.a
include $(LEVEL)/Makefile.common
2 changes: 1 addition & 1 deletion tools/llvm-prof/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion tools/opt/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 7c4c98d

Please sign in to comment.