forked from OSchip/llvm-project
Only build .a file versions of these libraries, instead of .a and .o versions.
This should speed up build times. llvm-svn: 23933
This commit is contained in:
parent
c64f3de8d5
commit
8c087e962c
|
@ -9,6 +9,7 @@
|
|||
LEVEL = ../../..
|
||||
LIBRARYNAME = LLVMipa
|
||||
BUILD_ARCHIVE = 1
|
||||
DONT_BUILD_RELINKED = 1
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
||||
|
|
|
@ -11,6 +11,7 @@ LEVEL = ../..
|
|||
LIBRARYNAME = LLVMAnalysis
|
||||
PARALLEL_DIRS = IPA DataStructure
|
||||
BUILD_ARCHIVE = 1
|
||||
DONT_BUILD_RELINKED = 1
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
LEVEL = ../../..
|
||||
LIBRARYNAME = LLVMipo
|
||||
BUILD_ARCHIVE = 1
|
||||
DONT_BUILD_RELINKED = 1
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@ LEVEL = ../../..
|
|||
LIBRARYNAME = LLVMInstrumentation
|
||||
PARALLEL_DIRS = ProfilePaths
|
||||
BUILD_ARCHIVE = 1
|
||||
DONT_BUILD_RELINKED = 1
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@ LEVEL = ../..
|
|||
PARALLEL_DIRS = Utils Instrumentation Scalar IPO
|
||||
LIBRARYNAME = LLVMTransforms
|
||||
BUILD_ARCHIVE = 1
|
||||
DONT_BUILD_RELINKED = 1
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
LEVEL = ../../..
|
||||
LIBRARYNAME = LLVMScalarOpts
|
||||
BUILD_ARCHIVE = 1
|
||||
DONT_BUILD_RELINKED = 1
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
||||
|
|
|
@ -6,9 +6,11 @@
|
|||
# the University of Illinois Open Source License. See LICENSE.TXT for details.
|
||||
#
|
||||
##===----------------------------------------------------------------------===##
|
||||
|
||||
LEVEL = ../../..
|
||||
LIBRARYNAME = LLVMTransformUtils
|
||||
BUILD_ARCHIVE = 1
|
||||
DONT_BUILD_RELINKED = 1
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
||||
|
|
Loading…
Reference in New Issue