diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-02-13 19:44:08 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-02-13 19:44:08 +0000 |
commit | ee740ddf9d8248e39032567dc22766b0f8b45cd6 (patch) | |
tree | d192168475ea201bdb83dc04b9fd7281beee4cec | |
parent | ecb8c2ba6029f02b01b20b110cc1b3b3ea2e1f1c (diff) |
Use 'RC_XBS' instead of 'RC_BUILDIT' to catch all times when it's built in the Apple way.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175069 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Makefile.rules | 2 | ||||
-rw-r--r-- | runtime/libprofile/Makefile | 2 | ||||
-rw-r--r-- | tools/lto/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.rules b/Makefile.rules index 2f566eeb92..c737965d09 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -656,7 +656,7 @@ else ifneq ($(DARWIN_MAJVERS),4) LD.Flags += $(RPATH) -Wl,@executable_path/../lib endif - ifeq ($(RC_BUILDIT),YES) + ifeq ($(RC_XBS),YES) TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/llvm-lto.XXXXXX) LD.Flags += -Wl,-object_path_lto -Wl,$(TempFile) endif diff --git a/runtime/libprofile/Makefile b/runtime/libprofile/Makefile index 6e9225382a..44ea204bcf 100644 --- a/runtime/libprofile/Makefile +++ b/runtime/libprofile/Makefile @@ -50,7 +50,7 @@ ifeq ($(HOST_OS),Darwin) endif # If we're doing an Apple-style build, add the LTO object path. - ifeq ($(RC_BUILDIT),YES) + ifeq ($(RC_XBS),YES) TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/profile_rt-lto.XXXXXX) LLVMLibsOptions := $(LLVMLibsOptions) \ -Wl,-object_path_lto -Wl,$(TempFile) diff --git a/tools/lto/Makefile b/tools/lto/Makefile index 3610fed03b..ab2e16e5fa 100644 --- a/tools/lto/Makefile +++ b/tools/lto/Makefile @@ -51,7 +51,7 @@ ifeq ($(HOST_OS),Darwin) endif # If we're doing an Apple-style build, add the LTO object path. - ifeq ($(RC_BUILDIT),YES) + ifeq ($(RC_XBS),YES) TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/llvm-lto.XXXXXX) LLVMLibsOptions := $(LLVMLibsOptions) \ -Wl,-object_path_lto -Wl,$(TempFile) |