summaryrefslogtreecommitdiff
path: root/tools/lto/Makefile
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-10-08 21:17:45 +0000
committerBill Wendling <isanbard@gmail.com>2012-10-08 21:17:45 +0000
commite57cb731532cfe91788823cd5b5b847311bd3920 (patch)
treea6aae940bc1ae3d448ef9048ca0e90693454736e /tools/lto/Makefile
parentc56e3f0cdde9b5e3f8222ece7b5968ae9961955e (diff)
downloadllvm-e57cb731532cfe91788823cd5b5b847311bd3920.tar.gz
llvm-e57cb731532cfe91788823cd5b5b847311bd3920.tar.bz2
llvm-e57cb731532cfe91788823cd5b5b847311bd3920.tar.xz
Use a special path to place the .o files in.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165428 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lto/Makefile')
-rw-r--r--tools/lto/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/lto/Makefile b/tools/lto/Makefile
index 3e7621f6db..4a468dedf5 100644
--- a/tools/lto/Makefile
+++ b/tools/lto/Makefile
@@ -52,7 +52,8 @@ 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}/llvm-lto.XXXXXX)
+ ObjDir := $(shell mkdir -p ${OBJROOT}/dSYMs)
+ TempFile := $(shell mktemp ${ObjDir}/llvm-lto.XXXXXX)
LLVMLibsOptions := $(LLVMLibsOptions) \
-Wl,-object_path_lto -Wl,$(TempFile)
endif