summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-10-10 05:29:15 +0000
committerBill Wendling <isanbard@gmail.com>2012-10-10 05:29:15 +0000
commitc33b9304dada40806f875b482d003b5c7b8f9c22 (patch)
tree4abe70d52ca55cbe8ce65b15bf0493f634379128 /runtime
parentf5e6d70f8c8f21e744a10fd463cdeddae31cbab5 (diff)
downloadllvm-c33b9304dada40806f875b482d003b5c7b8f9c22.tar.gz
llvm-c33b9304dada40806f875b482d003b5c7b8f9c22.tar.bz2
llvm-c33b9304dada40806f875b482d003b5c7b8f9c22.tar.xz
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
Diffstat (limited to 'runtime')
-rw-r--r--runtime/libprofile/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/libprofile/Makefile b/runtime/libprofile/Makefile
index 1ea0895338..6e9225382a 100644
--- a/runtime/libprofile/Makefile
+++ b/runtime/libprofile/Makefile
@@ -51,7 +51,7 @@ ifeq ($(HOST_OS),Darwin)
# If we're doing an Apple-style build, add the LTO object path.
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) \
-Wl,-object_path_lto -Wl,$(TempFile)
endif