diff options
author | Bob Wilson <bob.wilson@apple.com> | 2012-10-09 23:59:01 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2012-10-09 23:59:01 +0000 |
commit | 52bcafe4bfaf27524bf6575ec397e918d13ec6ce (patch) | |
tree | e041cd07236d932d3fc0d051b20567b5316edefb /runtime | |
parent | 7208fae969225fd7915a7ecb9a98ef751dec7e69 (diff) |
Revert "Use a special path to place the .o files in."
This reverts commit 165428 in an attempt to get our buildbots going.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165574 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/libprofile/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/libprofile/Makefile b/runtime/libprofile/Makefile index e9b220cf2f..1ea0895338 100644 --- a/runtime/libprofile/Makefile +++ b/runtime/libprofile/Makefile @@ -51,8 +51,7 @@ ifeq ($(HOST_OS),Darwin) # If we're doing an Apple-style build, add the LTO object path. ifeq ($(RC_BUILDIT),YES) - ObjDir := $(shell mkdir -p ${OBJROOT}/dSYMs) - TempFile := $(shell mktemp ${ObjDir}/profile_rt-lto.XXXXXX) + TempFile = $(shell mktemp ${OBJROOT}/profile_rt-lto.XXXXXX) LLVMLibsOptions := $(LLVMLibsOptions) \ -Wl,-object_path_lto -Wl,$(TempFile) endif |