The Swift Package Index logo.Swift Package Index

Build Information

Failed to build MachOKit, reference main (6103fa), with Swift 6.0 for macOS (SPM) on 19 Apr 2026 07:32:54 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64

Build Log

    |                         `- error: cannot find 'unsafe' in scope
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:40:16: error: cannot find 'unsafe' in scope
 38 |         }
 39 |
 40 |         return unsafe (ptr, size)
    |                `- error: cannot find 'unsafe' in scope
 41 |     }
 42 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:30: error: cannot find 'unsafe' in scope
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                              `- error: cannot find 'unsafe' in scope
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:26: error: cannot find 'unsafe' in scope
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                          `- error: cannot find 'unsafe' in scope
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:49:16: error: cannot find 'unsafe' in scope
 47 |         }
 48 |
 49 |         return unsafe String(cString: path)
    |                `- error: cannot find 'unsafe' in scope
 50 |     }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:24: error: cannot find 'unsafe' in scope
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                        `- error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:51: warning: result of call to 'makeIterator()' is unused
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                                                   `- warning: result of call to 'makeIterator()' is unused
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:58:28: error: cannot find 'unsafe' in scope
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
 58 |         while let handle = unsafe iterator.next() {
    |                            `- error: cannot find 'unsafe' in scope
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:32: error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                `- error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:63:20: error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
 63 |             return unsafe unsafeBitCast(symbol, to: T.self)
    |                    `- error: cannot find 'unsafe' in scope
 64 |         }
 65 |
[108/269] Compiling MachOKit DataTrieTree.swift
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:61: error: consecutive declarations on a line must be separated by ';'
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                             `- error: consecutive declarations on a line must be separated by ';'
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:68: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                                    `- error: expected declaration
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:16:16: error: expected ',' separator
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
    |                `- error: expected ',' separator
 17 |         fallbackHandle,
 18 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:18:5: error: unexpected ',' separator
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
 17 |         fallbackHandle,
 18 |     ]
    |     `- error: unexpected ',' separator
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:51: error: consecutive declarations on a line must be separated by ';'
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                   `- error: consecutive declarations on a line must be separated by ';'
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:58: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
    :
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                          `- error: expected declaration
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:54: error: consecutive declarations on a line must be separated by ';'
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                      `- error: consecutive declarations on a line must be separated by ';'
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:61: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
    :
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                             `- error: expected declaration
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:37: error: expected 'else' after 'guard' condition
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                     `- error: expected 'else' after 'guard' condition
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:30: error: consecutive statements on a line must be separated by ';'
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                              `- error: consecutive statements on a line must be separated by ';'
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:37: error: consecutive statements on a line must be separated by ';'
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                     `- error: consecutive statements on a line must be separated by ';'
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:62: error: expected expression
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                                              `- error: expected expression
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:32: error: expected 'else' after 'guard' condition
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                `- error: expected 'else' after 'guard' condition
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:25: error: consecutive statements on a line must be separated by ';'
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                         `- error: consecutive statements on a line must be separated by ';'
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:84: error: consecutive statements on a line must be separated by ';'
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                                                                    `- error: consecutive statements on a line must be separated by ';'
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:86: error: expected expression
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                                                                      `- error: expected expression
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:37: error: expected 'else' after 'guard' condition
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                     `- error: expected 'else' after 'guard' condition
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:30: error: consecutive statements on a line must be separated by ';'
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                              `- error: consecutive statements on a line must be separated by ';'
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:64: error: consecutive statements on a line must be separated by ';'
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                                                `- error: consecutive statements on a line must be separated by ';'
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:64: error: expected expression
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                                                `- error: expected expression
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:26: error: consecutive statements on a line must be separated by ';'
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                          `- error: consecutive statements on a line must be separated by ';'
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:42: error: consecutive statements on a line must be separated by ';'
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                                          `- error: consecutive statements on a line must be separated by ';'
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:44: error: expected expression
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                                            `- error: expected expression
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:49:16: error: consecutive statements on a line must be separated by ';'
 47 |         }
 48 |
 49 |         return unsafe String(cString: path)
    |                `- error: consecutive statements on a line must be separated by ';'
 50 |     }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:24: error: consecutive statements on a line must be separated by ';'
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                        `- error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:58:35: error: expected '{' after 'while' condition
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
 58 |         while let handle = unsafe iterator.next() {
    |                                   `- error: expected '{' after 'while' condition
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:39: error: expected 'else' after 'guard' condition
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                       `- error: expected 'else' after 'guard' condition
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:32: error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                `- error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:93: error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                                                                             `- error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:95: error: expected expression
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                                                                               `- error: expected expression
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:63:20: error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
 63 |             return unsafe unsafeBitCast(symbol, to: T.self)
    |                    `- error: consecutive statements on a line must be separated by ';'
 64 |         }
 65 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:7:2: error: unknown attribute 'unsafe'
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |  `- error: unknown attribute 'unsafe'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:61: error: cannot find 'unsafe' in scope
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                             `- error: cannot find 'unsafe' in scope
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:15:94: error: cannot find 'unsafe' in scope
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
    |                                                                                              `- error: cannot find 'unsafe' in scope
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
 17 |         fallbackHandle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:16:9: error: cannot find 'unsafe' in scope
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
    |         `- error: cannot find 'unsafe' in scope
 17 |         fallbackHandle,
 18 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:51: error: cannot find 'unsafe' in scope
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                   `- error: cannot find 'unsafe' in scope
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:54: error: cannot find 'unsafe' in scope
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                      `- error: cannot find 'unsafe' in scope
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:30: error: cannot find 'unsafe' in scope
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                              `- error: cannot find 'unsafe' in scope
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:25: error: cannot find 'unsafe' in scope
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                         `- error: cannot find 'unsafe' in scope
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:40:16: error: cannot find 'unsafe' in scope
 38 |         }
 39 |
 40 |         return unsafe (ptr, size)
    |                `- error: cannot find 'unsafe' in scope
 41 |     }
 42 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:30: error: cannot find 'unsafe' in scope
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                              `- error: cannot find 'unsafe' in scope
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:26: error: cannot find 'unsafe' in scope
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                          `- error: cannot find 'unsafe' in scope
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:49:16: error: cannot find 'unsafe' in scope
 47 |         }
 48 |
 49 |         return unsafe String(cString: path)
    |                `- error: cannot find 'unsafe' in scope
 50 |     }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:24: error: cannot find 'unsafe' in scope
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                        `- error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:51: warning: result of call to 'makeIterator()' is unused
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                                                   `- warning: result of call to 'makeIterator()' is unused
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:58:28: error: cannot find 'unsafe' in scope
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
 58 |         while let handle = unsafe iterator.next() {
    |                            `- error: cannot find 'unsafe' in scope
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:32: error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                `- error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:63:20: error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
 63 |             return unsafe unsafeBitCast(symbol, to: T.self)
    |                    `- error: cannot find 'unsafe' in scope
 64 |         }
 65 |
[109/269] Compiling MachOKit MemoryTrieTree.swift
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:61: error: consecutive declarations on a line must be separated by ';'
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                             `- error: consecutive declarations on a line must be separated by ';'
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:68: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                                    `- error: expected declaration
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:16:16: error: expected ',' separator
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
    |                `- error: expected ',' separator
 17 |         fallbackHandle,
 18 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:18:5: error: unexpected ',' separator
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
 17 |         fallbackHandle,
 18 |     ]
    |     `- error: unexpected ',' separator
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:51: error: consecutive declarations on a line must be separated by ';'
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                   `- error: consecutive declarations on a line must be separated by ';'
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:58: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
    :
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                          `- error: expected declaration
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:54: error: consecutive declarations on a line must be separated by ';'
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                      `- error: consecutive declarations on a line must be separated by ';'
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:61: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
    :
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                             `- error: expected declaration
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:37: error: expected 'else' after 'guard' condition
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                     `- error: expected 'else' after 'guard' condition
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:30: error: consecutive statements on a line must be separated by ';'
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                              `- error: consecutive statements on a line must be separated by ';'
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:37: error: consecutive statements on a line must be separated by ';'
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                     `- error: consecutive statements on a line must be separated by ';'
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:62: error: expected expression
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                                              `- error: expected expression
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:32: error: expected 'else' after 'guard' condition
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                `- error: expected 'else' after 'guard' condition
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:25: error: consecutive statements on a line must be separated by ';'
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                         `- error: consecutive statements on a line must be separated by ';'
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:84: error: consecutive statements on a line must be separated by ';'
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                                                                    `- error: consecutive statements on a line must be separated by ';'
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:86: error: expected expression
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                                                                      `- error: expected expression
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:37: error: expected 'else' after 'guard' condition
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                     `- error: expected 'else' after 'guard' condition
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:30: error: consecutive statements on a line must be separated by ';'
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                              `- error: consecutive statements on a line must be separated by ';'
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:64: error: consecutive statements on a line must be separated by ';'
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                                                `- error: consecutive statements on a line must be separated by ';'
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:64: error: expected expression
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                                                `- error: expected expression
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:26: error: consecutive statements on a line must be separated by ';'
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                          `- error: consecutive statements on a line must be separated by ';'
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:42: error: consecutive statements on a line must be separated by ';'
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                                          `- error: consecutive statements on a line must be separated by ';'
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:44: error: expected expression
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                                            `- error: expected expression
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:49:16: error: consecutive statements on a line must be separated by ';'
 47 |         }
 48 |
 49 |         return unsafe String(cString: path)
    |                `- error: consecutive statements on a line must be separated by ';'
 50 |     }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:24: error: consecutive statements on a line must be separated by ';'
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                        `- error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:58:35: error: expected '{' after 'while' condition
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
 58 |         while let handle = unsafe iterator.next() {
    |                                   `- error: expected '{' after 'while' condition
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:39: error: expected 'else' after 'guard' condition
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                       `- error: expected 'else' after 'guard' condition
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:32: error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                `- error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:93: error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                                                                             `- error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:95: error: expected expression
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                                                                               `- error: expected expression
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:63:20: error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
 63 |             return unsafe unsafeBitCast(symbol, to: T.self)
    |                    `- error: consecutive statements on a line must be separated by ';'
 64 |         }
 65 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:7:2: error: unknown attribute 'unsafe'
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |  `- error: unknown attribute 'unsafe'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:61: error: cannot find 'unsafe' in scope
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                             `- error: cannot find 'unsafe' in scope
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:15:94: error: cannot find 'unsafe' in scope
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
    |                                                                                              `- error: cannot find 'unsafe' in scope
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
 17 |         fallbackHandle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:16:9: error: cannot find 'unsafe' in scope
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
    |         `- error: cannot find 'unsafe' in scope
 17 |         fallbackHandle,
 18 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:51: error: cannot find 'unsafe' in scope
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                   `- error: cannot find 'unsafe' in scope
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:54: error: cannot find 'unsafe' in scope
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                      `- error: cannot find 'unsafe' in scope
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:30: error: cannot find 'unsafe' in scope
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                              `- error: cannot find 'unsafe' in scope
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:25: error: cannot find 'unsafe' in scope
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                         `- error: cannot find 'unsafe' in scope
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:40:16: error: cannot find 'unsafe' in scope
 38 |         }
 39 |
 40 |         return unsafe (ptr, size)
    |                `- error: cannot find 'unsafe' in scope
 41 |     }
 42 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:30: error: cannot find 'unsafe' in scope
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                              `- error: cannot find 'unsafe' in scope
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:26: error: cannot find 'unsafe' in scope
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                          `- error: cannot find 'unsafe' in scope
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:49:16: error: cannot find 'unsafe' in scope
 47 |         }
 48 |
 49 |         return unsafe String(cString: path)
    |                `- error: cannot find 'unsafe' in scope
 50 |     }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:24: error: cannot find 'unsafe' in scope
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                        `- error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:51: warning: result of call to 'makeIterator()' is unused
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                                                   `- warning: result of call to 'makeIterator()' is unused
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:58:28: error: cannot find 'unsafe' in scope
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
 58 |         while let handle = unsafe iterator.next() {
    |                            `- error: cannot find 'unsafe' in scope
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:32: error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                `- error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:63:20: error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
 63 |             return unsafe unsafeBitCast(symbol, to: T.self)
    |                    `- error: cannot find 'unsafe' in scope
 64 |         }
 65 |
[110/269] Compiling MachOKit TrieNode.swift
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:61: error: consecutive declarations on a line must be separated by ';'
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                             `- error: consecutive declarations on a line must be separated by ';'
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:68: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                                    `- error: expected declaration
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:16:16: error: expected ',' separator
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
    |                `- error: expected ',' separator
 17 |         fallbackHandle,
 18 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:18:5: error: unexpected ',' separator
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
 17 |         fallbackHandle,
 18 |     ]
    |     `- error: unexpected ',' separator
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:51: error: consecutive declarations on a line must be separated by ';'
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                   `- error: consecutive declarations on a line must be separated by ';'
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:58: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
    :
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                          `- error: expected declaration
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:54: error: consecutive declarations on a line must be separated by ';'
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                      `- error: consecutive declarations on a line must be separated by ';'
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:61: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
    :
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                             `- error: expected declaration
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:37: error: expected 'else' after 'guard' condition
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                     `- error: expected 'else' after 'guard' condition
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:30: error: consecutive statements on a line must be separated by ';'
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                              `- error: consecutive statements on a line must be separated by ';'
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:37: error: consecutive statements on a line must be separated by ';'
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                     `- error: consecutive statements on a line must be separated by ';'
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:62: error: expected expression
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                                              `- error: expected expression
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:32: error: expected 'else' after 'guard' condition
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                `- error: expected 'else' after 'guard' condition
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:25: error: consecutive statements on a line must be separated by ';'
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                         `- error: consecutive statements on a line must be separated by ';'
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:84: error: consecutive statements on a line must be separated by ';'
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                                                                    `- error: consecutive statements on a line must be separated by ';'
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:86: error: expected expression
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                                                                      `- error: expected expression
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:37: error: expected 'else' after 'guard' condition
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                     `- error: expected 'else' after 'guard' condition
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:30: error: consecutive statements on a line must be separated by ';'
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                              `- error: consecutive statements on a line must be separated by ';'
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:64: error: consecutive statements on a line must be separated by ';'
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                                                `- error: consecutive statements on a line must be separated by ';'
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:64: error: expected expression
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                                                `- error: expected expression
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:26: error: consecutive statements on a line must be separated by ';'
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                          `- error: consecutive statements on a line must be separated by ';'
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:42: error: consecutive statements on a line must be separated by ';'
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                                          `- error: consecutive statements on a line must be separated by ';'
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:44: error: expected expression
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                                            `- error: expected expression
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:49:16: error: consecutive statements on a line must be separated by ';'
 47 |         }
 48 |
 49 |         return unsafe String(cString: path)
    |                `- error: consecutive statements on a line must be separated by ';'
 50 |     }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:24: error: consecutive statements on a line must be separated by ';'
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                        `- error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:58:35: error: expected '{' after 'while' condition
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
 58 |         while let handle = unsafe iterator.next() {
    |                                   `- error: expected '{' after 'while' condition
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:39: error: expected 'else' after 'guard' condition
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                       `- error: expected 'else' after 'guard' condition
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:32: error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                `- error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:93: error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                                                                             `- error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:95: error: expected expression
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                                                                               `- error: expected expression
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:63:20: error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
 63 |             return unsafe unsafeBitCast(symbol, to: T.self)
    |                    `- error: consecutive statements on a line must be separated by ';'
 64 |         }
 65 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:7:2: error: unknown attribute 'unsafe'
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |  `- error: unknown attribute 'unsafe'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:61: error: cannot find 'unsafe' in scope
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                             `- error: cannot find 'unsafe' in scope
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:15:94: error: cannot find 'unsafe' in scope
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
    |                                                                                              `- error: cannot find 'unsafe' in scope
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
 17 |         fallbackHandle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:16:9: error: cannot find 'unsafe' in scope
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
    |         `- error: cannot find 'unsafe' in scope
 17 |         fallbackHandle,
 18 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:51: error: cannot find 'unsafe' in scope
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                   `- error: cannot find 'unsafe' in scope
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:54: error: cannot find 'unsafe' in scope
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                      `- error: cannot find 'unsafe' in scope
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:30: error: cannot find 'unsafe' in scope
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                              `- error: cannot find 'unsafe' in scope
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:25: error: cannot find 'unsafe' in scope
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                         `- error: cannot find 'unsafe' in scope
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:40:16: error: cannot find 'unsafe' in scope
 38 |         }
 39 |
 40 |         return unsafe (ptr, size)
    |                `- error: cannot find 'unsafe' in scope
 41 |     }
 42 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:30: error: cannot find 'unsafe' in scope
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                              `- error: cannot find 'unsafe' in scope
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:26: error: cannot find 'unsafe' in scope
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                          `- error: cannot find 'unsafe' in scope
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:49:16: error: cannot find 'unsafe' in scope
 47 |         }
 48 |
 49 |         return unsafe String(cString: path)
    |                `- error: cannot find 'unsafe' in scope
 50 |     }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:24: error: cannot find 'unsafe' in scope
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                        `- error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:51: warning: result of call to 'makeIterator()' is unused
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                                                   `- warning: result of call to 'makeIterator()' is unused
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:58:28: error: cannot find 'unsafe' in scope
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
 58 |         while let handle = unsafe iterator.next() {
    |                            `- error: cannot find 'unsafe' in scope
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:32: error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                `- error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:63:20: error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
 63 |             return unsafe unsafeBitCast(symbol, to: T.self)
    |                    `- error: cannot find 'unsafe' in scope
 64 |         }
 65 |
[111/269] Compiling MachOKit TrieNodeContent.swift
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:61: error: consecutive declarations on a line must be separated by ';'
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                             `- error: consecutive declarations on a line must be separated by ';'
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:68: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                                    `- error: expected declaration
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:16:16: error: expected ',' separator
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
    |                `- error: expected ',' separator
 17 |         fallbackHandle,
 18 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:18:5: error: unexpected ',' separator
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
 17 |         fallbackHandle,
 18 |     ]
    |     `- error: unexpected ',' separator
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:51: error: consecutive declarations on a line must be separated by ';'
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                   `- error: consecutive declarations on a line must be separated by ';'
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:58: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
    :
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                          `- error: expected declaration
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:54: error: consecutive declarations on a line must be separated by ';'
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                      `- error: consecutive declarations on a line must be separated by ';'
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:61: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
    :
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                             `- error: expected declaration
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:37: error: expected 'else' after 'guard' condition
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                     `- error: expected 'else' after 'guard' condition
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:30: error: consecutive statements on a line must be separated by ';'
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                              `- error: consecutive statements on a line must be separated by ';'
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:37: error: consecutive statements on a line must be separated by ';'
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                     `- error: consecutive statements on a line must be separated by ';'
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:62: error: expected expression
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                                              `- error: expected expression
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:32: error: expected 'else' after 'guard' condition
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                `- error: expected 'else' after 'guard' condition
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:25: error: consecutive statements on a line must be separated by ';'
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                         `- error: consecutive statements on a line must be separated by ';'
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:84: error: consecutive statements on a line must be separated by ';'
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                                                                    `- error: consecutive statements on a line must be separated by ';'
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:86: error: expected expression
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                                                                      `- error: expected expression
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:37: error: expected 'else' after 'guard' condition
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                     `- error: expected 'else' after 'guard' condition
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:30: error: consecutive statements on a line must be separated by ';'
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                              `- error: consecutive statements on a line must be separated by ';'
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:64: error: consecutive statements on a line must be separated by ';'
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                                                `- error: consecutive statements on a line must be separated by ';'
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:64: error: expected expression
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                                                `- error: expected expression
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:26: error: consecutive statements on a line must be separated by ';'
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                          `- error: consecutive statements on a line must be separated by ';'
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:42: error: consecutive statements on a line must be separated by ';'
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                                          `- error: consecutive statements on a line must be separated by ';'
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:44: error: expected expression
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                                            `- error: expected expression
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:49:16: error: consecutive statements on a line must be separated by ';'
 47 |         }
 48 |
 49 |         return unsafe String(cString: path)
    |                `- error: consecutive statements on a line must be separated by ';'
 50 |     }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:24: error: consecutive statements on a line must be separated by ';'
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                        `- error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:58:35: error: expected '{' after 'while' condition
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
 58 |         while let handle = unsafe iterator.next() {
    |                                   `- error: expected '{' after 'while' condition
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:39: error: expected 'else' after 'guard' condition
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                       `- error: expected 'else' after 'guard' condition
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:32: error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                `- error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:93: error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                                                                             `- error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:95: error: expected expression
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                                                                               `- error: expected expression
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:63:20: error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
 63 |             return unsafe unsafeBitCast(symbol, to: T.self)
    |                    `- error: consecutive statements on a line must be separated by ';'
 64 |         }
 65 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:7:2: error: unknown attribute 'unsafe'
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |  `- error: unknown attribute 'unsafe'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:61: error: cannot find 'unsafe' in scope
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                             `- error: cannot find 'unsafe' in scope
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:15:94: error: cannot find 'unsafe' in scope
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
    |                                                                                              `- error: cannot find 'unsafe' in scope
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
 17 |         fallbackHandle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:16:9: error: cannot find 'unsafe' in scope
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
    |         `- error: cannot find 'unsafe' in scope
 17 |         fallbackHandle,
 18 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:51: error: cannot find 'unsafe' in scope
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                   `- error: cannot find 'unsafe' in scope
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:54: error: cannot find 'unsafe' in scope
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                      `- error: cannot find 'unsafe' in scope
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:30: error: cannot find 'unsafe' in scope
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                              `- error: cannot find 'unsafe' in scope
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:25: error: cannot find 'unsafe' in scope
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                         `- error: cannot find 'unsafe' in scope
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:40:16: error: cannot find 'unsafe' in scope
 38 |         }
 39 |
 40 |         return unsafe (ptr, size)
    |                `- error: cannot find 'unsafe' in scope
 41 |     }
 42 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:30: error: cannot find 'unsafe' in scope
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                              `- error: cannot find 'unsafe' in scope
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:26: error: cannot find 'unsafe' in scope
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                          `- error: cannot find 'unsafe' in scope
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:49:16: error: cannot find 'unsafe' in scope
 47 |         }
 48 |
 49 |         return unsafe String(cString: path)
    |                `- error: cannot find 'unsafe' in scope
 50 |     }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:24: error: cannot find 'unsafe' in scope
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                        `- error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:51: warning: result of call to 'makeIterator()' is unused
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                                                   `- warning: result of call to 'makeIterator()' is unused
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:58:28: error: cannot find 'unsafe' in scope
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
 58 |         while let handle = unsafe iterator.next() {
    |                            `- error: cannot find 'unsafe' in scope
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:32: error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                `- error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:63:20: error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
 63 |             return unsafe unsafeBitCast(symbol, to: T.self)
    |                    `- error: cannot find 'unsafe' in scope
 64 |         }
 65 |
[112/269] Compiling MachOKit TrieTreeProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:61: error: consecutive declarations on a line must be separated by ';'
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                             `- error: consecutive declarations on a line must be separated by ';'
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:68: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                                    `- error: expected declaration
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:16:16: error: expected ',' separator
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
    |                `- error: expected ',' separator
 17 |         fallbackHandle,
 18 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:18:5: error: unexpected ',' separator
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
 17 |         fallbackHandle,
 18 |     ]
    |     `- error: unexpected ',' separator
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:51: error: consecutive declarations on a line must be separated by ';'
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                   `- error: consecutive declarations on a line must be separated by ';'
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:58: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
    :
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                          `- error: expected declaration
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:54: error: consecutive declarations on a line must be separated by ';'
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                      `- error: consecutive declarations on a line must be separated by ';'
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:61: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
    :
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                             `- error: expected declaration
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:37: error: expected 'else' after 'guard' condition
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                     `- error: expected 'else' after 'guard' condition
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:30: error: consecutive statements on a line must be separated by ';'
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                              `- error: consecutive statements on a line must be separated by ';'
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:37: error: consecutive statements on a line must be separated by ';'
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                     `- error: consecutive statements on a line must be separated by ';'
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:62: error: expected expression
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                                              `- error: expected expression
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:32: error: expected 'else' after 'guard' condition
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                `- error: expected 'else' after 'guard' condition
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:25: error: consecutive statements on a line must be separated by ';'
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                         `- error: consecutive statements on a line must be separated by ';'
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:84: error: consecutive statements on a line must be separated by ';'
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                                                                    `- error: consecutive statements on a line must be separated by ';'
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:86: error: expected expression
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                                                                      `- error: expected expression
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:37: error: expected 'else' after 'guard' condition
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                     `- error: expected 'else' after 'guard' condition
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:30: error: consecutive statements on a line must be separated by ';'
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                              `- error: consecutive statements on a line must be separated by ';'
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:64: error: consecutive statements on a line must be separated by ';'
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                                                `- error: consecutive statements on a line must be separated by ';'
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:64: error: expected expression
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                                                `- error: expected expression
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:26: error: consecutive statements on a line must be separated by ';'
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                          `- error: consecutive statements on a line must be separated by ';'
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:42: error: consecutive statements on a line must be separated by ';'
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                                          `- error: consecutive statements on a line must be separated by ';'
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:44: error: expected expression
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                                            `- error: expected expression
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:49:16: error: consecutive statements on a line must be separated by ';'
 47 |         }
 48 |
 49 |         return unsafe String(cString: path)
    |                `- error: consecutive statements on a line must be separated by ';'
 50 |     }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:24: error: consecutive statements on a line must be separated by ';'
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                        `- error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:58:35: error: expected '{' after 'while' condition
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
 58 |         while let handle = unsafe iterator.next() {
    |                                   `- error: expected '{' after 'while' condition
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:39: error: expected 'else' after 'guard' condition
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                       `- error: expected 'else' after 'guard' condition
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:32: error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                `- error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:93: error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                                                                             `- error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:95: error: expected expression
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                                                                               `- error: expected expression
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:63:20: error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
 63 |             return unsafe unsafeBitCast(symbol, to: T.self)
    |                    `- error: consecutive statements on a line must be separated by ';'
 64 |         }
 65 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:7:2: error: unknown attribute 'unsafe'
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |  `- error: unknown attribute 'unsafe'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:61: error: cannot find 'unsafe' in scope
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                             `- error: cannot find 'unsafe' in scope
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:15:94: error: cannot find 'unsafe' in scope
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
    |                                                                                              `- error: cannot find 'unsafe' in scope
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
 17 |         fallbackHandle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:16:9: error: cannot find 'unsafe' in scope
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
    |         `- error: cannot find 'unsafe' in scope
 17 |         fallbackHandle,
 18 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:51: error: cannot find 'unsafe' in scope
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                   `- error: cannot find 'unsafe' in scope
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:54: error: cannot find 'unsafe' in scope
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                      `- error: cannot find 'unsafe' in scope
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:30: error: cannot find 'unsafe' in scope
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                              `- error: cannot find 'unsafe' in scope
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:25: error: cannot find 'unsafe' in scope
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                         `- error: cannot find 'unsafe' in scope
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:40:16: error: cannot find 'unsafe' in scope
 38 |         }
 39 |
 40 |         return unsafe (ptr, size)
    |                `- error: cannot find 'unsafe' in scope
 41 |     }
 42 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:30: error: cannot find 'unsafe' in scope
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                              `- error: cannot find 'unsafe' in scope
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:26: error: cannot find 'unsafe' in scope
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                          `- error: cannot find 'unsafe' in scope
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:49:16: error: cannot find 'unsafe' in scope
 47 |         }
 48 |
 49 |         return unsafe String(cString: path)
    |                `- error: cannot find 'unsafe' in scope
 50 |     }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:24: error: cannot find 'unsafe' in scope
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                        `- error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:51: warning: result of call to 'makeIterator()' is unused
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                                                   `- warning: result of call to 'makeIterator()' is unused
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:58:28: error: cannot find 'unsafe' in scope
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
 58 |         while let handle = unsafe iterator.next() {
    |                            `- error: cannot find 'unsafe' in scope
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:32: error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                `- error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:63:20: error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
 63 |             return unsafe unsafeBitCast(symbol, to: T.self)
    |                    `- error: cannot find 'unsafe' in scope
 64 |         }
 65 |
[113/269] Compiling MachOKit _DyldSharedCacheRuntime.swift
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:61: error: consecutive declarations on a line must be separated by ';'
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                             `- error: consecutive declarations on a line must be separated by ';'
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:68: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                                    `- error: expected declaration
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:16:16: error: expected ',' separator
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
    |                `- error: expected ',' separator
 17 |         fallbackHandle,
 18 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:18:5: error: unexpected ',' separator
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
 17 |         fallbackHandle,
 18 |     ]
    |     `- error: unexpected ',' separator
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:51: error: consecutive declarations on a line must be separated by ';'
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                   `- error: consecutive declarations on a line must be separated by ';'
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:58: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
    :
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                          `- error: expected declaration
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:54: error: consecutive declarations on a line must be separated by ';'
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                      `- error: consecutive declarations on a line must be separated by ';'
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:61: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
    :
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                             `- error: expected declaration
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:37: error: expected 'else' after 'guard' condition
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                     `- error: expected 'else' after 'guard' condition
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:30: error: consecutive statements on a line must be separated by ';'
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                              `- error: consecutive statements on a line must be separated by ';'
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:37: error: consecutive statements on a line must be separated by ';'
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                     `- error: consecutive statements on a line must be separated by ';'
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:62: error: expected expression
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                                              `- error: expected expression
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:32: error: expected 'else' after 'guard' condition
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                `- error: expected 'else' after 'guard' condition
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:25: error: consecutive statements on a line must be separated by ';'
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                         `- error: consecutive statements on a line must be separated by ';'
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:84: error: consecutive statements on a line must be separated by ';'
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                                                                    `- error: consecutive statements on a line must be separated by ';'
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:86: error: expected expression
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                                                                      `- error: expected expression
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:37: error: expected 'else' after 'guard' condition
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                     `- error: expected 'else' after 'guard' condition
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:30: error: consecutive statements on a line must be separated by ';'
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                              `- error: consecutive statements on a line must be separated by ';'
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:64: error: consecutive statements on a line must be separated by ';'
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                                                `- error: consecutive statements on a line must be separated by ';'
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:64: error: expected expression
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                                                `- error: expected expression
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:26: error: consecutive statements on a line must be separated by ';'
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                          `- error: consecutive statements on a line must be separated by ';'
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:42: error: consecutive statements on a line must be separated by ';'
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                                          `- error: consecutive statements on a line must be separated by ';'
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:44: error: expected expression
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                                            `- error: expected expression
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:49:16: error: consecutive statements on a line must be separated by ';'
 47 |         }
 48 |
 49 |         return unsafe String(cString: path)
    |                `- error: consecutive statements on a line must be separated by ';'
 50 |     }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:24: error: consecutive statements on a line must be separated by ';'
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                        `- error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:58:35: error: expected '{' after 'while' condition
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
 58 |         while let handle = unsafe iterator.next() {
    |                                   `- error: expected '{' after 'while' condition
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:39: error: expected 'else' after 'guard' condition
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                       `- error: expected 'else' after 'guard' condition
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:32: error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                `- error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:93: error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                                                                             `- error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:95: error: expected expression
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                                                                               `- error: expected expression
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:63:20: error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
 63 |             return unsafe unsafeBitCast(symbol, to: T.self)
    |                    `- error: consecutive statements on a line must be separated by ';'
 64 |         }
 65 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:7:2: error: unknown attribute 'unsafe'
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |  `- error: unknown attribute 'unsafe'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:61: error: cannot find 'unsafe' in scope
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                             `- error: cannot find 'unsafe' in scope
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:15:94: error: cannot find 'unsafe' in scope
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
    |                                                                                              `- error: cannot find 'unsafe' in scope
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
 17 |         fallbackHandle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:16:9: error: cannot find 'unsafe' in scope
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
    |         `- error: cannot find 'unsafe' in scope
 17 |         fallbackHandle,
 18 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:51: error: cannot find 'unsafe' in scope
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                   `- error: cannot find 'unsafe' in scope
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:54: error: cannot find 'unsafe' in scope
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                      `- error: cannot find 'unsafe' in scope
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:30: error: cannot find 'unsafe' in scope
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                              `- error: cannot find 'unsafe' in scope
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:25: error: cannot find 'unsafe' in scope
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                         `- error: cannot find 'unsafe' in scope
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:40:16: error: cannot find 'unsafe' in scope
 38 |         }
 39 |
 40 |         return unsafe (ptr, size)
    |                `- error: cannot find 'unsafe' in scope
 41 |     }
 42 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:30: error: cannot find 'unsafe' in scope
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                              `- error: cannot find 'unsafe' in scope
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:26: error: cannot find 'unsafe' in scope
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                          `- error: cannot find 'unsafe' in scope
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:49:16: error: cannot find 'unsafe' in scope
 47 |         }
 48 |
 49 |         return unsafe String(cString: path)
    |                `- error: cannot find 'unsafe' in scope
 50 |     }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:24: error: cannot find 'unsafe' in scope
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                        `- error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:51: warning: result of call to 'makeIterator()' is unused
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                                                   `- warning: result of call to 'makeIterator()' is unused
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:58:28: error: cannot find 'unsafe' in scope
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
 58 |         while let handle = unsafe iterator.next() {
    |                            `- error: cannot find 'unsafe' in scope
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:32: error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                `- error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:63:20: error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
 63 |             return unsafe unsafeBitCast(symbol, to: T.self)
    |                    `- error: cannot find 'unsafe' in scope
 64 |         }
 65 |
[114/269] Compiling MachOKit exported.swift
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:61: error: consecutive declarations on a line must be separated by ';'
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                             `- error: consecutive declarations on a line must be separated by ';'
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:68: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                                    `- error: expected declaration
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:16:16: error: expected ',' separator
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
    |                `- error: expected ',' separator
 17 |         fallbackHandle,
 18 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:18:5: error: unexpected ',' separator
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
 17 |         fallbackHandle,
 18 |     ]
    |     `- error: unexpected ',' separator
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:51: error: consecutive declarations on a line must be separated by ';'
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                   `- error: consecutive declarations on a line must be separated by ';'
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:58: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
    :
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                          `- error: expected declaration
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:54: error: consecutive declarations on a line must be separated by ';'
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                      `- error: consecutive declarations on a line must be separated by ';'
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:61: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
    :
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                             `- error: expected declaration
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:37: error: expected 'else' after 'guard' condition
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                     `- error: expected 'else' after 'guard' condition
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:30: error: consecutive statements on a line must be separated by ';'
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                              `- error: consecutive statements on a line must be separated by ';'
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:37: error: consecutive statements on a line must be separated by ';'
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                     `- error: consecutive statements on a line must be separated by ';'
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:62: error: expected expression
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                                              `- error: expected expression
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:32: error: expected 'else' after 'guard' condition
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                `- error: expected 'else' after 'guard' condition
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:25: error: consecutive statements on a line must be separated by ';'
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                         `- error: consecutive statements on a line must be separated by ';'
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:84: error: consecutive statements on a line must be separated by ';'
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                                                                    `- error: consecutive statements on a line must be separated by ';'
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:86: error: expected expression
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                                                                      `- error: expected expression
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:37: error: expected 'else' after 'guard' condition
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                     `- error: expected 'else' after 'guard' condition
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:30: error: consecutive statements on a line must be separated by ';'
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                              `- error: consecutive statements on a line must be separated by ';'
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:64: error: consecutive statements on a line must be separated by ';'
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                                                `- error: consecutive statements on a line must be separated by ';'
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:64: error: expected expression
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                                                `- error: expected expression
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:26: error: consecutive statements on a line must be separated by ';'
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                          `- error: consecutive statements on a line must be separated by ';'
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:42: error: consecutive statements on a line must be separated by ';'
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                                          `- error: consecutive statements on a line must be separated by ';'
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:44: error: expected expression
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                                            `- error: expected expression
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:49:16: error: consecutive statements on a line must be separated by ';'
 47 |         }
 48 |
 49 |         return unsafe String(cString: path)
    |                `- error: consecutive statements on a line must be separated by ';'
 50 |     }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:24: error: consecutive statements on a line must be separated by ';'
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                        `- error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:58:35: error: expected '{' after 'while' condition
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
 58 |         while let handle = unsafe iterator.next() {
    |                                   `- error: expected '{' after 'while' condition
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:39: error: expected 'else' after 'guard' condition
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                       `- error: expected 'else' after 'guard' condition
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:32: error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                `- error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:93: error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                                                                             `- error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:95: error: expected expression
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                                                                               `- error: expected expression
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:63:20: error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
 63 |             return unsafe unsafeBitCast(symbol, to: T.self)
    |                    `- error: consecutive statements on a line must be separated by ';'
 64 |         }
 65 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:7:2: error: unknown attribute 'unsafe'
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |  `- error: unknown attribute 'unsafe'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:61: error: cannot find 'unsafe' in scope
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                             `- error: cannot find 'unsafe' in scope
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:15:94: error: cannot find 'unsafe' in scope
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
    |                                                                                              `- error: cannot find 'unsafe' in scope
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
 17 |         fallbackHandle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:16:9: error: cannot find 'unsafe' in scope
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
    |         `- error: cannot find 'unsafe' in scope
 17 |         fallbackHandle,
 18 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:51: error: cannot find 'unsafe' in scope
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                   `- error: cannot find 'unsafe' in scope
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:54: error: cannot find 'unsafe' in scope
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                      `- error: cannot find 'unsafe' in scope
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:30: error: cannot find 'unsafe' in scope
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                              `- error: cannot find 'unsafe' in scope
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:25: error: cannot find 'unsafe' in scope
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                         `- error: cannot find 'unsafe' in scope
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:40:16: error: cannot find 'unsafe' in scope
 38 |         }
 39 |
 40 |         return unsafe (ptr, size)
    |                `- error: cannot find 'unsafe' in scope
 41 |     }
 42 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:30: error: cannot find 'unsafe' in scope
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                              `- error: cannot find 'unsafe' in scope
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:26: error: cannot find 'unsafe' in scope
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                          `- error: cannot find 'unsafe' in scope
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:49:16: error: cannot find 'unsafe' in scope
 47 |         }
 48 |
 49 |         return unsafe String(cString: path)
    |                `- error: cannot find 'unsafe' in scope
 50 |     }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:24: error: cannot find 'unsafe' in scope
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                        `- error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:51: warning: result of call to 'makeIterator()' is unused
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                                                   `- warning: result of call to 'makeIterator()' is unused
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:58:28: error: cannot find 'unsafe' in scope
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
 58 |         while let handle = unsafe iterator.next() {
    |                            `- error: cannot find 'unsafe' in scope
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:32: error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                `- error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:63:20: error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
 63 |             return unsafe unsafeBitCast(symbol, to: T.self)
    |                    `- error: cannot find 'unsafe' in scope
 64 |         }
 65 |
[115/269] Compiling MachOKit global.swift
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:61: error: consecutive declarations on a line must be separated by ';'
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                             `- error: consecutive declarations on a line must be separated by ';'
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:68: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                                    `- error: expected declaration
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:16:16: error: expected ',' separator
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
    |                `- error: expected ',' separator
 17 |         fallbackHandle,
 18 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:18:5: error: unexpected ',' separator
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
 17 |         fallbackHandle,
 18 |     ]
    |     `- error: unexpected ',' separator
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:51: error: consecutive declarations on a line must be separated by ';'
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                   `- error: consecutive declarations on a line must be separated by ';'
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:58: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
    :
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                          `- error: expected declaration
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:54: error: consecutive declarations on a line must be separated by ';'
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                      `- error: consecutive declarations on a line must be separated by ';'
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:61: error: expected declaration
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |              `- note: in declaration of '_DyldSharedCacheRuntime'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
    :
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                             `- error: expected declaration
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:37: error: expected 'else' after 'guard' condition
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                     `- error: expected 'else' after 'guard' condition
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:30: error: consecutive statements on a line must be separated by ';'
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                              `- error: consecutive statements on a line must be separated by ';'
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:37: error: consecutive statements on a line must be separated by ';'
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                     `- error: consecutive statements on a line must be separated by ';'
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:62: error: expected expression
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                                                              `- error: expected expression
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:32: error: expected 'else' after 'guard' condition
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                `- error: expected 'else' after 'guard' condition
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:25: error: consecutive statements on a line must be separated by ';'
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                         `- error: consecutive statements on a line must be separated by ';'
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:84: error: consecutive statements on a line must be separated by ';'
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                                                                    `- error: consecutive statements on a line must be separated by ';'
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:86: error: expected expression
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                                                                                      `- error: expected expression
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:37: error: expected 'else' after 'guard' condition
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                     `- error: expected 'else' after 'guard' condition
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:30: error: consecutive statements on a line must be separated by ';'
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                              `- error: consecutive statements on a line must be separated by ';'
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:64: error: consecutive statements on a line must be separated by ';'
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                                                `- error: consecutive statements on a line must be separated by ';'
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:64: error: expected expression
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                                                                `- error: expected expression
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:26: error: consecutive statements on a line must be separated by ';'
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                          `- error: consecutive statements on a line must be separated by ';'
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:42: error: consecutive statements on a line must be separated by ';'
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                                          `- error: consecutive statements on a line must be separated by ';'
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:44: error: expected expression
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                                            `- error: expected expression
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:49:16: error: consecutive statements on a line must be separated by ';'
 47 |         }
 48 |
 49 |         return unsafe String(cString: path)
    |                `- error: consecutive statements on a line must be separated by ';'
 50 |     }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:24: error: consecutive statements on a line must be separated by ';'
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                        `- error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:58:35: error: expected '{' after 'while' condition
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
 58 |         while let handle = unsafe iterator.next() {
    |                                   `- error: expected '{' after 'while' condition
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:39: error: expected 'else' after 'guard' condition
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                       `- error: expected 'else' after 'guard' condition
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:32: error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                `- error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:93: error: consecutive statements on a line must be separated by ';'
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                                                                             `- error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:95: error: expected expression
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                                                                               `- error: expected expression
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:63:20: error: consecutive statements on a line must be separated by ';'
 61 |                 continue
 62 |             }
 63 |             return unsafe unsafeBitCast(symbol, to: T.self)
    |                    `- error: consecutive statements on a line must be separated by ';'
 64 |         }
 65 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:7:2: error: unknown attribute 'unsafe'
  5 |
  6 | // Shared-cache runtime shim that avoids direct private loader helper imports.
  7 | @unsafe enum _DyldSharedCacheRuntime {
    |  `- error: unknown attribute 'unsafe'
  8 |     typealias SharedCacheRangeFunction = @convention(c) (UnsafeMutablePointer<Int>?) -> UnsafeRawPointer?
  9 |     typealias SharedCacheFilePathFunction = @convention(c) () -> UnsafePointer<CChar>?
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:12:61: error: cannot find 'unsafe' in scope
 10 |     private static let obfuscationKey: UInt8 = 0x5A
 11 |
 12 |     nonisolated(unsafe) private static let fallbackHandle = unsafe withDecodedCString(libraryPathBytes) {
    |                                                             `- error: cannot find 'unsafe' in scope
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:15:94: error: cannot find 'unsafe' in scope
 13 |         dlopen($0, RTLD_LAZY | RTLD_LOCAL)
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
    |                                                                                              `- error: cannot find 'unsafe' in scope
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
 17 |         fallbackHandle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:16:9: error: cannot find 'unsafe' in scope
 14 |     }
 15 |     nonisolated(unsafe) private static let symbolSearchHandles: [UnsafeMutableRawPointer?] = unsafe [
 16 |         unsafe UnsafeMutableRawPointer(bitPattern: -2),
    |         `- error: cannot find 'unsafe' in scope
 17 |         fallbackHandle,
 18 |     ]
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:20:51: error: cannot find 'unsafe' in scope
 18 |     ]
 19 |
 20 |     private static let sharedCacheRangeFunction = unsafe loadFunction(
    |                                                   `- error: cannot find 'unsafe' in scope
 21 |         symbolBytes: sharedCacheRangeSymbolBytes,
 22 |         as: SharedCacheRangeFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:25:54: error: cannot find 'unsafe' in scope
 23 |     )
 24 |
 25 |     private static let sharedCacheFilePathFunction = unsafe loadFunction(
    |                                                      `- error: cannot find 'unsafe' in scope
 26 |         symbolBytes: sharedCacheFilePathSymbolBytes,
 27 |         as: SharedCacheFilePathFunction.self
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:31:30: error: cannot find 'unsafe' in scope
 29 |
 30 |     static func sharedCacheRange() -> (ptr: UnsafeRawPointer, size: Int)? {
 31 |         guard let function = unsafe sharedCacheRangeFunction else {
    |                              `- error: cannot find 'unsafe' in scope
 32 |             return nil
 33 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:36:25: error: cannot find 'unsafe' in scope
 34 |
 35 |         var size = 0
 36 |         guard let ptr = unsafe withUnsafeMutablePointer(to: &size, { function($0) }) else {
    |                         `- error: cannot find 'unsafe' in scope
 37 |             return nil
 38 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:40:16: error: cannot find 'unsafe' in scope
 38 |         }
 39 |
 40 |         return unsafe (ptr, size)
    |                `- error: cannot find 'unsafe' in scope
 41 |     }
 42 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:44:30: error: cannot find 'unsafe' in scope
 42 |
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
    |                              `- error: cannot find 'unsafe' in scope
 45 |               let path = unsafe function() else {
 46 |             return nil
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:45:26: error: cannot find 'unsafe' in scope
 43 |     static func sharedCacheFilePath() -> String? {
 44 |         guard let function = unsafe sharedCacheFilePathFunction,
 45 |               let path = unsafe function() else {
    |                          `- error: cannot find 'unsafe' in scope
 46 |             return nil
 47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:49:16: error: cannot find 'unsafe' in scope
 47 |         }
 48 |
 49 |         return unsafe String(cString: path)
    |                `- error: cannot find 'unsafe' in scope
 50 |     }
 51 |
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:24: error: cannot find 'unsafe' in scope
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                        `- error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:57:51: warning: result of call to 'makeIterator()' is unused
 55 |     ) -> T? {
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
    |                                                   `- warning: result of call to 'makeIterator()' is unused
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:58:28: error: cannot find 'unsafe' in scope
 56 |         _ = type
 57 |         var iterator = unsafe symbolSearchHandles.makeIterator()
 58 |         while let handle = unsafe iterator.next() {
    |                            `- error: cannot find 'unsafe' in scope
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:60:32: error: cannot find 'unsafe' in scope
 58 |         while let handle = unsafe iterator.next() {
 59 |             guard let handle,
 60 |                   let symbol = unsafe resolveSymbol(encodedName: symbolBytes, handle: handle) else {
    |                                `- error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
/Users/admin/builder/spi-builder-workspace/Sources/MachOKit/Util/_DyldSharedCacheRuntime.swift:63:20: error: cannot find 'unsafe' in scope
 61 |                 continue
 62 |             }
 63 |             return unsafe unsafeBitCast(symbol, to: T.self)
    |                    `- error: cannot find 'unsafe' in scope
 64 |         }
 65 |
[116/269] Compiling MachOKit DyldChainedStartsOffsets.swift
[117/269] Compiling MachOKit DyldChainedSymbolsFormat.swift
[118/269] Compiling MachOKit ExportSymbolFlags.swift
[119/269] Compiling MachOKit ExportSymbolKind.swift
[120/269] Compiling MachOKit ExportTrieEntry.swift
[121/269] Compiling MachOKit ExportedSymbol.swift
[122/269] Compiling MachOKit FunctionStart.swift
[123/269] Compiling MachOKit IndirectSymbol.swift
[124/269] Compiling MachOKit Rebase.swift
[125/269] Compiling MachOKit RebaseOpcode.swift
[126/269] Compiling MachOKit RebaseOperation.swift
[127/269] Compiling MachOKit RebaseType.swift
[128/269] Compiling MachOKit Relocation.swift
[129/269] Compiling MachOKit RelocationInfo.swift
[130/269] Compiling MachOKit RelocationLength.swift
[131/269] Compiling MachOKit RelocationType.swift
[132/269] Compiling MachOKit ScatteredRelocationInfo.swift
[133/269] Compiling MachOKit Nlist.swift
[134/269] Compiling MachOKit Stab.swift
[135/269] Compiling MachOKit SymbolDescription.swift
[136/269] Compiling MachOKit SymbolFlags.swift
[137/269] Compiling MachOKit SymbolLibraryOrdinalType.swift
[138/269] Compiling MachOKit MachOImage+static.swift
[139/269] Compiling MachOKit MachOImage.swift
[140/269] Compiling MachOKit MachOKit.swift
[141/269] Compiling MachOKit AotCacheCodeFragment.swift
[142/269] Compiling MachOKit AotCodeFragment.swift
[143/269] Compiling MachOKit AotCodeFragmentType.swift
[144/269] Compiling MachOKit AotBranchData.swift
[145/269] Compiling MachOKit AotBranchDataHeader.swift
[146/269] Compiling MachOKit AotBranchDataIndexEntry.swift
[147/269] Compiling MachOKit AotInstructionMap.swift
[148/269] Compiling MachOKit AotInstructionMapHeader.swift
[149/269] Compiling MachOKit AotInstructionMapIndexEntry.swift
[150/269] Compiling MachOKit BindOpcode.swift
[151/269] Compiling MachOKit BindOperation.swift
[152/269] Compiling MachOKit BindOperationsKind.swift
[153/269] Compiling MachOKit BindSpecial.swift
[154/269] Compiling MachOKit BindType.swift
[155/269] Compiling MachOKit ClassicBindType.swift
[156/269] Compiling MachOKit BindingSymbol.swift
[157/269] Compiling MachOKit ClassicBindingSymbol.swift
[158/269] Compiling MachOKit CodeSignCodeDirectory+codeLimit64.swift
[159/269] Compiling MachOKit CodeSignCodeDirectory+executableSegment.swift
[160/269] Compiling MachOKit ObjCOptimizationFlags.swift
[161/269] Compiling MachOKit OldObjCOptimization.swift
[162/269] Compiling MachOKit _OldObjCOptimizationProtocol.swift
[163/269] Compiling MachOKit ProgramOffset.swift
[164/269] Compiling MachOKit ProgramsTrieNodeContent.swift
[165/269] Compiling MachOKit DyldCacheSlideInfo.swift
[166/269] Compiling MachOKit DyldCacheSlideInfo1.swift
[167/269] Compiling MachOKit DyldCacheSlideInfo2.swift
[168/269] Compiling MachOKit DyldCacheSlideInfo3.swift
[169/269] Compiling MachOKit DyldCacheSlideInfo4.swift
[170/269] Compiling MachOKit DyldCacheSlideInfo5.swift
[171/269] Compiling MachOKit SwiftOptimization.swift
[172/269] Compiling MachOKit DyldChainedFixupPointer.swift
[173/269] Compiling MachOKit DyldChainedFixupPointerContent.swift
[174/269] Compiling MachOKit DyldChainedFixupPointerFormat.swift
[175/269] Compiling MachOKit DyldChainedFixupPointerInfo.swift
[176/269] Compiling MachOKit DyldChainedFixupsHeader.swift
[177/269] Compiling MachOKit DyldChainedImport.swift
[178/269] Compiling MachOKit DyldChainedImportFormat.swift
[179/269] Compiling MachOKit DyldChainedPage.swift
[180/269] Compiling MachOKit DyldChainedStartsInImage.swift
[181/269] Compiling MachOKit DyldChainedStartsInSegment.swift
[188/269] Compiling MachOKit FatHeader.swift
[189/269] Compiling MachOKit FileType.swift
[190/269] Compiling MachOKit MachHeader+Flags+Bit.swift
[191/269] Compiling MachOKit MachHeader+Flags.swift
[192/269] Compiling MachOKit MachHeader.swift
[193/269] Compiling MachOKit Magic.swift
[194/269] Compiling MachOKit AotMetadataCommand.swift
[195/269] Compiling MachOKit BuildVersionCommand.swift
[196/269] Compiling MachOKit DylibCommand.swift
[197/269] Compiling MachOKit DylibUseCommand.swift
[198/269] Compiling MachOKit DylinkerCommand.swift
[199/269] Compiling MachOKit EncryptionInfoCommand.swift
[200/269] Compiling MachOKit EntryPointCommand.swift
[201/269] Compiling MachOKit FilesetEntryCommand.swift
[202/269] Compiling MachOKit LinkerOptionCommand.swift
[203/269] Compiling MachOKit LoadCommand.swift
[204/269] Compiling MachOKit LoadCommandInfo.swift
[205/269] Compiling MachOKit LoadCommandType.swift
[206/269] Compiling MachOKit BuildToolVersion.swift
[207/269] Compiling MachOKit Dylib.swift
[208/269] Compiling MachOKit DylibUseFlags.swift
[209/269] Compiling MachOKit Platform.swift
[210/269] Compiling MachOKit Section+Attribute.swift
[211/269] Compiling MachOKit Section+Flags.swift
[212/269] Compiling MachOKit Section+Type.swift
[213/269] Compiling MachOKit Section.swift
[214/269] Compiling MachOKit ThreadState.swift
[215/269] Compiling MachOKit ThreadStateFlavor.swift
[216/269] Compiling MachOKit Tool.swift
[217/269] Compiling MachOKit VMProtection.swift
[218/269] Compiling MachOKit Version.swift
[219/269] Compiling MachOKit NoteCommand.swift
[220/269] Compiling MachOKit RpathCommand.swift
[221/269] Compiling MachOKit SegmentCommand+Flags.swift
[222/269] Compiling MachOKit SegmentCommand.swift
[223/269] Compiling MachOKit SourceVersionCommand.swift
[224/269] Compiling MachOKit SubFrameworkCommand.swift
[225/269] Compiling MachOKit TargetTripleCommand.swift
[226/269] Compiling MachOKit DyldCacheMappingAndSlideInfo.swift
[227/269] Compiling MachOKit DyldCacheMappingFlags.swift
[228/269] Compiling MachOKit DyldCacheMappingInfo.swift
[229/269] Compiling MachOKit DyldCachePrewarming.swift
[230/269] Compiling MachOKit DyldCachePrewarmingEntry.swift
[231/269] Compiling MachOKit DyldCacheTproMappingInfo.swift
[232/269] Compiling MachOKit DyldSubCacheEntry.swift
[233/269] Compiling MachOKit DylibIndex.swift
[234/269] Compiling MachOKit DylibsTrieNodeContent.swift
[235/269] Compiling MachOKit LoaderRef.swift
[236/269] Compiling MachOKit ObjCBinaryInfo.swift
[237/269] Compiling MachOKit PrebuiltLoader.swift
[238/269] Compiling MachOKit PrebuiltLoaderProtocol.swift
[239/269] Compiling MachOKit PrebuiltLoaderSet.swift
[240/269] Compiling MachOKit PrebuiltLoader_Pre1165_3.swift
[241/269] Compiling MachOKit SectionLocations.swift
[242/269] Compiling MachOKit ObjCHeaderInfoRO.swift
[243/269] Compiling MachOKit ObjCHeaderInfoRW.swift
[244/269] Compiling MachOKit ObjCHeaderOptimizationRO.swift
[245/269] Compiling MachOKit ObjCHeaderOptimizationRW.swift
[246/269] Compiling MachOKit ObjCImageInfo.swift
[247/269] Compiling MachOKit ObjCOptimization.swift
[248/269] Compiling MachOKit ThreadCommand.swift
[249/269] Compiling MachOKit UUIDCommand.swift
[250/269] Compiling MachOKit VersionMinCommand.swift
[251/269] Compiling MachOKit MachOFile+BindOperations.swift
[252/269] Compiling MachOKit MachOFile+CodeSign.swift
[253/269] Compiling MachOKit MachOFile+DyldChainedFixups.swift
[254/269] Compiling MachOKit MachOFile+ExportTrie.swift
[255/269] Compiling MachOKit MachOFile+FunctionStarts.swift
[256/269] Compiling MachOKit MachOFile+LoadCommands.swift
[257/269] Compiling MachOKit MachOFile+RebaseOperations.swift
[258/269] Compiling MachOKit MachOFile+Strings.swift
[259/269] Compiling MachOKit MachOFile+Symbols.swift
[260/269] Compiling MachOKit MachOFile.swift
[261/269] Compiling MachOKit MachOImage+BindOperations.swift
[262/269] Compiling MachOKit MachOImage+CodeSign.swift
[263/269] Compiling MachOKit MachOImage+DyldChainedFixups..swift
[264/269] Compiling MachOKit MachOImage+ExportTrie.swift
[265/269] Compiling MachOKit MachOImage+FunctionStarts.swift
[266/269] Compiling MachOKit MachOImage+LoadCommands.swift
[267/269] Compiling MachOKit MachOImage+RebaseOperations.swift
[268/269] Compiling MachOKit MachOImage+Strings.swift
[269/269] Compiling MachOKit MachOImage+Symbols.swift
warning: 'spi-builder-workspace': /Users/admin/builder/spi-builder-workspace/Package.swift:129:1: warning: extension declares a conformance of imported type 'SwiftSetting' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'PackageDescription' introduce this conformance in the future
127 | }
128 |
129 | extension SwiftSetting: CaseIterable {
    | |- warning: extension declares a conformance of imported type 'SwiftSetting' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'PackageDescription' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
130 |     public static var allCases: [Self] {
131 |         [
Fetching https://github.com/p-x9/ObjectArchiveKit.git
Fetching https://github.com/p-x9/swift-fileio.git
Fetching https://github.com/p-x9/swift-fileio-extra.git
Fetching https://github.com/apple/swift-crypto.git
Fetching https://github.com/p-x9/swift-binary-parse-support.git
[6/259] Fetching objectarchivekit
[4/505] Fetching objectarchivekit, swift-fileio
[294/747] Fetching objectarchivekit, swift-fileio, swift-binary-parse-support
[483/795] Fetching objectarchivekit, swift-fileio, swift-binary-parse-support, swift-fileio-extra
[777/18211] Fetching objectarchivekit, swift-fileio, swift-binary-parse-support, swift-fileio-extra, swift-crypto
Fetched https://github.com/p-x9/swift-binary-parse-support.git from cache (2.87s)
Fetched https://github.com/p-x9/swift-fileio-extra.git from cache (2.87s)
Fetched https://github.com/p-x9/swift-fileio.git from cache (2.87s)
Fetched https://github.com/p-x9/ObjectArchiveKit.git from cache (2.87s)
Fetched https://github.com/apple/swift-crypto.git from cache (2.87s)
Computing version for https://github.com/p-x9/swift-binary-parse-support.git
Computed https://github.com/p-x9/swift-binary-parse-support.git at 0.2.1 (0.45s)
Computing version for https://github.com/p-x9/ObjectArchiveKit.git
Computed https://github.com/p-x9/ObjectArchiveKit.git at 0.5.0 (0.44s)
Computing version for https://github.com/p-x9/swift-fileio-extra.git
Computed https://github.com/p-x9/swift-fileio-extra.git at 0.2.2 (0.42s)
Computing version for https://github.com/p-x9/swift-fileio.git
Computed https://github.com/p-x9/swift-fileio.git at 0.13.0 (0.44s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.15.1 (3.82s)
Fetching https://github.com/apple/swift-asn1.git
[1/1803] Fetching swift-asn1
Fetched https://github.com/apple/swift-asn1.git from cache (0.98s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.6.0 (2.40s)
Creating working copy for https://github.com/p-x9/swift-fileio-extra.git
Working copy of https://github.com/p-x9/swift-fileio-extra.git resolved at 0.2.2
Creating working copy for https://github.com/p-x9/swift-binary-parse-support.git
Working copy of https://github.com/p-x9/swift-binary-parse-support.git resolved at 0.2.1
Creating working copy for https://github.com/p-x9/ObjectArchiveKit.git
Working copy of https://github.com/p-x9/ObjectArchiveKit.git resolved at 0.5.0
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.6.0
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 3.15.1
Creating working copy for https://github.com/p-x9/swift-fileio.git
Working copy of https://github.com/p-x9/swift-fileio.git resolved at 0.13.0
BUILD FAILURE 6.0 macosSpm