[Runtime] Rename ClientRetainRelease library to SwiftDirectRuntime.

This library will likely become home to other fast-path-in-client functions, so give it a more general name.
This commit is contained in:
Mike Ash
2025-10-31 20:35:15 -04:00
parent b01436d67b
commit 1898b01ce6
17 changed files with 89 additions and 85 deletions

View File

@@ -271,16 +271,16 @@ option(SWIFT_BUILD_STDLIB_CXX_MODULE
"If not building stdlib, controls whether to build the Cxx module"
TRUE)
# The swiftClientRetainRelease library is currently only available for Darwin
# The swiftSwiftDirectRuntime library is currently only available for Darwin
# platforms.
if(SWIFT_HOST_VARIANT_SDK IN_LIST SWIFT_DARWIN_PLATFORMS)
# Off by default everywhere for now.
option(SWIFT_BUILD_CLIENT_RETAIN_RELEASE
"Build the swiftClientRetainRelease library"
option(SWIFT_BUILD_SWIFT_DIRECT_RUNTIME
"Build the swiftSwiftDirectRuntime library"
FALSE)
else()
option(SWIFT_BUILD_CLIENT_RETAIN_RELEASE
"Build the swiftClientRetainRelease library"
option(SWIFT_BUILD_SWIFT_DIRECT_RUNTIME
"Build the swiftSwiftDirectRuntime library"
FALSE)
endif()