1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Use -object_path_lto when linking executables if building Apple style.

llvm-svn: 165282
This commit is contained in:
Bill Wendling 2012-10-05 00:22:46 +00:00
parent 21268a786e
commit 25c1125efc

View File

@ -644,6 +644,10 @@ else
ifneq ($(DARWIN_MAJVERS),4) ifneq ($(DARWIN_MAJVERS),4)
LD.Flags += $(RPATH) -Wl,@executable_path/../lib LD.Flags += $(RPATH) -Wl,@executable_path/../lib
endif endif
ifeq ($(RC_BUILDIT),YES)
TempFile := $(shell mktemp ${OBJROOT}/llvm-lto.XXXXXX)
LD.Flags += -Wl,-object_path_lto -Wl,$(TempFile)
endif
endif endif
endif endif