Update maccatalyst 13.0 target minimum to 13.1

Clang enforces a minimum 13.1 deployment target. The driver, API
checker, and various tests assume 13.0 is a valid minimum. Update these
to reflect the actual 13.1 minimum.

Resolves rdar://84177900
This commit is contained in:
Ben Barham
2021-10-16 10:46:50 +10:00
parent 8f443ffbd4
commit f4ab22e231
11 changed files with 42 additions and 42 deletions

View File

@@ -28,7 +28,7 @@ endfunction()
function(get_swift_test_versioned_target_triple variant_triple_out_var sdk arch build_flavor)
if(build_flavor STREQUAL "ios-like")
# Use the macCatalyst target triple and compiler resources for the iOS-like build flavor.
set(variant_triple "${arch}-apple-ios13.0-macabi")
set(variant_triple "${arch}-apple-ios13.1-macabi")
else()
get_versioned_target_triple(variant_triple ${sdk} ${arch} "${SWIFT_SDK_${sdk}_DEPLOYMENT_VERSION}")
endif()