Skip to content

Commit 071c975

Browse files
committed
Revert "Work around Windows build failure due to SwiftPM regression."
This reverts commit b03288b.
1 parent b03288b commit 071c975

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

Package.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,6 @@ extension Array where Element == PackageDescription.SwiftSetting {
128128
.enableExperimentalFeature("AccessLevelOnImport"),
129129
.enableUpcomingFeature("InternalImportsByDefault"),
130130

131-
.enableExperimentalFeature("SymbolLinkageMarkers"),
132-
133131
.define("SWT_TARGET_OS_APPLE", .when(platforms: [.macOS, .iOS, .macCatalyst, .watchOS, .tvOS, .visionOS])),
134132

135133
.define("SWT_NO_EXIT_TESTS", .when(platforms: [.iOS, .watchOS, .tvOS, .visionOS, .wasi, .android])),

Sources/Testing/ABI/EntryPoints/ABIEntryPoint.swift

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,6 @@ extension ABIv0 {
6060
///
6161
/// - Returns: The value of ``ABIv0/entryPoint-swift.type.property`` cast to an
6262
/// untyped pointer.
63-
#if hasFeature(SymbolLinkageMarkers)
64-
@_used
65-
#endif
6663
@_cdecl("swt_abiv0_getEntryPoint")
6764
@usableFromInline func abiv0_getEntryPoint() -> UnsafeRawPointer {
6865
unsafeBitCast(ABIv0.entryPoint, to: UnsafeRawPointer.self)
@@ -85,9 +82,6 @@ typealias ABIEntryPoint_v0 = @Sendable (
8582
/// Xcode 16 Beta 1.
8683
///
8784
/// This function will be removed in a future update.
88-
#if hasFeature(SymbolLinkageMarkers)
89-
@_used
90-
#endif
9185
@available(*, deprecated, message: "Use ABIv0.entryPoint (swt_abiv0_getEntryPoint()) instead.")
9286
@_cdecl("swt_copyABIEntryPoint_v0")
9387
@usableFromInline func copyABIEntryPoint_v0() -> UnsafeMutableRawPointer {

cmake/modules/shared/CompilerSettings.cmake

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ add_compile_options(
1515
add_compile_options(
1616
"SHELL:$<$<COMPILE_LANGUAGE:Swift>:-Xfrontend -enable-upcoming-feature -Xfrontend ExistentialAny>"
1717
"SHELL:$<$<COMPILE_LANGUAGE:Swift>:-Xfrontend -enable-upcoming-feature -Xfrontend InternalImportsByDefault>")
18-
add_compile_options(
19-
"SHELL:$<$<COMPILE_LANGUAGE:Swift>:-Xfrontend -enable-experimental-feature -Xfrontend SymbolLinkageMarkers>")
2018
add_compile_options(
2119
"SHELL:$<$<COMPILE_LANGUAGE:Swift>:-package-name swift_testing>")
2220

0 commit comments

Comments
 (0)