mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
Place temporary LTO files into their own subdirectory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165599 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f5e6d70f8c
commit
c33b9304da
@ -645,7 +645,7 @@ else
|
|||||||
LD.Flags += $(RPATH) -Wl,@executable_path/../lib
|
LD.Flags += $(RPATH) -Wl,@executable_path/../lib
|
||||||
endif
|
endif
|
||||||
ifeq ($(RC_BUILDIT),YES)
|
ifeq ($(RC_BUILDIT),YES)
|
||||||
TempFile := $(shell mktemp ${OBJROOT}/llvm-lto.XXXXXX)
|
TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/llvm-lto.XXXXXX)
|
||||||
LD.Flags += -Wl,-object_path_lto -Wl,$(TempFile)
|
LD.Flags += -Wl,-object_path_lto -Wl,$(TempFile)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
@ -51,7 +51,7 @@ ifeq ($(HOST_OS),Darwin)
|
|||||||
|
|
||||||
# If we're doing an Apple-style build, add the LTO object path.
|
# If we're doing an Apple-style build, add the LTO object path.
|
||||||
ifeq ($(RC_BUILDIT),YES)
|
ifeq ($(RC_BUILDIT),YES)
|
||||||
TempFile = $(shell mktemp ${OBJROOT}/profile_rt-lto.XXXXXX)
|
TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/profile_rt-lto.XXXXXX)
|
||||||
LLVMLibsOptions := $(LLVMLibsOptions) \
|
LLVMLibsOptions := $(LLVMLibsOptions) \
|
||||||
-Wl,-object_path_lto -Wl,$(TempFile)
|
-Wl,-object_path_lto -Wl,$(TempFile)
|
||||||
endif
|
endif
|
||||||
|
@ -52,7 +52,7 @@ ifeq ($(HOST_OS),Darwin)
|
|||||||
|
|
||||||
# If we're doing an Apple-style build, add the LTO object path.
|
# If we're doing an Apple-style build, add the LTO object path.
|
||||||
ifeq ($(RC_BUILDIT),YES)
|
ifeq ($(RC_BUILDIT),YES)
|
||||||
TempFile = $(shell mktemp ${OBJROOT}/llvm-lto.XXXXXX)
|
TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/llvm-lto.XXXXXX)
|
||||||
LLVMLibsOptions := $(LLVMLibsOptions) \
|
LLVMLibsOptions := $(LLVMLibsOptions) \
|
||||||
-Wl,-object_path_lto -Wl,$(TempFile)
|
-Wl,-object_path_lto -Wl,$(TempFile)
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user