mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-15 22:37:59 +00:00
Build both archive and relinked objects
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16892 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ed0fdf9b02
commit
ddef0b3a6c
@ -10,8 +10,9 @@
|
|||||||
include $(top_srcdir)/Makefile.rules.am
|
include $(top_srcdir)/Makefile.rules.am
|
||||||
|
|
||||||
lib_LIBRARIES = libLLVMDataStructure.a
|
lib_LIBRARIES = libLLVMDataStructure.a
|
||||||
|
libexec_PROGRAMS = LLVMDataStructure.o
|
||||||
|
|
||||||
libLLVMDataStructure_a_SOURCES = \
|
MYSOURCES = \
|
||||||
BottomUpClosure.cpp\
|
BottomUpClosure.cpp\
|
||||||
CompleteBottomUp.cpp\
|
CompleteBottomUp.cpp\
|
||||||
DataStructureAA.cpp\
|
DataStructureAA.cpp\
|
||||||
@ -28,3 +29,7 @@ libLLVMDataStructure_a_SOURCES = \
|
|||||||
Printer.cpp\
|
Printer.cpp\
|
||||||
Steensgaard.cpp\
|
Steensgaard.cpp\
|
||||||
TopDownClosure.cpp
|
TopDownClosure.cpp
|
||||||
|
|
||||||
|
libLLVMDataStructure_a_SOURCES = $(MYSOURCES)
|
||||||
|
LLVMDataStructure_o_SOURCES = $(MYSOURCES)
|
||||||
|
LIBS=
|
||||||
|
@ -10,8 +10,9 @@
|
|||||||
include $(top_srcdir)/Makefile.rules.am
|
include $(top_srcdir)/Makefile.rules.am
|
||||||
|
|
||||||
lib_LIBRARIES = libLLVMIPA.a
|
lib_LIBRARIES = libLLVMIPA.a
|
||||||
|
libexec_PROGRAMS = LLVMIPA.o
|
||||||
|
|
||||||
libLLVMIPA_a_SOURCES = \
|
MYSOURCES = \
|
||||||
Andersens.cpp \
|
Andersens.cpp \
|
||||||
CallGraph.cpp \
|
CallGraph.cpp \
|
||||||
CallGraphSCCPass.cpp \
|
CallGraphSCCPass.cpp \
|
||||||
@ -19,3 +20,6 @@ libLLVMIPA_a_SOURCES = \
|
|||||||
FindUsedTypes.cpp \
|
FindUsedTypes.cpp \
|
||||||
GlobalsModRef.cpp \
|
GlobalsModRef.cpp \
|
||||||
PrintSCC.cpp
|
PrintSCC.cpp
|
||||||
|
libLLVMIPA_a_SOURCES = $(MYSOURCES)
|
||||||
|
LLVMIPA_o_SOURCES = $(MYSOURCES)
|
||||||
|
LIBS=
|
||||||
|
@ -12,8 +12,9 @@ include $(top_srcdir)/Makefile.rules.am
|
|||||||
SUBDIRS = IPA DataStructure
|
SUBDIRS = IPA DataStructure
|
||||||
|
|
||||||
lib_LIBRARIES = libLLVMAnalysis.a
|
lib_LIBRARIES = libLLVMAnalysis.a
|
||||||
|
libexec_PROGRAMS = LLVMAnalysis.o
|
||||||
|
|
||||||
libLLVMAnalysis_a_SOURCES = \
|
MYSOURCES = \
|
||||||
AliasAnalysisCounter.cpp \
|
AliasAnalysisCounter.cpp \
|
||||||
AliasAnalysis.cpp \
|
AliasAnalysis.cpp \
|
||||||
AliasAnalysisEvaluator.cpp \
|
AliasAnalysisEvaluator.cpp \
|
||||||
@ -33,3 +34,7 @@ libLLVMAnalysis_a_SOURCES = \
|
|||||||
ScalarEvolution.cpp \
|
ScalarEvolution.cpp \
|
||||||
Trace.cpp \
|
Trace.cpp \
|
||||||
ValueNumbering.cpp
|
ValueNumbering.cpp
|
||||||
|
|
||||||
|
libLLVMAnalysis_a_SOURCES = $(MYSOURCES)
|
||||||
|
LLVMAnalysis_o_SOURCES = $(MYSOURCES)
|
||||||
|
LIBS=
|
||||||
|
Loading…
x
Reference in New Issue
Block a user