summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2013-04-23 23:52:10 +0000
committerBob Wilson <bob.wilson@apple.com>2013-04-23 23:52:10 +0000
commit1d38069f4842973df02525c7bf77a5cbed3b03aa (patch)
tree361778492ec0bf8226dda338c524ed3e5a34dde8 /make
parentd36f07c7f2a915616c3f784c5f77f21f1b86817f (diff)
downloadcompiler-rt-1d38069f4842973df02525c7bf77a5cbed3b03aa.tar.gz
compiler-rt-1d38069f4842973df02525c7bf77a5cbed3b03aa.tar.bz2
compiler-rt-1d38069f4842973df02525c7bf77a5cbed3b03aa.tar.xz
Use the new iOS deployment target command-line options.
We now rely on the -mios-simulator-version-min option to identify the iOS simulator target. I'm not sure if there's anything in compiler-rt where that matters, but it's the right thing to do regardless. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@180163 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'make')
-rw-r--r--make/platform/clang_darwin.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/make/platform/clang_darwin.mk b/make/platform/clang_darwin.mk
index a5e22e6a..ef96b019 100644
--- a/make/platform/clang_darwin.mk
+++ b/make/platform/clang_darwin.mk
@@ -118,9 +118,9 @@ CFLAGS := -Wall -Werror -O3 -fomit-frame-pointer
# supported deployment target -- nothing in the compiler-rt libraries should
# actually depend on the deployment target.
OSX_DEPLOYMENT_ARGS := -mmacosx-version-min=10.4
-IOS_DEPLOYMENT_ARGS := -miphoneos-version-min=1.0
-IOS6_DEPLOYMENT_ARGS := -miphoneos-version-min=6.0
-IOSSIM_DEPLOYMENT_ARGS := -miphoneos-version-min=1.0
+IOS_DEPLOYMENT_ARGS := -mios-version-min=1.0
+IOS6_DEPLOYMENT_ARGS := -mios-version-min=6.0
+IOSSIM_DEPLOYMENT_ARGS := -mios-simulator-version-min=1.0
# Use our stub SDK as the sysroot to support more portable building.
OSX_DEPLOYMENT_ARGS += -isysroot $(ProjSrcRoot)/SDKs/darwin