1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00

Now that all libraries are built in either .o or .a form, make BUILD_ARCHIVE

default to turning off building of relinked objects.

llvm-svn: 23939
This commit is contained in:
Chris Lattner 2005-10-24 02:21:45 +00:00
parent 9793d642d5
commit e883209bb7

View File

@ -824,10 +824,18 @@ endif
#---------------------------------------------------------
# ReLinked Library Targets:
# If the user didn't explicitly forbid building a
# relinked then we provide targets for building them.
# If the user explicitly requests a relinked library with
# BUILD_RELINKED, provide it. Otherwise, if they specify
# neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
# them one.
#---------------------------------------------------------
ifndef BUILD_ARCHIVE
ifndef DONT_BUILD_RELINKED
BUILD_RELINKED = 1
endif
endif
ifdef BUILD_RELINKED
all-local:: $(LibName.O)