mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Add the LLVMsystem.a library as it is now used for operating system
independence of the tool. llvm-svn: 16092
This commit is contained in:
parent
8cb2484800
commit
e044a2172e
@ -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
|
||||
|
@ -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)
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -29,7 +29,8 @@ USEDLIBS = \
|
||||
bcreader \
|
||||
bcwriter \
|
||||
vmcore \
|
||||
support.a
|
||||
support.a \
|
||||
LLVMsystem.a
|
||||
TOOLLINKOPTS = $(PLATFORMLIBDL)
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
@ -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.
|
||||
|
@ -9,6 +9,6 @@
|
||||
LEVEL = ../..
|
||||
|
||||
TOOLNAME = llvm-ar
|
||||
USEDLIBS = bcreader vmcore support.a
|
||||
USEDLIBS = bcreader vmcore support.a LLVMsystem.a
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
@ -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
|
||||
|
@ -9,5 +9,5 @@
|
||||
LEVEL = ../..
|
||||
|
||||
TOOLNAME = llvm-bcanalyzer
|
||||
USEDLIBS = bcreader vmcore support.a
|
||||
USEDLIBS = bcreader vmcore support.a LLVMsystem.a
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
@ -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
|
||||
|
@ -9,5 +9,5 @@
|
||||
LEVEL = ../..
|
||||
|
||||
TOOLNAME = llvm-dis
|
||||
USEDLIBS = bcreader vmcore support.a
|
||||
USEDLIBS = bcreader vmcore support.a LLVMsystem.a
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
@ -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
|
||||
|
@ -9,5 +9,5 @@
|
||||
LEVEL = ../..
|
||||
|
||||
TOOLNAME = llvm-nm
|
||||
USEDLIBS = bcreader vmcore support.a
|
||||
USEDLIBS = bcreader vmcore support.a LLVMsystem.a
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user