diff options
author | Bob Wilson <bob.wilson@apple.com> | 2012-10-09 23:57:08 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2012-10-09 23:57:08 +0000 |
commit | 1be79391b322ba6da85c949bb8336565dc3e90bc (patch) | |
tree | 2f919efe1b056a496ea7727adc6808680fddb1ff | |
parent | dc47bdc43c62bf2ff01bc71c811a66cb5376d318 (diff) |
Revert "Use a special path to place the .o files in."
This reverts commit 165429 in an attempt to get our buildbots going.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165573 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/libclang/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/libclang/Makefile b/tools/libclang/Makefile index 38b8a0353f..5fdfd0ebb5 100644 --- a/tools/libclang/Makefile +++ b/tools/libclang/Makefile @@ -55,8 +55,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}/clang-lto.XXXXXX) + TempFile = $(shell mktemp ${OBJROOT}/clang-lto.XXXXXX) LLVMLibsOptions += -Wl,-object_path_lto -Wl,$(TempFile) endif endif |