You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Enable internal checks for the Swift standard library (useful for debugging the library itself, does not affect checks required for safety)"
465
465
"${SWIFT_STDLIB_ASSERTIONS_default}")
466
466
467
+
option(SWIFT_STDLIB_ENABLE_STRICT_AVAILABILITY
468
+
"Enable strict availability; this will cause things to break at desk or in CI if the host OS is a lower version than some `@availability` annotations in the runtime code"
469
+
FALSE)
470
+
467
471
option(SWIFT_BUILD_RUNTIME_WITH_HOST_COMPILER
468
472
"Use the host compiler and not the internal clang to build the swift runtime"
469
473
FALSE)
@@ -1406,8 +1410,9 @@ endif()
1406
1410
1407
1411
if(SWIFT_BUILD_STDLIB OR SWIFT_BUILD_SDK_OVERLAY)
1408
1412
message(STATUS"Building Swift standard library and overlays for SDKs: ${SWIFT_SDKS}")
defaulted_option(SwiftCore_ENABLE_STRICT_AVAILABILITY "Enable strict availability; this will cause things to break at desk or in CI if the host OS is a lower version than some `@availability` annotations in the runtime code")
0 commit comments