We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1861b8d commit 96f7e24Copy full SHA for 96f7e24
Sources/SwiftIfConfig/BuildConfiguration.swift
@@ -291,3 +291,11 @@ public protocol BuildConfiguration {
291
/// #endif
292
var compilerVersion: VersionTuple { get }
293
}
294
+
295
+/// Default implementation of BuildConfiguration, to avoid a revlock with the
296
+/// swift repo.
297
+extension BuildConfiguration {
298
+ func isActiveTargetObjectFileFormat(name: String) throws -> Bool {
299
+ return false
300
+ }
301
+}
0 commit comments