[sanitizer] Stop running tests against 32-bit iOS simulator
llvm-svn: 335245
This commit is contained in:
parent
470b286ee5
commit
bb9dedfa8a
|
|
@ -240,6 +240,11 @@ if config.host_os == 'Darwin':
|
|||
# rdar://problem/22207160
|
||||
config.substitutions.append( ("%darwin_min_target_with_full_runtime_arc_support",
|
||||
"-miphoneos-version-min=9.0" if isIOS else "-mmacosx-version-min=10.11") )
|
||||
|
||||
# 32-bit iOS simulator is deprecated and removed in latest Xcode.
|
||||
if config.apple_platform == "iossim":
|
||||
if config.target_arch == "i386":
|
||||
config.unsupported = True
|
||||
else:
|
||||
config.substitutions.append( ("%macos_min_target_10_11", "") )
|
||||
config.substitutions.append( ("%darwin_min_target_with_full_runtime_arc_support", "") )
|
||||
|
|
|
|||
Loading…
Reference in New Issue