diff options
author | Alexey Samsonov <samsonov@google.com> | 2013-07-16 13:16:15 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2013-07-16 13:16:15 +0000 |
commit | af4806f719f65b18f88a958738a28982ceb28fb6 (patch) | |
tree | 58dea9bb304f32bdbef861d91b29a82deace0be7 | |
parent | 1d4dbda5b972be9a424dfe94592794b56ebb7cd2 (diff) | |
download | bcm5719-llvm-af4806f719f65b18f88a958738a28982ceb28fb6.tar.gz bcm5719-llvm-af4806f719f65b18f88a958738a28982ceb28fb6.zip |
[ASan] Bump min supported Mac OS X version to 10.6 - makefile build
llvm-svn: 186410
-rw-r--r-- | compiler-rt/make/platform/clang_darwin.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/make/platform/clang_darwin.mk b/compiler-rt/make/platform/clang_darwin.mk index cb61744e5b7..fc599f1ab6b 100644 --- a/compiler-rt/make/platform/clang_darwin.mk +++ b/compiler-rt/make/platform/clang_darwin.mk @@ -127,12 +127,12 @@ CFLAGS.eprintf := $(CFLAGS) $(OSX_DEPLOYMENT_ARGS) CFLAGS.10.4 := $(CFLAGS) $(OSX_DEPLOYMENT_ARGS) # FIXME: We can't build ASAN with our stub SDK yet. CFLAGS.asan_osx_dynamic := \ - $(CFLAGS) -mmacosx-version-min=10.5 -fno-builtin \ + $(CFLAGS) -mmacosx-version-min=10.6 -fno-builtin \ -gline-tables-only \ -DMAC_INTERPOSE_FUNCTIONS=1 \ -DASAN_FLEXIBLE_MAPPING_AND_OFFSET=1 -CFLAGS.ubsan_osx := $(CFLAGS) -mmacosx-version-min=10.5 -fno-builtin +CFLAGS.ubsan_osx := $(CFLAGS) -mmacosx-version-min=10.6 -fno-builtin CFLAGS.ios.i386 := $(CFLAGS) $(IOSSIM_DEPLOYMENT_ARGS) CFLAGS.ios.x86_64 := $(CFLAGS) $(IOSSIM_DEPLOYMENT_ARGS) |