The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build Swift Unidoc, reference master (d6d14e), with Swift 6.1 for Android on 2 Jun 2025 05:12:18 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1

Build Log

51 |             else
52 |             {
53 |                 return try yield(self.inherit ? environ : nil)
   |                                                 `- error: cannot find 'environ' in scope
54 |             }
55 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.Environment.swift:57:29: error: cannot find 'environ' in scope
55 |
56 |             var inherited:Int = 0
57 |             while case _? = environ[inherited]
   |                             `- error: cannot find 'environ' in scope
58 |             {
59 |                 inherited += 1
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.Environment.swift:67:53: error: cannot find 'environ' in scope
65 |                 for i:Int in 0 ..< inherited
66 |                 {
67 |                     $0.initializeElement(at: i, to: environ[i])
   |                                                     `- error: cannot find 'environ' in scope
68 |                 }
69 |                 var i:Int = inherited
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:14:12: error: cannot find type 'pid_t' in scope
 12 |     let invocation:[String]
 13 |     public
 14 |     let id:pid_t
    |            `- error: cannot find type 'pid_t' in scope
 15 |
 16 |     private
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:6:8: error: unsupported platform
  4 | import Darwin
  5 | #else
  6 | #error("unsupported platform")
    |        `- error: unsupported platform
  7 | #endif
  8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:17:34: error: cannot find type 'pid_t' in scope
 15 |
 16 |     private
 17 |     init(invocation:[String], id:pid_t)
    |                                  `- error: cannot find type 'pid_t' in scope
 18 |     {
 19 |         self.invocation = invocation
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:20:14: error: property 'id' requires that 'SystemProcess' be a class type
 18 |     {
 19 |         self.invocation = invocation
 20 |         self.id = id
    |              `- error: property 'id' requires that 'SystemProcess' be a class type
 21 |     }
 22 | }
Swift.Identifiable:2:11: note: where 'Self' = 'SystemProcess'
1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
2 | extension Identifiable where Self : AnyObject {
  |           `- note: where 'Self' = 'SystemProcess'
3 |     public var id: ObjectIdentifier { get }
4 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:108:13: error: cannot find 'posix_spawn_file_actions_init' in scope
106 |         do
107 |         {
108 |             posix_spawn_file_actions_init(&actions)
    |             `- error: cannot find 'posix_spawn_file_actions_init' in scope
109 |         }
110 |         defer
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:108:44: error: cannot find 'actions' in scope
106 |         do
107 |         {
108 |             posix_spawn_file_actions_init(&actions)
    |                                            `- error: cannot find 'actions' in scope
109 |         }
110 |         defer
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:112:13: error: cannot find 'posix_spawn_file_actions_destroy' in scope
110 |         defer
111 |         {
112 |             posix_spawn_file_actions_destroy(&actions)
    |             `- error: cannot find 'posix_spawn_file_actions_destroy' in scope
113 |         }
114 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:112:47: error: cannot find 'actions' in scope
110 |         defer
111 |         {
112 |             posix_spawn_file_actions_destroy(&actions)
    |                                               `- error: cannot find 'actions' in scope
113 |         }
114 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:117:13: error: cannot find 'posix_spawn_file_actions_adddup2' in scope
115 |         if  let stdout:FileDescriptor
116 |         {
117 |             posix_spawn_file_actions_adddup2(&actions, stdout.rawValue, 1)
    |             `- error: cannot find 'posix_spawn_file_actions_adddup2' in scope
118 |         }
119 |         if  let stderr:FileDescriptor
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:117:47: error: cannot find 'actions' in scope
115 |         if  let stdout:FileDescriptor
116 |         {
117 |             posix_spawn_file_actions_adddup2(&actions, stdout.rawValue, 1)
    |                                               `- error: cannot find 'actions' in scope
118 |         }
119 |         if  let stderr:FileDescriptor
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:121:13: error: cannot find 'posix_spawn_file_actions_adddup2' in scope
119 |         if  let stderr:FileDescriptor
120 |         {
121 |             posix_spawn_file_actions_adddup2(&actions, stderr.rawValue, 2)
    |             `- error: cannot find 'posix_spawn_file_actions_adddup2' in scope
122 |         }
123 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:121:47: error: cannot find 'actions' in scope
119 |         if  let stderr:FileDescriptor
120 |         {
121 |             posix_spawn_file_actions_adddup2(&actions, stderr.rawValue, 2)
    |                                               `- error: cannot find 'actions' in scope
122 |         }
123 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:126:13: error: cannot find 'posix_spawn_file_actions_adddup2' in scope
124 |         for stream:SystemProcess.Stream in streams
125 |         {
126 |             posix_spawn_file_actions_adddup2(&actions, stream.parent.rawValue, stream.child)
    |             `- error: cannot find 'posix_spawn_file_actions_adddup2' in scope
127 |         }
128 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:126:47: error: cannot find 'actions' in scope
124 |         for stream:SystemProcess.Stream in streams
125 |         {
126 |             posix_spawn_file_actions_adddup2(&actions, stream.parent.rawValue, stream.child)
    |                                               `- error: cannot find 'actions' in scope
127 |         }
128 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:129:21: error: cannot find type 'pid_t' in scope
127 |         }
128 |
129 |         var process:pid_t = 0
    |                     `- error: cannot find type 'pid_t' in scope
130 |         let status:Int32 = environment.withUnsafePointers
131 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:134:17: error: cannot find 'posix_spawnp' in scope
132 |             if  let command:String
133 |             {
134 |                 posix_spawnp(&process, command, &actions, nil, argv, $0)
    |                 `- error: cannot find 'posix_spawnp' in scope
135 |             }
136 |             else
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:134:50: error: cannot find 'actions' in scope
132 |             if  let command:String
133 |             {
134 |                 posix_spawnp(&process, command, &actions, nil, argv, $0)
    |                                                  `- error: cannot find 'actions' in scope
135 |             }
136 |             else
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:138:17: error: cannot find 'posix_spawn' in scope
136 |             else
137 |             {
138 |                 posix_spawn(&process, invocation[0], &actions, nil, argv, $0)
    |                 `- error: cannot find 'posix_spawn' in scope
139 |             }
140 |         }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:138:55: error: cannot find 'actions' in scope
136 |             else
137 |             {
138 |                 posix_spawn(&process, invocation[0], &actions, nil, argv, $0)
    |                                                       `- error: cannot find 'actions' in scope
139 |             }
140 |         }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:134:59: error: 'nil' requires a contextual type
132 |             if  let command:String
133 |             {
134 |                 posix_spawnp(&process, command, &actions, nil, argv, $0)
    |                                                           `- error: 'nil' requires a contextual type
135 |             }
136 |             else
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:146:47: error: extra argument 'id' in call
144 |         }
145 |
146 |         self.init(invocation: invocation, id: process)
    |                                               `- error: extra argument 'id' in call
147 |     }
148 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:146:19: error: missing argument for parameter 'command' in call
 38 | {
 39 |     public
 40 |     init(command:String?,
    |     `- note: 'init(command:_:stdout:stderr:duping:echo:with:)' declared here
 41 |         _ arguments:String?...,
 42 |         stdout:FileDescriptor? = nil,
    :
144 |         }
145 |
146 |         self.init(invocation: invocation, id: process)
    |                   `- error: missing argument for parameter 'command' in call
147 |     }
148 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:146:31: error: cannot convert value of type '[String]' to expected argument type 'String'
144 |         }
145 |
146 |         self.init(invocation: invocation, id: process)
    |                               `- error: cannot convert value of type '[String]' to expected argument type 'String'
147 |     }
148 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:154:16: error: cannot find 'waitpid' in scope
152 |         var status:Int32 = 0
153 |
154 |         switch waitpid(self.id, &status, 0)
    |                `- error: cannot find 'waitpid' in scope
155 |         {
156 |         case self.id:       break
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:154:29: error: property 'id' requires that 'SystemProcess' be a class type
152 |         var status:Int32 = 0
153 |
154 |         switch waitpid(self.id, &status, 0)
    |                             `- error: property 'id' requires that 'SystemProcess' be a class type
155 |         {
156 |         case self.id:       break
Swift.Identifiable:2:11: note: where 'Self' = 'SystemProcess'
1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
2 | extension Identifiable where Self : AnyObject {
  |           `- note: where 'Self' = 'SystemProcess'
3 |     public var id: ObjectIdentifier { get }
4 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:156:19: error: property 'id' requires that 'SystemProcess' be a class type
154 |         switch waitpid(self.id, &status, 0)
155 |         {
156 |         case self.id:       break
    |                   `- error: property 'id' requires that 'SystemProcess' be a class type
157 |         case let status:    return .failure(.wait(status, self.invocation))
158 |         }
Swift.Identifiable:2:11: note: where 'Self' = 'SystemProcess'
1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
2 | extension Identifiable where Self : AnyObject {
  |           `- note: where 'Self' = 'SystemProcess'
3 |     public var id: ObjectIdentifier { get }
4 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:14:12: error: cannot find type 'pid_t' in scope
 12 |     let invocation:[String]
 13 |     public
 14 |     let id:pid_t
    |            `- error: cannot find type 'pid_t' in scope
 15 |
 16 |     private
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:6:8: error: unsupported platform
  4 | import Darwin
  5 | #else
  6 | #error("unsupported platform")
    |        `- error: unsupported platform
  7 | #endif
  8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:17:34: error: cannot find type 'pid_t' in scope
 15 |
 16 |     private
 17 |     init(invocation:[String], id:pid_t)
    |                                  `- error: cannot find type 'pid_t' in scope
 18 |     {
 19 |         self.invocation = invocation
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:20:14: error: property 'id' requires that 'SystemProcess' be a class type
 18 |     {
 19 |         self.invocation = invocation
 20 |         self.id = id
    |              `- error: property 'id' requires that 'SystemProcess' be a class type
 21 |     }
 22 | }
Swift.Identifiable:2:11: note: where 'Self' = 'SystemProcess'
1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
2 | extension Identifiable where Self : AnyObject {
  |           `- note: where 'Self' = 'SystemProcess'
3 |     public var id: ObjectIdentifier { get }
4 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:108:13: error: cannot find 'posix_spawn_file_actions_init' in scope
106 |         do
107 |         {
108 |             posix_spawn_file_actions_init(&actions)
    |             `- error: cannot find 'posix_spawn_file_actions_init' in scope
109 |         }
110 |         defer
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:108:44: error: cannot find 'actions' in scope
106 |         do
107 |         {
108 |             posix_spawn_file_actions_init(&actions)
    |                                            `- error: cannot find 'actions' in scope
109 |         }
110 |         defer
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:112:13: error: cannot find 'posix_spawn_file_actions_destroy' in scope
110 |         defer
111 |         {
112 |             posix_spawn_file_actions_destroy(&actions)
    |             `- error: cannot find 'posix_spawn_file_actions_destroy' in scope
113 |         }
114 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:112:47: error: cannot find 'actions' in scope
110 |         defer
111 |         {
112 |             posix_spawn_file_actions_destroy(&actions)
    |                                               `- error: cannot find 'actions' in scope
113 |         }
114 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:117:13: error: cannot find 'posix_spawn_file_actions_adddup2' in scope
115 |         if  let stdout:FileDescriptor
116 |         {
117 |             posix_spawn_file_actions_adddup2(&actions, stdout.rawValue, 1)
    |             `- error: cannot find 'posix_spawn_file_actions_adddup2' in scope
118 |         }
119 |         if  let stderr:FileDescriptor
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:117:47: error: cannot find 'actions' in scope
115 |         if  let stdout:FileDescriptor
116 |         {
117 |             posix_spawn_file_actions_adddup2(&actions, stdout.rawValue, 1)
    |                                               `- error: cannot find 'actions' in scope
118 |         }
119 |         if  let stderr:FileDescriptor
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:121:13: error: cannot find 'posix_spawn_file_actions_adddup2' in scope
119 |         if  let stderr:FileDescriptor
120 |         {
121 |             posix_spawn_file_actions_adddup2(&actions, stderr.rawValue, 2)
    |             `- error: cannot find 'posix_spawn_file_actions_adddup2' in scope
122 |         }
123 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:121:47: error: cannot find 'actions' in scope
119 |         if  let stderr:FileDescriptor
120 |         {
121 |             posix_spawn_file_actions_adddup2(&actions, stderr.rawValue, 2)
    |                                               `- error: cannot find 'actions' in scope
122 |         }
123 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:126:13: error: cannot find 'posix_spawn_file_actions_adddup2' in scope
124 |         for stream:SystemProcess.Stream in streams
125 |         {
126 |             posix_spawn_file_actions_adddup2(&actions, stream.parent.rawValue, stream.child)
    |             `- error: cannot find 'posix_spawn_file_actions_adddup2' in scope
127 |         }
128 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:126:47: error: cannot find 'actions' in scope
124 |         for stream:SystemProcess.Stream in streams
125 |         {
126 |             posix_spawn_file_actions_adddup2(&actions, stream.parent.rawValue, stream.child)
    |                                               `- error: cannot find 'actions' in scope
127 |         }
128 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:129:21: error: cannot find type 'pid_t' in scope
127 |         }
128 |
129 |         var process:pid_t = 0
    |                     `- error: cannot find type 'pid_t' in scope
130 |         let status:Int32 = environment.withUnsafePointers
131 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:134:17: error: cannot find 'posix_spawnp' in scope
132 |             if  let command:String
133 |             {
134 |                 posix_spawnp(&process, command, &actions, nil, argv, $0)
    |                 `- error: cannot find 'posix_spawnp' in scope
135 |             }
136 |             else
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:134:50: error: cannot find 'actions' in scope
132 |             if  let command:String
133 |             {
134 |                 posix_spawnp(&process, command, &actions, nil, argv, $0)
    |                                                  `- error: cannot find 'actions' in scope
135 |             }
136 |             else
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:138:17: error: cannot find 'posix_spawn' in scope
136 |             else
137 |             {
138 |                 posix_spawn(&process, invocation[0], &actions, nil, argv, $0)
    |                 `- error: cannot find 'posix_spawn' in scope
139 |             }
140 |         }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:138:55: error: cannot find 'actions' in scope
136 |             else
137 |             {
138 |                 posix_spawn(&process, invocation[0], &actions, nil, argv, $0)
    |                                                       `- error: cannot find 'actions' in scope
139 |             }
140 |         }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:134:59: error: 'nil' requires a contextual type
132 |             if  let command:String
133 |             {
134 |                 posix_spawnp(&process, command, &actions, nil, argv, $0)
    |                                                           `- error: 'nil' requires a contextual type
135 |             }
136 |             else
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:146:47: error: extra argument 'id' in call
144 |         }
145 |
146 |         self.init(invocation: invocation, id: process)
    |                                               `- error: extra argument 'id' in call
147 |     }
148 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:146:19: error: missing argument for parameter 'command' in call
 38 | {
 39 |     public
 40 |     init(command:String?,
    |     `- note: 'init(command:_:stdout:stderr:duping:echo:with:)' declared here
 41 |         _ arguments:String?...,
 42 |         stdout:FileDescriptor? = nil,
    :
144 |         }
145 |
146 |         self.init(invocation: invocation, id: process)
    |                   `- error: missing argument for parameter 'command' in call
147 |     }
148 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:146:31: error: cannot convert value of type '[String]' to expected argument type 'String'
144 |         }
145 |
146 |         self.init(invocation: invocation, id: process)
    |                               `- error: cannot convert value of type '[String]' to expected argument type 'String'
147 |     }
148 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:154:16: error: cannot find 'waitpid' in scope
152 |         var status:Int32 = 0
153 |
154 |         switch waitpid(self.id, &status, 0)
    |                `- error: cannot find 'waitpid' in scope
155 |         {
156 |         case self.id:       break
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:154:29: error: property 'id' requires that 'SystemProcess' be a class type
152 |         var status:Int32 = 0
153 |
154 |         switch waitpid(self.id, &status, 0)
    |                             `- error: property 'id' requires that 'SystemProcess' be a class type
155 |         {
156 |         case self.id:       break
Swift.Identifiable:2:11: note: where 'Self' = 'SystemProcess'
1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
2 | extension Identifiable where Self : AnyObject {
  |           `- note: where 'Self' = 'SystemProcess'
3 |     public var id: ObjectIdentifier { get }
4 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:156:19: error: property 'id' requires that 'SystemProcess' be a class type
154 |         switch waitpid(self.id, &status, 0)
155 |         {
156 |         case self.id:       break
    |                   `- error: property 'id' requires that 'SystemProcess' be a class type
157 |         case let status:    return .failure(.wait(status, self.invocation))
158 |         }
Swift.Identifiable:2:11: note: where 'Self' = 'SystemProcess'
1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
2 | extension Identifiable where Self : AnyObject {
  |           `- note: where 'Self' = 'SystemProcess'
3 |     public var id: ObjectIdentifier { get }
4 | }
[483/1236] Compiling SHA1 exports.swift
[489/1238] Compiling MD5 exports.swift
[497/1238] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[498/1238] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[499/1238] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[500/1238] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[501/1238] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[502/1238] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[503/1238] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[504/1278] Compiling Symbols Symbol.Triple.OS.swift
[505/1278] Compiling DOM XML.swift
[506/1278] Compiling DOM XMLNS.swift
[507/1278] Compiling DOM StreamingEncoder.swift
[508/1278] Compiling Symbols Symbol.File.SchemeError.swift
[509/1278] Compiling Symbols Symbol.File.swift
[510/1278] Compiling SHA1 SHA1.swift
[511/1278] Emitting module SHA1
[512/1279] Compiling Symbols Symbol.Decl.Vector.swift
[513/1279] Compiling Symbols Symbol.Decl.swift
[514/1279] Compiling Symbols Symbol.File.RebaseError.swift
[517/1279] Compiling Symbols Symbol.FileBase.swift
[518/1279] Compiling Symbols Symbol.Module.swift
[519/1279] Compiling Symbols Symbol.Package.swift
[524/1279] Compiling OrderedCollections OrderedSet+Diffing.swift
[525/1279] Compiling OrderedCollections OrderedSet+Equatable.swift
[526/1279] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[527/1279] Compiling OrderedCollections OrderedSet+Hashable.swift
[535/1279] Compiling Symbols Symbol.PackageAtRef.swift
[536/1279] Compiling MD5 MD5.Block.swift
[537/1279] Compiling MD5 MD5.Words.swift
[538/1279] Compiling MD5 MD5.swift
[539/1279] Compiling OrderedCollections OrderedDictionary+Codable.swift
[540/1279] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[541/1279] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[542/1279] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[543/1279] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[544/1279] Compiling OrderedCollections OrderedDictionary+Elements.swift
[545/1279] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[546/1279] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[547/1279] Compiling Symbols Phylum.Decl.Kink.swift
[548/1279] Compiling Symbols Phylum.Decl.Kinks.swift
[549/1279] Compiling Symbols Phylum.Decl.Macro.swift
[550/1279] Compiling Symbols Phylum.Decl.Objectivity.swift
[551/1279] Compiling Symbols Phylum.Decl.Orientation.swift
[552/1279] Compiling Symbols FNV24 (ext).swift
[553/1279] Compiling Symbols FNV24.Extended (ext).swift
[554/1279] Compiling Symbols Symbol.Article.swift
[555/1279] Emitting module DOM
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:12:8: error: unsupported platform
 10 |
 11 | #else
 12 | #error("unsupported platform")
    |        `- error: unsupported platform
 13 | #endif
 14 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:40:50: error: cannot find 'getcwd' in scope
 38 |     {
 39 |         guard
 40 |         let buffer:UnsafeMutablePointer<CChar> = getcwd(nil, 0)
    |                                                  `- error: cannot find 'getcwd' in scope
 41 |         else
 42 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:40:57: error: 'nil' requires a contextual type
 38 |     {
 39 |         guard
 40 |         let buffer:UnsafeMutablePointer<CChar> = getcwd(nil, 0)
    |                                                         `- error: 'nil' requires a contextual type
 41 |         else
 42 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:47:13: error: cannot find 'free' in scope
 45 |         defer
 46 |         {
 47 |             free(buffer)
    |             `- error: cannot find 'free' in scope
 48 |         }
 49 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:10:8: error: unsupported platform
  8 | import Glibc
  9 | #else
 10 | #error("unsupported platform")
    |        `- error: unsupported platform
 11 | #endif
 12 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:20:30: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 18 |     {
 19 |         case unopened(FilePath)
 20 |         case opened(FilePath.DirectoryPointer?)
    |                              `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 21 |     }
 22 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:26:36: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 24 | {
 25 |     private mutating
 26 |     func open() throws -> FilePath.DirectoryPointer?
    |                                    `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 27 |     {
 28 |         switch self
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:31:34: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 29 |         {
 30 |         case .unopened(let path):
 31 |             let pointer:FilePath.DirectoryPointer? = try path.withPlatformString
    |                                  `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 32 |             {
 33 |                 if  let pointer:FilePath.DirectoryPointer = opendir($0)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:56:35: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 54 |     func next() throws -> FilePath.Component?
 55 |     {
 56 |         guard let stream:FilePath.DirectoryPointer = try self.open()
    |                                   `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 57 |         else
 58 |         {
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:56:63: error: type of expression is ambiguous without a type annotation
 54 |     func next() throws -> FilePath.Component?
 55 |     {
 56 |         guard let stream:FilePath.DirectoryPointer = try self.open()
    |                                                               `- error: type of expression is ambiguous without a type annotation
 57 |         else
 58 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:62:45: error: cannot find type 'dirent' in scope
 60 |         }
 61 |
 62 |         guard let offset:Int = MemoryLayout<dirent>.offset(of: \.d_name)
    |                                             `- error: cannot find type 'dirent' in scope
 63 |         else
 64 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:62:64: error: cannot infer key path type from context; consider explicitly specifying a root type
 60 |         }
 61 |
 62 |         guard let offset:Int = MemoryLayout<dirent>.offset(of: \.d_name)
    |                                                                `- error: cannot infer key path type from context; consider explicitly specifying a root type
 63 |         else
 64 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:46: error: cannot find type 'dirent' in scope
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                              `- error: cannot find type 'dirent' in scope
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:56: error: cannot find 'readdir' in scope
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                                        `- error: cannot find 'readdir' in scope
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:56: error: type of expression is ambiguous without a type annotation
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                                        `- error: type of expression is ambiguous without a type annotation
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:92:9: error: cannot find 'closedir' in scope
 90 |         }
 91 |
 92 |         closedir(stream)
    |         `- error: cannot find 'closedir' in scope
 93 |         self = .opened(nil)
 94 |         return nil
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:93:24: error: 'nil' requires a contextual type
 91 |
 92 |         closedir(stream)
 93 |         self = .opened(nil)
    |                        `- error: 'nil' requires a contextual type
 94 |         return nil
 95 |     }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:99:39: error: expression pattern of type 'Errno' cannot match values of type 'FilePath.DirectoryIterator.Stream'
 97 |     func close()
 98 |     {
 99 |         guard case .opened(let stream?) = self
    |                                       `- error: expression pattern of type 'Errno' cannot match values of type 'FilePath.DirectoryIterator.Stream'
100 |         else
101 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:99:21: error: type 'Errno' has no member 'opened'
 97 |     func close()
 98 |     {
 99 |         guard case .opened(let stream?) = self
    |                     `- error: type 'Errno' has no member 'opened'
100 |         else
101 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:105:9: error: cannot find 'closedir' in scope
103 |         }
104 |
105 |         closedir(stream)
    |         `- error: cannot find 'closedir' in scope
106 |         self = .opened(nil)
107 |     }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:106:24: error: 'nil' requires a contextual type
104 |
105 |         closedir(stream)
106 |         self = .opened(nil)
    |                        `- error: 'nil' requires a contextual type
107 |     }
108 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:12:8: error: unsupported platform
 10 |
 11 | #else
 12 | #error("unsupported platform")
    |        `- error: unsupported platform
 13 | #endif
 14 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:40:50: error: cannot find 'getcwd' in scope
 38 |     {
 39 |         guard
 40 |         let buffer:UnsafeMutablePointer<CChar> = getcwd(nil, 0)
    |                                                  `- error: cannot find 'getcwd' in scope
 41 |         else
 42 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:40:57: error: 'nil' requires a contextual type
 38 |     {
 39 |         guard
 40 |         let buffer:UnsafeMutablePointer<CChar> = getcwd(nil, 0)
    |                                                         `- error: 'nil' requires a contextual type
 41 |         else
 42 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:47:13: error: cannot find 'free' in scope
 45 |         defer
 46 |         {
 47 |             free(buffer)
    |             `- error: cannot find 'free' in scope
 48 |         }
 49 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:10:8: error: unsupported platform
  8 | import Glibc
  9 | #else
 10 | #error("unsupported platform")
    |        `- error: unsupported platform
 11 | #endif
 12 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:20:30: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 18 |     {
 19 |         case unopened(FilePath)
 20 |         case opened(FilePath.DirectoryPointer?)
    |                              `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 21 |     }
 22 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:26:36: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 24 | {
 25 |     private mutating
 26 |     func open() throws -> FilePath.DirectoryPointer?
    |                                    `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 27 |     {
 28 |         switch self
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:31:34: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 29 |         {
 30 |         case .unopened(let path):
 31 |             let pointer:FilePath.DirectoryPointer? = try path.withPlatformString
    |                                  `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 32 |             {
 33 |                 if  let pointer:FilePath.DirectoryPointer = opendir($0)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:56:35: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 54 |     func next() throws -> FilePath.Component?
 55 |     {
 56 |         guard let stream:FilePath.DirectoryPointer = try self.open()
    |                                   `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 57 |         else
 58 |         {
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:56:63: error: type of expression is ambiguous without a type annotation
 54 |     func next() throws -> FilePath.Component?
 55 |     {
 56 |         guard let stream:FilePath.DirectoryPointer = try self.open()
    |                                                               `- error: type of expression is ambiguous without a type annotation
 57 |         else
 58 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:62:45: error: cannot find type 'dirent' in scope
 60 |         }
 61 |
 62 |         guard let offset:Int = MemoryLayout<dirent>.offset(of: \.d_name)
    |                                             `- error: cannot find type 'dirent' in scope
 63 |         else
 64 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:62:64: error: cannot infer key path type from context; consider explicitly specifying a root type
 60 |         }
 61 |
 62 |         guard let offset:Int = MemoryLayout<dirent>.offset(of: \.d_name)
    |                                                                `- error: cannot infer key path type from context; consider explicitly specifying a root type
 63 |         else
 64 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:46: error: cannot find type 'dirent' in scope
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                              `- error: cannot find type 'dirent' in scope
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:56: error: cannot find 'readdir' in scope
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                                        `- error: cannot find 'readdir' in scope
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:56: error: type of expression is ambiguous without a type annotation
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                                        `- error: type of expression is ambiguous without a type annotation
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:92:9: error: cannot find 'closedir' in scope
 90 |         }
 91 |
 92 |         closedir(stream)
    |         `- error: cannot find 'closedir' in scope
 93 |         self = .opened(nil)
 94 |         return nil
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:93:24: error: 'nil' requires a contextual type
 91 |
 92 |         closedir(stream)
 93 |         self = .opened(nil)
    |                        `- error: 'nil' requires a contextual type
 94 |         return nil
 95 |     }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:99:39: error: expression pattern of type 'Errno' cannot match values of type 'FilePath.DirectoryIterator.Stream'
 97 |     func close()
 98 |     {
 99 |         guard case .opened(let stream?) = self
    |                                       `- error: expression pattern of type 'Errno' cannot match values of type 'FilePath.DirectoryIterator.Stream'
100 |         else
101 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:99:21: error: type 'Errno' has no member 'opened'
 97 |     func close()
 98 |     {
 99 |         guard case .opened(let stream?) = self
    |                     `- error: type 'Errno' has no member 'opened'
100 |         else
101 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:105:9: error: cannot find 'closedir' in scope
103 |         }
104 |
105 |         closedir(stream)
    |         `- error: cannot find 'closedir' in scope
106 |         self = .opened(nil)
107 |     }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:106:24: error: 'nil' requires a contextual type
104 |
105 |         closedir(stream)
106 |         self = .opened(nil)
    |                        `- error: 'nil' requires a contextual type
107 |     }
108 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:12:8: error: unsupported platform
 10 |
 11 | #else
 12 | #error("unsupported platform")
    |        `- error: unsupported platform
 13 | #endif
 14 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:40:50: error: cannot find 'getcwd' in scope
 38 |     {
 39 |         guard
 40 |         let buffer:UnsafeMutablePointer<CChar> = getcwd(nil, 0)
    |                                                  `- error: cannot find 'getcwd' in scope
 41 |         else
 42 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:40:57: error: 'nil' requires a contextual type
 38 |     {
 39 |         guard
 40 |         let buffer:UnsafeMutablePointer<CChar> = getcwd(nil, 0)
    |                                                         `- error: 'nil' requires a contextual type
 41 |         else
 42 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:47:13: error: cannot find 'free' in scope
 45 |         defer
 46 |         {
 47 |             free(buffer)
    |             `- error: cannot find 'free' in scope
 48 |         }
 49 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:10:8: error: unsupported platform
  8 | import Glibc
  9 | #else
 10 | #error("unsupported platform")
    |        `- error: unsupported platform
 11 | #endif
 12 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:20:30: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 18 |     {
 19 |         case unopened(FilePath)
 20 |         case opened(FilePath.DirectoryPointer?)
    |                              `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 21 |     }
 22 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:26:36: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 24 | {
 25 |     private mutating
 26 |     func open() throws -> FilePath.DirectoryPointer?
    |                                    `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 27 |     {
 28 |         switch self
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:31:34: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 29 |         {
 30 |         case .unopened(let path):
 31 |             let pointer:FilePath.DirectoryPointer? = try path.withPlatformString
    |                                  `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 32 |             {
 33 |                 if  let pointer:FilePath.DirectoryPointer = opendir($0)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:56:35: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 54 |     func next() throws -> FilePath.Component?
 55 |     {
 56 |         guard let stream:FilePath.DirectoryPointer = try self.open()
    |                                   `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 57 |         else
 58 |         {
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:56:63: error: type of expression is ambiguous without a type annotation
 54 |     func next() throws -> FilePath.Component?
 55 |     {
 56 |         guard let stream:FilePath.DirectoryPointer = try self.open()
    |                                                               `- error: type of expression is ambiguous without a type annotation
 57 |         else
 58 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:62:45: error: cannot find type 'dirent' in scope
 60 |         }
 61 |
 62 |         guard let offset:Int = MemoryLayout<dirent>.offset(of: \.d_name)
    |                                             `- error: cannot find type 'dirent' in scope
 63 |         else
 64 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:62:64: error: cannot infer key path type from context; consider explicitly specifying a root type
 60 |         }
 61 |
 62 |         guard let offset:Int = MemoryLayout<dirent>.offset(of: \.d_name)
    |                                                                `- error: cannot infer key path type from context; consider explicitly specifying a root type
 63 |         else
 64 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:46: error: cannot find type 'dirent' in scope
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                              `- error: cannot find type 'dirent' in scope
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:56: error: cannot find 'readdir' in scope
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                                        `- error: cannot find 'readdir' in scope
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:56: error: type of expression is ambiguous without a type annotation
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                                        `- error: type of expression is ambiguous without a type annotation
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:92:9: error: cannot find 'closedir' in scope
 90 |         }
 91 |
 92 |         closedir(stream)
    |         `- error: cannot find 'closedir' in scope
 93 |         self = .opened(nil)
 94 |         return nil
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:93:24: error: 'nil' requires a contextual type
 91 |
 92 |         closedir(stream)
 93 |         self = .opened(nil)
    |                        `- error: 'nil' requires a contextual type
 94 |         return nil
 95 |     }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:99:39: error: expression pattern of type 'Errno' cannot match values of type 'FilePath.DirectoryIterator.Stream'
 97 |     func close()
 98 |     {
 99 |         guard case .opened(let stream?) = self
    |                                       `- error: expression pattern of type 'Errno' cannot match values of type 'FilePath.DirectoryIterator.Stream'
100 |         else
101 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:99:21: error: type 'Errno' has no member 'opened'
 97 |     func close()
 98 |     {
 99 |         guard case .opened(let stream?) = self
    |                     `- error: type 'Errno' has no member 'opened'
100 |         else
101 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:105:9: error: cannot find 'closedir' in scope
103 |         }
104 |
105 |         closedir(stream)
    |         `- error: cannot find 'closedir' in scope
106 |         self = .opened(nil)
107 |     }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:106:24: error: 'nil' requires a contextual type
104 |
105 |         closedir(stream)
106 |         self = .opened(nil)
    |                        `- error: 'nil' requires a contextual type
107 |     }
108 | }
[563/1280] Emitting module Grammar
[564/1280] Emitting module MD5
[570/1281] Compiling Symbols Symbol.Block.swift
[571/1281] Compiling Symbols Symbol.Decl.Language.swift
[572/1285] Compiling Symbols Symbol.PackageScope.swift
[573/1285] Compiling Symbols Symbol.Product.swift
[574/1285] Compiling Symbols Symbol.Triple.Architecture.swift
[576/1285] Compiling Symbols Symbol.Triple.Vendor.swift
[577/1285] Compiling Symbols Symbol.Triple.swift
[578/1285] Compiling Symbols Symbol.USR.swift
[579/1285] Compiling Symbols Symbol.Volume.swift
[589/1293] Compiling Symbols Unicode.Scalar (ext).swift
[590/1293] Compiling Symbols Phylum.swift
[591/1293] Compiling Symbols Symbol.ACL.swift
[592/1293] Compiling Symbols Symbol.swift
[595/1293] Compiling Symbols Phylum.Decl.Route.swift
[596/1293] Compiling Symbols Phylum.Decl.swift
[597/1293] Compiling Symbols Phylum.DeclFlags.swift
[598/1293] Compiling Symbols Phylum.Language.swift
[599/1293] Compiling Symbols Phylum.SwiftFlags.swift
[601/1293] Compiling OrderedCollections OrderedSet+Sendable.swift
[602/1293] Compiling OrderedCollections OrderedSet+SubSequence.swift
[603/1293] Compiling OrderedCollections OrderedSet+Testing.swift
[604/1293] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[605/1293] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[606/1293] Compiling OrderedCollections OrderedSet.swift
[607/1293] Compiling OrderedCollections _UnsafeBitset.swift
[620/1294] Emitting module OrderedCollections
[620/1300] Wrapping AST for _NIODataStructures for debugging
error: emit-module command failed with exit code 1 (use -v to see invocation)
[622/1300] Emitting module SystemIO
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:12:8: error: unsupported platform
 10 |
 11 | #else
 12 | #error("unsupported platform")
    |        `- error: unsupported platform
 13 | #endif
 14 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:10:8: error: unsupported platform
  8 | import Glibc
  9 | #else
 10 | #error("unsupported platform")
    |        `- error: unsupported platform
 11 | #endif
 12 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:20:30: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 18 |     {
 19 |         case unopened(FilePath)
 20 |         case opened(FilePath.DirectoryPointer?)
    |                              `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 21 |     }
 22 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:26:36: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 24 | {
 25 |     private mutating
 26 |     func open() throws -> FilePath.DirectoryPointer?
    |                                    `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 27 |     {
 28 |         switch self
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryPointer.swift:6:8: error: unsupported platform
 4 | import Glibc
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:6:8: error: unsupported platform
 4 | import Glibc
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:15:15: error: cannot find type 'stat' in scope
13 | {
14 |     @usableFromInline
15 |     let value:stat
   |               `- error: cannot find type 'stat' in scope
16 |
17 |     private
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:18:16: error: cannot find type 'stat' in scope
16 |
17 |     private
18 |     init(value:stat)
   |                `- error: cannot find type 'stat' in scope
19 |     {
20 |         self.value = value
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:28:30: error: cannot find 'S_IFMT' in scope
26 |     func `is`(_ type:FileType) -> Bool
27 |     {
28 |         self.value.st_mode & S_IFMT == type.mask
   |                              `- error: cannot find 'S_IFMT' in scope
29 |     }
30 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileType.swift:23:14: error: cannot find type 'mode_t' in scope
21 | {
22 |     @inlinable
23 |     var mask:mode_t
   |              `- error: cannot find type 'mode_t' in scope
24 |     {
25 |         switch self
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileSystemStats.swift:6:8: error: unsupported platform
 4 | import Darwin
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileType.swift:6:8: error: unsupported platform
 4 | import Glibc
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.Environment.swift:6:8: error: unsupported platform
 4 | import Darwin
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:14:12: error: cannot find type 'pid_t' in scope
 12 |     let invocation:[String]
 13 |     public
 14 |     let id:pid_t
    |            `- error: cannot find type 'pid_t' in scope
 15 |
 16 |     private
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:6:8: error: unsupported platform
  4 | import Darwin
  5 | #else
  6 | #error("unsupported platform")
    |        `- error: unsupported platform
  7 | #endif
  8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:17:34: error: cannot find type 'pid_t' in scope
 15 |
 16 |     private
 17 |     init(invocation:[String], id:pid_t)
    |                                  `- error: cannot find type 'pid_t' in scope
 18 |     {
 19 |         self.invocation = invocation
[625/1315] Compiling ISO ISO.swift
[626/1315] Compiling DequeModule Deque+Testing.swift
[627/1315] Compiling DequeModule Deque._Storage.swift
[628/1315] Compiling DequeModule _DequeBuffer.swift
[629/1315] Compiling DequeModule _DequeBufferHeader.swift
[631/1315] Compiling DequeModule Deque+Codable.swift
[632/1315] Compiling DequeModule Deque+Collection.swift
[633/1315] Compiling DequeModule Deque+CustomReflectable.swift
[634/1315] Compiling DequeModule Deque+Descriptions.swift
[635/1315] Compiling DequeModule Deque+Extras.swift
[636/1315] Emitting module Symbols
[637/1345] Compiling URI URI.RelativePathRule.swift
[638/1345] Compiling URI URI.QueryComponentRule.UnencodedByte.swift
[640/1362] Compiling Sitemaps exports.swift
[641/1362] Compiling HTML HTML (ext).swift
[642/1362] Compiling HTML HTML.AttributeEncoder (ext).swift
[643/1362] Compiling Sitemaps XML.Sitemap.ContentEncoder (ext).swift
[644/1362] Compiling Sitemaps XML.Sitemap (ext).swift
[645/1362] Emitting module Sitemaps
[646/1363] Compiling HTML SVG.ContentEncoder (ext).swift
[647/1363] Compiling HTML HTML.OutputStreamable (ext).swift
[648/1363] Compiling HTML HTML.OutputStreamableHeading (ext).swift
[649/1363] Compiling HTML Never (ext).swift
[653/1371] Compiling HTML SVG.Point.swift
[654/1371] Compiling HTML exports.swift
[657/1371] Compiling HTML HTML.ContentEncoder (ext).swift
[658/1371] Compiling HTML SVG (ext).swift
[663/1371] Compiling HTML Optional (ext).swift
[664/1371] Compiling HTML HTML.Attribute.Property.swift
[667/1371] Compiling HTML HTML.Attribute.Rel.swift
[668/1371] Compiling HTML HTML.Link.swift
[669/1371] Compiling DequeModule _DequeSlot.swift
[670/1371] Compiling DequeModule _UnsafeWrappedBuffer.swift
[671/1371] Compiling URI URI.QueryRule.swift
[672/1371] Compiling URI URI.QuerySeparatorRule.swift
[673/1374] Compiling _AsyncChannel Rethrow.swift
[680/1374] Emitting module HTML
[681/1374] Compiling HTML lexemes.swift
[682/1375] Emitting module _AsyncChannel
[687/1375] Compiling _AsyncChannel Locking.swift
[688/1375] Compiling _AsyncChannel AsyncThrowingChannel.swift
[689/1375] Compiling ISO ISO.Macrolanguage (gen).swift
[690/1375] Compiling ISO ISO.Locale.swift
[692/1376] Compiling URI URI.Path.ComponentConvertible.swift
[693/1376] Compiling URI URI.Path.swift
[694/1376] Compiling URI URI.Query.EncodingSet.swift
[695/1376] Compiling URI URI.Rule.swift
[696/1376] Compiling URI URI.Path.Component.EncodingSet.swift
[697/1376] Compiling URI URI.Path.Component.swift
[698/1391] Compiling SourceDiagnostics DiagnosticFragment.swift
[700/1391] Compiling SourceDiagnostics DiagnosticAlert.swift
[701/1391] Compiling SourceDiagnostics DiagnosticLevel.swift
[702/1391] Compiling SourceDiagnostics Diagnostics.Group.swift
[703/1391] Compiling SourceDiagnostics Demangler.swift
[704/1391] Emitting module URI
[705/1391] Compiling _AsyncChannel ChannelStorage.swift
[706/1391] Emitting module ISO
[707/1391] Compiling ISO ISO.Country (gen).swift
[709/1392] Compiling SourceDiagnostics DiagnosticLogger.swift
[710/1394] Compiling URI URI.Query.swift
[711/1394] Compiling URI URI.QueryEncodedForm.swift
[712/1394] Compiling URI URI.swift
[713/1415] Compiling Multiparts Collection (ext).swift
[714/1415] Compiling Multiparts MultipartForm.Item.Header.swift
[715/1415] Compiling _AsyncChannel AsyncChannel.swift
[716/1415] Compiling _AsyncChannel ChannelStateMachine.swift
[717/1416] Emitting module SourceDiagnostics
[723/1416] Compiling Multiparts ContentTypeRule.swift
[724/1416] Compiling Multiparts HorizontalWhitespaceRule.swift
[725/1416] Compiling Multiparts MultipartHeaderRule.OpaqueFieldValue.swift
[726/1416] Compiling Multiparts MultipartHeaderRule.swift
[727/1416] Compiling Multiparts MultipartForm.swift
[728/1416] Compiling Multiparts MultipartSplitError.swift
[729/1416] Compiling Multiparts ContentDispositionRule.swift
[730/1416] Compiling Multiparts MultipartForm.Iterator.swift
[731/1416] Compiling Multiparts MultipartForm.Item.swift
[732/1416] Compiling Multiparts MultipartView.swift
[733/1416] Compiling Multiparts ContentDisposition.swift
[734/1416] Emitting module DequeModule
[735/1417] Compiling Multiparts MultipartParameterRule.QuotedString.EscapedCharacter.swift
[736/1417] Compiling Multiparts MultipartParameterRule.QuotedString.LiteralCharacter.swift
[738/1431] Compiling Multiparts MultipartParameterRule.QuotedString.swift
[739/1431] Compiling Multiparts MultipartParameterRule.swift
[744/1432] Compiling Multiparts MultipartParameterRule.QuotedString.EscapeSequence.swift
[745/1432] Emitting module Multiparts
[746/1444] Compiling Multiparts ContentType.swift
[750/1489] Compiling UCF UCF.SignaturePatternRule.swift
[751/1489] Compiling UCF UCF.TypeElementRule.PostfixOperatorCodepoint.swift
[752/1489] Compiling UCF UCF.DisambiguatorRule.Clause.AlphanumericCodepoint.swift
[753/1489] Compiling UCF UCF.DisambiguatorRule.Clause.AlphanumericWord.swift
[754/1489] Compiling UCF UCF.DisambiguatorRule.Clause.AlphanumericWords.swift
[755/1489] Compiling UCF UCF.DisambiguatorRule.Clause.swift
[756/1489] Compiling UCF UCF.DisambiguatorRule.Clauses.swift
[757/1489] Compiling UCF UCF.DisambiguatorRule.swift
[758/1489] Compiling UCF UCF.ArrowRule.swift
[759/1489] Compiling UCF UCF.BracketPatternRule.swift
[760/1489] Compiling UCF UCF.DisambiguationSuffixRule.swift
[761/1507] Compiling PieCharts Pie.ShareFormat.swift
[762/1507] Compiling PieCharts Pie.ShareFormat1F.swift
[763/1508] Compiling PieCharts Pie.Shape.swift
[764/1508] Compiling MarkdownRendering HTML.OutputStreamableMarkdown.swift
[765/1508] Compiling MarkdownRendering Markdown.SyntaxHighlight.swift
[767/1508] Compiling MarkdownRendering Markdown.TreeContext.Signage.swift
[768/1508] Compiling MarkdownRendering Markdown.TreeContext.swift
[769/1508] Compiling MarkdownRendering HTML.AttributeEncoder (ext).swift
[770/1508] Compiling MarkdownRendering HTML.ContentEncoder (ext).swift
[771/1508] Compiling UnixCalendar Timestamp.swift
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/Timestamp.swift:15:8: error: Platform doesn’t support 'gmtime_r'
13 |
14 | #else
15 | #error("Platform doesn’t support 'gmtime_r'")
   |        `- error: Platform doesn’t support 'gmtime_r'
16 | #endif
17 |
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/Timestamp.swift:61:23: error: cannot find type 'tm' in scope
59 |     init?(secondSinceEpoch:Int)
60 |     {
61 |         var segmented:tm = .init(
   |                       `- error: cannot find type 'tm' in scope
62 |             tm_sec:     -1,
63 |             tm_min:     -1,
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/Timestamp.swift:75:57: error: cannot find 'gmtime_r' in scope
73 |             tm_zone:    nil)
74 |
75 |         guard withUnsafePointer(to: secondSinceEpoch, { gmtime_r($0, &segmented) }) != nil,
   |                                                         `- error: cannot find 'gmtime_r' in scope
76 |         let weekday:Timestamp.Weekday = .init(rawValue: Int.init(segmented.tm_wday)),
77 |         let month:Timestamp.Month = .init(rawValue: segmented.tm_mon + 1)
[772/1509] Compiling MarkdownRendering Markdown.TreeContext.Highlight.swift
[773/1509] Compiling MarkdownRendering Markdown.TreeContext.Section.swift
[774/1509] Emitting module PieCharts
[775/1509] Compiling UnixCalendar UnixAttosecond (ext).swift
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:21:8: error: Platform doesn’t support 'clock_gettime'
19 | import func Darwin.timegm
20 | #else
21 | #error("Platform doesn’t support 'clock_gettime'")
   |        `- error: Platform doesn’t support 'clock_gettime'
22 | #endif
23 |
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:30:18: error: cannot find type 'timespec' in scope
28 |     static func now() -> Self
29 |     {
30 |         var time:timespec = .init()
   |                  `- error: cannot find type 'timespec' in scope
31 |
32 |         if  clock_gettime(CLOCK_REALTIME, &time) != 0
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:32:13: error: cannot find 'clock_gettime' in scope
30 |         var time:timespec = .init()
31 |
32 |         if  clock_gettime(CLOCK_REALTIME, &time) != 0
   |             `- error: cannot find 'clock_gettime' in scope
33 |         {
34 |             fatalError("system clock unavailable! (CLOCK_REALTIME)")
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:32:27: error: cannot find 'CLOCK_REALTIME' in scope
30 |         var time:timespec = .init()
31 |
32 |         if  clock_gettime(CLOCK_REALTIME, &time) != 0
   |                           `- error: cannot find 'CLOCK_REALTIME' in scope
33 |         {
34 |             fatalError("system clock unavailable! (CLOCK_REALTIME)")
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:59:18: error: cannot find type 'tm' in scope
57 |         }
58 |
59 |         var time:tm = .init(
   |                  `- error: cannot find type 'tm' in scope
60 |             tm_sec:     timestamp.time.second,
61 |             tm_min:     timestamp.time.minute,
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:73:52: error: cannot find 'timegm' in scope
71 |             tm_zone:    nil)
72 |
73 |         switch withUnsafeMutablePointer(to: &time, timegm)
   |                                                    `- error: cannot find 'timegm' in scope
74 |         {
75 |         case -1:            return nil
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:73:52: error: converting non-escaping value to '(UnsafeMutablePointer<T>) throws(E) -> Result' may allow it to escape
71 |             tm_zone:    nil)
72 |
73 |         switch withUnsafeMutablePointer(to: &time, timegm)
   |                                                    `- error: converting non-escaping value to '(UnsafeMutablePointer<T>) throws(E) -> Result' may allow it to escape
74 |         {
75 |         case -1:            return nil
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:73:16: error: generic parameter 'E' could not be inferred
71 |             tm_zone:    nil)
72 |
73 |         switch withUnsafeMutablePointer(to: &time, timegm)
   |                `- error: generic parameter 'E' could not be inferred
74 |         {
75 |         case -1:            return nil
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:73:16: error: generic parameter 'Result' could not be inferred
71 |             tm_zone:    nil)
72 |
73 |         switch withUnsafeMutablePointer(to: &time, timegm)
   |                `- error: generic parameter 'Result' could not be inferred
74 |         {
75 |         case -1:            return nil
Swift.withUnsafeMutablePointer:1:13: note: in call to function 'withUnsafeMutablePointer(to:_:)'
1 | public func withUnsafeMutablePointer<T, E, Result>(to value: inout T, _ body: (UnsafeMutablePointer<T>) throws(E) -> Result) throws(E) -> Result where E : Error, T : ~Copyable, Result : ~Copyable
  |             `- note: in call to function 'withUnsafeMutablePointer(to:_:)'
[776/1509] Compiling UnixCalendar UnixDate (ext).swift
[777/1509] Compiling PieCharts Pie.swift
[778/1554] Compiling MarkdownAST Markdown.BlockProse.swift
[779/1554] Compiling MarkdownAST Markdown.BlockQuote.swift
[780/1554] Compiling MarkdownAST Markdown.BlockRule.swift
[781/1554] Compiling MarkdownAST Markdown.NeverOption.swift
[782/1554] Compiling MarkdownAST Markdown.AnyOption.swift
[783/1554] Compiling MarkdownAST Markdown.BlockAside.swift
[786/1554] Compiling MarkdownAST Markdown.BlockListUnordered.swift
[787/1554] Compiling MarkdownAST Markdown.BlockParagraph.swift
[788/1562] Compiling MarkdownAST Markdown.InlineElement.swift
[789/1562] Compiling MarkdownAST Markdown.InlineHTML.swift
[791/1562] Compiling MarkdownAST Markdown.BlockItem.swift
[792/1562] Compiling MarkdownAST Markdown.BlockListOrdered.swift
[793/1562] Compiling MarkdownAST Markdown.InlineAutolink.swift
[794/1562] Compiling MarkdownAST Markdown.InlineCode.swift
[795/1582] Compiling JSONParsing JSON.Object (ext).swift
[796/1582] Compiling JSONParsing JSON (ext).swift
[797/1582] Compiling JSONParsing JSON.NodeRule.Array.swift
[798/1582] Compiling JSONParsing JSON.Array (ext).swift
[799/1582] Compiling JSONParsing JSON.InvalidUnicodeScalarError.swift
[800/1582] Compiling JSONParsing JSON.Node (ext).swift
[801/1582] Compiling JSONParsing JSON.NodeRule.False.swift
[802/1582] Compiling JSONParsing JSON.NodeRule.Null.swift
[803/1582] Compiling JSONParsing JSON.NodeRule.Object.Item.swift
[804/1582] Compiling JSONParsing JSON.NodeRule.Object.swift
[805/1582] Compiling JSONParsing JSON.NodeRule.True.swift
[806/1582] Compiling JSONParsing JSON.NodeRule.swift
[807/1582] Compiling JSONParsing JSON.StringRule.EscapedCodeUnit.swift
[808/1582] Compiling JSONParsing JSON.StringRule.swift
[809/1582] Compiling MarkdownAST Markdown.BlockCode.swift
[810/1582] Compiling MarkdownAST Markdown.BlockContainer.swift
[811/1582] Compiling MarkdownAST Markdown.BlockDirective.swift
[812/1582] Compiling MarkdownAST Markdown.BlockDirectiveOption.swift
[813/1582] Compiling MarkdownAST Markdown.BlockDirectiveType.swift
[814/1582] Compiling MarkdownAST Markdown.InlineHyperlink.Target.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[821/1582] Emitting module UnixCalendar
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/Timestamp.swift:15:8: error: Platform doesn’t support 'gmtime_r'
13 |
14 | #else
15 | #error("Platform doesn’t support 'gmtime_r'")
   |        `- error: Platform doesn’t support 'gmtime_r'
16 | #endif
17 |
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:21:8: error: Platform doesn’t support 'clock_gettime'
19 | import func Darwin.timegm
20 | #else
21 | #error("Platform doesn’t support 'clock_gettime'")
   |        `- error: Platform doesn’t support 'clock_gettime'
22 | #endif
23 |
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:59:18: error: cannot find type 'tm' in scope
57 |         }
58 |
59 |         var time:tm = .init(
   |                  `- error: cannot find type 'tm' in scope
60 |             tm_sec:     timestamp.time.second,
61 |             tm_min:     timestamp.time.minute,
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:73:52: error: cannot find 'timegm' in scope
71 |             tm_zone:    nil)
72 |
73 |         switch withUnsafeMutablePointer(to: &time, timegm)
   |                                                    `- error: cannot find 'timegm' in scope
74 |         {
75 |         case -1:            return nil
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:73:52: error: converting non-escaping value to '(UnsafeMutablePointer<T>) throws(E) -> Result' may allow it to escape
71 |             tm_zone:    nil)
72 |
73 |         switch withUnsafeMutablePointer(to: &time, timegm)
   |                                                    `- error: converting non-escaping value to '(UnsafeMutablePointer<T>) throws(E) -> Result' may allow it to escape
74 |         {
75 |         case -1:            return nil
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:73:16: error: generic parameter 'E' could not be inferred
71 |             tm_zone:    nil)
72 |
73 |         switch withUnsafeMutablePointer(to: &time, timegm)
   |                `- error: generic parameter 'E' could not be inferred
74 |         {
75 |         case -1:            return nil
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:73:16: error: generic parameter 'Result' could not be inferred
71 |             tm_zone:    nil)
72 |
73 |         switch withUnsafeMutablePointer(to: &time, timegm)
   |                `- error: generic parameter 'Result' could not be inferred
74 |         {
75 |         case -1:            return nil
Swift.withUnsafeMutablePointer:1:13: note: in call to function 'withUnsafeMutablePointer(to:_:)'
1 | public func withUnsafeMutablePointer<T, E, Result>(to value: inout T, _ body: (UnsafeMutablePointer<T>) throws(E) -> Result) throws(E) -> Result where E : Error, T : ~Copyable, Result : ~Copyable
  |             `- note: in call to function 'withUnsafeMutablePointer(to:_:)'
[824/1582] Compiling UnixCalendar UnixMillisecond (ext).swift
[825/1582] Emitting module UCF
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:6:8: error: unsupported platform
 4 | import Glibc
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:15:15: error: cannot find type 'stat' in scope
13 | {
14 |     @usableFromInline
15 |     let value:stat
   |               `- error: cannot find type 'stat' in scope
16 |
17 |     private
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:18:16: error: cannot find type 'stat' in scope
16 |
17 |     private
18 |     init(value:stat)
   |                `- error: cannot find type 'stat' in scope
19 |     {
20 |         self.value = value
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:28:30: error: cannot find 'S_IFMT' in scope
26 |     func `is`(_ type:FileType) -> Bool
27 |     {
28 |         self.value.st_mode & S_IFMT == type.mask
   |                              `- error: cannot find 'S_IFMT' in scope
29 |     }
30 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileType.swift:23:14: error: cannot find type 'mode_t' in scope
21 | {
22 |     @inlinable
23 |     var mask:mode_t
   |              `- error: cannot find type 'mode_t' in scope
24 |     {
25 |         switch self
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:39:20: error: cannot find 'stat' in scope
37 |         {
38 |             var value:stat = .init()
39 |             switch stat($0, &value)
   |                    `- error: cannot find 'stat' in scope
40 |             {
41 |             case 0: return .init(value: value)
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:42:48: error: cannot find 'errno' in scope
40 |             {
41 |             case 0: return .init(value: value)
42 |             case _: throw Errno.init(rawValue: errno)
   |                                                `- error: cannot find 'errno' in scope
43 |             }
44 |         }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:38:23: error: cannot find type 'stat' in scope
36 |         try path.withPlatformString
37 |         {
38 |             var value:stat = .init()
   |                       `- error: cannot find type 'stat' in scope
39 |             switch stat($0, &value)
40 |             {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:36:18: error: type of expression is ambiguous without a type annotation
34 |     func status(of path:FilePath) throws -> Self
35 |     {
36 |         try path.withPlatformString
   |                  `- error: type of expression is ambiguous without a type annotation
37 |         {
38 |             var value:stat = .init()
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:49:19: error: cannot find type 'stat' in scope
47 |     func status(of file:FileDescriptor) throws -> Self
48 |     {
49 |         var value:stat = .init()
   |                   `- error: cannot find type 'stat' in scope
50 |         switch fstat(file.rawValue, &value)
51 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:50:16: error: cannot find 'fstat' in scope
48 |     {
49 |         var value:stat = .init()
50 |         switch fstat(file.rawValue, &value)
   |                `- error: cannot find 'fstat' in scope
51 |         {
52 |         case 0: return .init(value: value)
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:53:44: error: cannot find 'errno' in scope
51 |         {
52 |         case 0: return .init(value: value)
53 |         case _: throw Errno.init(rawValue: errno)
   |                                            `- error: cannot find 'errno' in scope
54 |         }
55 |     }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:6:8: error: unsupported platform
 4 | import Glibc
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:15:15: error: cannot find type 'stat' in scope
13 | {
14 |     @usableFromInline
15 |     let value:stat
   |               `- error: cannot find type 'stat' in scope
16 |
17 |     private
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:18:16: error: cannot find type 'stat' in scope
16 |
17 |     private
18 |     init(value:stat)
   |                `- error: cannot find type 'stat' in scope
19 |     {
20 |         self.value = value
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:28:30: error: cannot find 'S_IFMT' in scope
26 |     func `is`(_ type:FileType) -> Bool
27 |     {
28 |         self.value.st_mode & S_IFMT == type.mask
   |                              `- error: cannot find 'S_IFMT' in scope
29 |     }
30 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileType.swift:23:14: error: cannot find type 'mode_t' in scope
21 | {
22 |     @inlinable
23 |     var mask:mode_t
   |              `- error: cannot find type 'mode_t' in scope
24 |     {
25 |         switch self
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:39:20: error: cannot find 'stat' in scope
37 |         {
38 |             var value:stat = .init()
39 |             switch stat($0, &value)
   |                    `- error: cannot find 'stat' in scope
40 |             {
41 |             case 0: return .init(value: value)
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:42:48: error: cannot find 'errno' in scope
40 |             {
41 |             case 0: return .init(value: value)
42 |             case _: throw Errno.init(rawValue: errno)
   |                                                `- error: cannot find 'errno' in scope
43 |             }
44 |         }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:38:23: error: cannot find type 'stat' in scope
36 |         try path.withPlatformString
37 |         {
38 |             var value:stat = .init()
   |                       `- error: cannot find type 'stat' in scope
39 |             switch stat($0, &value)
40 |             {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:36:18: error: type of expression is ambiguous without a type annotation
34 |     func status(of path:FilePath) throws -> Self
35 |     {
36 |         try path.withPlatformString
   |                  `- error: type of expression is ambiguous without a type annotation
37 |         {
38 |             var value:stat = .init()
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:49:19: error: cannot find type 'stat' in scope
47 |     func status(of file:FileDescriptor) throws -> Self
48 |     {
49 |         var value:stat = .init()
   |                   `- error: cannot find type 'stat' in scope
50 |         switch fstat(file.rawValue, &value)
51 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:50:16: error: cannot find 'fstat' in scope
48 |     {
49 |         var value:stat = .init()
50 |         switch fstat(file.rawValue, &value)
   |                `- error: cannot find 'fstat' in scope
51 |         {
52 |         case 0: return .init(value: value)
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:53:44: error: cannot find 'errno' in scope
51 |         {
52 |         case 0: return .init(value: value)
53 |         case _: throw Errno.init(rawValue: errno)
   |                                            `- error: cannot find 'errno' in scope
54 |         }
55 |     }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:6:8: error: unsupported platform
 4 | import Glibc
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:15:15: error: cannot find type 'stat' in scope
13 | {
14 |     @usableFromInline
15 |     let value:stat
   |               `- error: cannot find type 'stat' in scope
16 |
17 |     private
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:18:16: error: cannot find type 'stat' in scope
16 |
17 |     private
18 |     init(value:stat)
   |                `- error: cannot find type 'stat' in scope
19 |     {
20 |         self.value = value
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:28:30: error: cannot find 'S_IFMT' in scope
26 |     func `is`(_ type:FileType) -> Bool
27 |     {
28 |         self.value.st_mode & S_IFMT == type.mask
   |                              `- error: cannot find 'S_IFMT' in scope
29 |     }
30 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileType.swift:23:14: error: cannot find type 'mode_t' in scope
21 | {
22 |     @inlinable
23 |     var mask:mode_t
   |              `- error: cannot find type 'mode_t' in scope
24 |     {
25 |         switch self
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:39:20: error: cannot find 'stat' in scope
37 |         {
38 |             var value:stat = .init()
39 |             switch stat($0, &value)
   |                    `- error: cannot find 'stat' in scope
40 |             {
41 |             case 0: return .init(value: value)
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:42:48: error: cannot find 'errno' in scope
40 |             {
41 |             case 0: return .init(value: value)
42 |             case _: throw Errno.init(rawValue: errno)
   |                                                `- error: cannot find 'errno' in scope
43 |             }
44 |         }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:38:23: error: cannot find type 'stat' in scope
36 |         try path.withPlatformString
37 |         {
38 |             var value:stat = .init()
   |                       `- error: cannot find type 'stat' in scope
39 |             switch stat($0, &value)
40 |             {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:36:18: error: type of expression is ambiguous without a type annotation
34 |     func status(of path:FilePath) throws -> Self
35 |     {
36 |         try path.withPlatformString
   |                  `- error: type of expression is ambiguous without a type annotation
37 |         {
38 |             var value:stat = .init()
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:49:19: error: cannot find type 'stat' in scope
47 |     func status(of file:FileDescriptor) throws -> Self
48 |     {
49 |         var value:stat = .init()
   |                   `- error: cannot find type 'stat' in scope
50 |         switch fstat(file.rawValue, &value)
51 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:50:16: error: cannot find 'fstat' in scope
48 |     {
49 |         var value:stat = .init()
50 |         switch fstat(file.rawValue, &value)
   |                `- error: cannot find 'fstat' in scope
51 |         {
52 |         case 0: return .init(value: value)
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:53:44: error: cannot find 'errno' in scope
51 |         {
52 |         case 0: return .init(value: value)
53 |         case _: throw Errno.init(rawValue: errno)
   |                                            `- error: cannot find 'errno' in scope
54 |         }
55 |     }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileSystemStats.swift:6:8: error: unsupported platform
 4 | import Darwin
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /host/spi-builder-workspace/Sources/MarkdownABI/README.md
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /host/spi-builder-workspace/Sources/Symbols/README.md
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /host/spi-builder-workspace/Sources/_AsyncChannel/README.md
[0/1] Planning build
[1/1] Compiling plugin GenerateManual
[2/2] Compiling plugin GenerateDoccReference
Building for debugging...
[2/591] Write sources
[17/593] Compiling CNIOLinux liburing_shims.c
[17/593] Compiling CNIOWASI CNIOWASI.c
[19/593] Compiling CNIODarwin shim.c
[20/593] Compiling CNIOLLHTTP c_nio_http.c
[21/593] Compiling CNIOLLHTTP c_nio_api.c
[21/593] Compiling fiat_p256_adx_sqr.S
[23/593] Compiling fiat_curve25519_adx_square.S
[24/593] Compiling fiat_curve25519_adx_mul.S
[25/593] Compiling fiat_p256_adx_mul.S
[26/593] Compiling CNIOLinux shim.c
[27/593] Compiling CNIOLLHTTP c_nio_llhttp.c
[28/593] Write swift-version-24593BA9C3E375BF.txt
[29/593] Compiling CNIOBoringSSLShims shims.c
[31/595] Compiling guides anchor.swift
[32/595] Emitting module guides
[33/600] Compiling tls_record.cc
[34/600] Compiling tls_method.cc
[36/602] Emitting module _NIODataStructures
[37/602] Compiling _NIODataStructures Heap.swift
[37/602] Compiling tls13_client.cc
[38/602] Compiling tls13_server.cc
[40/602] Compiling _NIODataStructures _TinyArray.swift
[41/602] Compiling _NIODataStructures PriorityQueue.swift
[41/603] Compiling tls13_enc.cc
[42/618] Compiling tls13_both.cc
[43/618] Compiling t1_enc.cc
[46/659] Compiling Unidoc Unidoc.swift
[47/659] Compiling SystemPackage FilePathSyntax.swift
[48/659] Compiling SystemPackage FilePathTemp.swift
[49/665] Compiling Unidoc Unidoc.Version.swift
[50/665] Compiling SystemPackage FilePathParsing.swift
[51/665] Compiling SystemPackage FilePathString.swift
[52/665] Compiling Unidoc Unidoc.Scalar.swift
[53/665] Compiling Unidoc Unidoc.Vector.swift
[54/665] Compiling UnixTime UnixInstant.swift
[55/665] Compiling UnixTime UnixInterval.swift
[56/665] Compiling TraceableErrors TraceableError.swift
[57/665] Compiling TraceableErrors NamedError.swift
[58/665] Emitting module TraceableErrors
[59/665] Compiling Unidoc Unidoc.Package.swift
[60/666] Compiling Unidoc ClosedRange (ext).swift
[61/666] Compiling SwiftSyntax510 Empty.swift
[62/666] Emitting module SwiftSyntax510
[63/667] Compiling SystemPackage FilePathTempPosix.swift
[64/667] Compiling SystemPackage FilePathTempWindows.swift
[65/667] Emitting module SwiftSyntax600
[66/667] Compiling SwiftSyntax600 Empty.swift
[67/668] Compiling SystemPackage FileOperations.swift
[68/668] Compiling SystemPackage FilePath.swift
[69/668] Compiling SystemPackage FilePathComponentView.swift
[70/668] Compiling SystemPackage FilePathComponents.swift
[71/668] Compiling TopologicalSorting Sequence (ext).swift
[73/668] Emitting module _NIOBase64
[74/668] Compiling _NIOBase64 Base64.swift
[75/668] Emitting module TopologicalSorting
[76/669] Emitting module Unidoc
[79/669] Compiling Unidoc Unidoc.Edition.swift
[80/669] Compiling SystemPackage FileDescriptor.swift
[81/669] Compiling SystemPackage FileHelpers.swift
[82/670] Compiling SystemPackage Errno.swift
[83/670] Compiling SystemPackage ErrnoWindows.swift
[84/670] Emitting module UnixTime
[85/670] Compiling TopologicalSorting Dictionary (ext).swift
[90/691] Compiling Sources SourceReference.swift
[91/691] Compiling SemanticVersions VectorVersion.swift
[92/692] Emitting module SwiftSyntax509
[93/692] Compiling SwiftSyntax509 Empty.swift
[94/693] Compiling SemanticVersions SemanticVersion.swift
[95/693] Compiling SemanticVersions VectorVersionComponents.swift
[97/700] Compiling SemanticVersions PatchVersion.swift
[98/700] Compiling SemanticVersions SemanticVersion.Suffix.swift
[99/700] Compiling Sources SourceLocation.swift
[100/700] Compiling Sources SourcePosition.swift
[101/712] Emitting module Sources
[102/713] Emitting module SystemPackage
[103/716] Compiling S3 AWS.swift
[104/717] Compiling S3 AWS.S3.swift
[105/731] Compiling S3 AWS.S3.StorageClass.swift
[106/731] Compiling S3 AWS.S3.Bucket.swift
[107/731] Emitting module Mongo
[108/731] Compiling Mongo Mongo.swift
[110/732] Emitting module S3
[111/732] Compiling S3 AWS.AccessKey.swift
[112/732] Compiling S3 AWS.Region.swift
[113/733] Compiling Media MediaTypeError.swift
[114/733] Compiling MarkdownABI Markdown.CodeLanguageType.swift
[115/733] Compiling MarkdownABI Markdown.DiffType.swift
[119/733] Compiling Media MediaType.Charset.swift
[120/733] Compiling Media MultipartType.swift
[123/735] Compiling Media MediaType.swift
[124/735] Compiling Media MediaEncoding.swift
[125/735] Compiling MarkdownABI Markdown.Bytecode.Marker.swift
[126/735] Compiling MarkdownABI Markdown.Bytecode.swift
[127/735] Compiling MarkdownABI Markdown.Bytecode.Context.swift
[128/735] Compiling MarkdownABI Markdown.Bytecode.Emission.swift
[129/735] Compiling MarkdownABI Markdown.AttributeEncoder.swift
[130/735] Compiling MarkdownABI Markdown.BinaryDecoder.swift
[131/735] Compiling MarkdownABI Markdown.BinaryEncoder.swift
[132/735] Compiling MarkdownABI Markdown.Bytecode.Attribute.swift
[133/735] Compiling Media MediaSubtype.swift
[134/735] Compiling MarkdownABI Markdown.CodeHighlighter.swift
[135/735] Compiling MarkdownABI Markdown.CodeLanguage.swift
[137/735] Compiling MarkdownABI Markdown.Instruction.swift
[138/735] Compiling MarkdownABI Markdown.swift
[139/735] Compiling SystemPackage Mocking.swift
[140/735] Compiling SystemPackage RawBuffer.swift
[141/735] Compiling SystemPackage Syscalls.swift
[142/735] Compiling SystemPackage WindowsSyscallAdapters.swift
[143/735] Compiling SystemPackage Backcompat.swift
[144/735] Compiling SystemPackage CInterop.swift
[145/735] Compiling SystemPackage Constants.swift
[146/735] Compiling SystemPackage Exports.swift
[147/735] Compiling SystemPackage MachPort.swift
[148/735] Compiling SystemPackage PlatformString.swift
[149/735] Compiling SystemPackage SystemString.swift
[150/735] Emitting module Media
[151/736] Emitting module SemanticVersions
[156/737] Compiling MessageAuthentication MessageAuthenticationHash.swift
[157/740] Compiling MessageAuthentication MessageAuthenticationKey.swift
[159/745] Emitting module MessageAuthentication
[160/786] Compiling SwiftSyntax BumpPtrAllocator.swift
[161/786] Compiling SwiftSyntax CommonAncestor.swift
[162/786] Compiling SwiftSyntax Convenience.swift
[163/786] Compiling SwiftSyntax CustomTraits.swift
[164/806] Compiling SwiftSyntax SyntaxChildren.swift
[165/806] Compiling SwiftSyntax SyntaxCollection.swift
[166/806] Compiling SwiftSyntax AbsolutePosition.swift
[167/806] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[168/806] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[169/806] Compiling SwiftSyntax Assert.swift
[170/806] Compiling SwiftSyntax Identifier.swift
[171/806] Compiling SwiftSyntax SourcePresence.swift
[172/806] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[173/806] Compiling SwiftSyntax Syntax.swift
[180/839] Emitting module LexicalPaths
[181/839] Compiling LexicalPaths LexicalComponents.swift
[182/839] Compiling InternalCollectionsUtilities _SortedCollection.swift
[183/839] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[184/843] Compiling LexicalPaths LexicalContinuation.swift
[185/843] Compiling LexicalPaths UnqualifiedPath.swift
[186/844] Emitting module MarkdownABI
[187/845] Compiling JSONAST JSON.TypecastError.swift
[188/845] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[189/845] Compiling InternalCollectionsUtilities Specialize.swift
[190/846] Compiling JSONAST JSON.Object.swift
[191/846] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[192/846] Compiling InternalCollectionsUtilities Integer rank.swift
[193/846] Compiling InternalCollectionsUtilities Debugging.swift
[194/846] Compiling InternalCollectionsUtilities Descriptions.swift
[195/846] Compiling UnidocAssets exports.swift
[196/846] Compiling SwiftSyntax SyntaxNodeFactory.swift
[197/846] Compiling SwiftSyntax SyntaxNodeStructure.swift
[198/846] Compiling SwiftSyntax SyntaxProtocol.swift
[200/847] Compiling UnidocAssets Unidoc.Asset.Versioning.swift
[201/847] Emitting module JSONAST
[203/847] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[204/847] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[207/847] Compiling JSONAST JSON.swift
[208/847] Emitting module UnidocAssets
[209/847] Compiling UnidocAssets Unidoc.Asset.swift
[210/848] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[211/848] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+SE-0370.swift
[212/848] Compiling JSONAST JSON.Number.swift
[214/849] Compiling InlineDictionary InlineDictionary.swift
[215/849] Emitting module InlineDictionary
[218/850] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[219/850] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[224/880] Compiling Snippets Markdown.SnippetSlice.swift
[225/880] Compiling Snippets exports.swift
[226/880] Emitting module Snippets
[227/880] Compiling Snippets Markdown.SnippetFragment.swift
[228/881] Emitting module InternalCollectionsUtilities
[229/881] Compiling MarkdownDisplay exports.swift
[230/881] Compiling SystemIO SystemProcess.Stream.swift
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:14:12: error: cannot find type 'pid_t' in scope
 12 |     let invocation:[String]
 13 |     public
 14 |     let id:pid_t
    |            `- error: cannot find type 'pid_t' in scope
 15 |
 16 |     private
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:6:8: error: unsupported platform
  4 | import Darwin
  5 | #else
  6 | #error("unsupported platform")
    |        `- error: unsupported platform
  7 | #endif
  8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:17:34: error: cannot find type 'pid_t' in scope
 15 |
 16 |     private
 17 |     init(invocation:[String], id:pid_t)
    |                                  `- error: cannot find type 'pid_t' in scope
 18 |     {
 19 |         self.invocation = invocation
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:20:14: error: property 'id' requires that 'SystemProcess' be a class type
 18 |     {
 19 |         self.invocation = invocation
 20 |         self.id = id
    |              `- error: property 'id' requires that 'SystemProcess' be a class type
 21 |     }
 22 | }
Swift.Identifiable:2:11: note: where 'Self' = 'SystemProcess'
1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
2 | extension Identifiable where Self : AnyObject {
  |           `- note: where 'Self' = 'SystemProcess'
3 |     public var id: ObjectIdentifier { get }
4 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:108:13: error: cannot find 'posix_spawn_file_actions_init' in scope
106 |         do
107 |         {
108 |             posix_spawn_file_actions_init(&actions)
    |             `- error: cannot find 'posix_spawn_file_actions_init' in scope
109 |         }
110 |         defer
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:108:44: error: cannot find 'actions' in scope
106 |         do
107 |         {
108 |             posix_spawn_file_actions_init(&actions)
    |                                            `- error: cannot find 'actions' in scope
109 |         }
110 |         defer
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:112:13: error: cannot find 'posix_spawn_file_actions_destroy' in scope
110 |         defer
111 |         {
112 |             posix_spawn_file_actions_destroy(&actions)
    |             `- error: cannot find 'posix_spawn_file_actions_destroy' in scope
113 |         }
114 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:112:47: error: cannot find 'actions' in scope
110 |         defer
111 |         {
112 |             posix_spawn_file_actions_destroy(&actions)
    |                                               `- error: cannot find 'actions' in scope
113 |         }
114 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:117:13: error: cannot find 'posix_spawn_file_actions_adddup2' in scope
115 |         if  let stdout:FileDescriptor
116 |         {
117 |             posix_spawn_file_actions_adddup2(&actions, stdout.rawValue, 1)
    |             `- error: cannot find 'posix_spawn_file_actions_adddup2' in scope
118 |         }
119 |         if  let stderr:FileDescriptor
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:117:47: error: cannot find 'actions' in scope
115 |         if  let stdout:FileDescriptor
116 |         {
117 |             posix_spawn_file_actions_adddup2(&actions, stdout.rawValue, 1)
    |                                               `- error: cannot find 'actions' in scope
118 |         }
119 |         if  let stderr:FileDescriptor
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:121:13: error: cannot find 'posix_spawn_file_actions_adddup2' in scope
119 |         if  let stderr:FileDescriptor
120 |         {
121 |             posix_spawn_file_actions_adddup2(&actions, stderr.rawValue, 2)
    |             `- error: cannot find 'posix_spawn_file_actions_adddup2' in scope
122 |         }
123 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:121:47: error: cannot find 'actions' in scope
119 |         if  let stderr:FileDescriptor
120 |         {
121 |             posix_spawn_file_actions_adddup2(&actions, stderr.rawValue, 2)
    |                                               `- error: cannot find 'actions' in scope
122 |         }
123 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:126:13: error: cannot find 'posix_spawn_file_actions_adddup2' in scope
124 |         for stream:SystemProcess.Stream in streams
125 |         {
126 |             posix_spawn_file_actions_adddup2(&actions, stream.parent.rawValue, stream.child)
    |             `- error: cannot find 'posix_spawn_file_actions_adddup2' in scope
127 |         }
128 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:126:47: error: cannot find 'actions' in scope
124 |         for stream:SystemProcess.Stream in streams
125 |         {
126 |             posix_spawn_file_actions_adddup2(&actions, stream.parent.rawValue, stream.child)
    |                                               `- error: cannot find 'actions' in scope
127 |         }
128 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:129:21: error: cannot find type 'pid_t' in scope
127 |         }
128 |
129 |         var process:pid_t = 0
    |                     `- error: cannot find type 'pid_t' in scope
130 |         let status:Int32 = environment.withUnsafePointers
131 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:134:17: error: cannot find 'posix_spawnp' in scope
132 |             if  let command:String
133 |             {
134 |                 posix_spawnp(&process, command, &actions, nil, argv, $0)
    |                 `- error: cannot find 'posix_spawnp' in scope
135 |             }
136 |             else
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:134:50: error: cannot find 'actions' in scope
132 |             if  let command:String
133 |             {
134 |                 posix_spawnp(&process, command, &actions, nil, argv, $0)
    |                                                  `- error: cannot find 'actions' in scope
135 |             }
136 |             else
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:138:17: error: cannot find 'posix_spawn' in scope
136 |             else
137 |             {
138 |                 posix_spawn(&process, invocation[0], &actions, nil, argv, $0)
    |                 `- error: cannot find 'posix_spawn' in scope
139 |             }
140 |         }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:138:55: error: cannot find 'actions' in scope
136 |             else
137 |             {
138 |                 posix_spawn(&process, invocation[0], &actions, nil, argv, $0)
    |                                                       `- error: cannot find 'actions' in scope
139 |             }
140 |         }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:134:59: error: 'nil' requires a contextual type
132 |             if  let command:String
133 |             {
134 |                 posix_spawnp(&process, command, &actions, nil, argv, $0)
    |                                                           `- error: 'nil' requires a contextual type
135 |             }
136 |             else
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:146:47: error: extra argument 'id' in call
144 |         }
145 |
146 |         self.init(invocation: invocation, id: process)
    |                                               `- error: extra argument 'id' in call
147 |     }
148 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:146:19: error: missing argument for parameter 'command' in call
 38 | {
 39 |     public
 40 |     init(command:String?,
    |     `- note: 'init(command:_:stdout:stderr:duping:echo:with:)' declared here
 41 |         _ arguments:String?...,
 42 |         stdout:FileDescriptor? = nil,
    :
144 |         }
145 |
146 |         self.init(invocation: invocation, id: process)
    |                   `- error: missing argument for parameter 'command' in call
147 |     }
148 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:146:31: error: cannot convert value of type '[String]' to expected argument type 'String'
144 |         }
145 |
146 |         self.init(invocation: invocation, id: process)
    |                               `- error: cannot convert value of type '[String]' to expected argument type 'String'
147 |     }
148 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:154:16: error: cannot find 'waitpid' in scope
152 |         var status:Int32 = 0
153 |
154 |         switch waitpid(self.id, &status, 0)
    |                `- error: cannot find 'waitpid' in scope
155 |         {
156 |         case self.id:       break
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:154:29: error: property 'id' requires that 'SystemProcess' be a class type
152 |         var status:Int32 = 0
153 |
154 |         switch waitpid(self.id, &status, 0)
    |                             `- error: property 'id' requires that 'SystemProcess' be a class type
155 |         {
156 |         case self.id:       break
Swift.Identifiable:2:11: note: where 'Self' = 'SystemProcess'
1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
2 | extension Identifiable where Self : AnyObject {
  |           `- note: where 'Self' = 'SystemProcess'
3 |     public var id: ObjectIdentifier { get }
4 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:156:19: error: property 'id' requires that 'SystemProcess' be a class type
154 |         switch waitpid(self.id, &status, 0)
155 |         {
156 |         case self.id:       break
    |                   `- error: property 'id' requires that 'SystemProcess' be a class type
157 |         case let status:    return .failure(.wait(status, self.invocation))
158 |         }
Swift.Identifiable:2:11: note: where 'Self' = 'SystemProcess'
1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
2 | extension Identifiable where Self : AnyObject {
  |           `- note: where 'Self' = 'SystemProcess'
3 |     public var id: ObjectIdentifier { get }
4 | }
[231/881] Compiling SystemIO SystemProcess.swift
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:14:12: error: cannot find type 'pid_t' in scope
 12 |     let invocation:[String]
 13 |     public
 14 |     let id:pid_t
    |            `- error: cannot find type 'pid_t' in scope
 15 |
 16 |     private
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:6:8: error: unsupported platform
  4 | import Darwin
  5 | #else
  6 | #error("unsupported platform")
    |        `- error: unsupported platform
  7 | #endif
  8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:17:34: error: cannot find type 'pid_t' in scope
 15 |
 16 |     private
 17 |     init(invocation:[String], id:pid_t)
    |                                  `- error: cannot find type 'pid_t' in scope
 18 |     {
 19 |         self.invocation = invocation
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:20:14: error: property 'id' requires that 'SystemProcess' be a class type
 18 |     {
 19 |         self.invocation = invocation
 20 |         self.id = id
    |              `- error: property 'id' requires that 'SystemProcess' be a class type
 21 |     }
 22 | }
Swift.Identifiable:2:11: note: where 'Self' = 'SystemProcess'
1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
2 | extension Identifiable where Self : AnyObject {
  |           `- note: where 'Self' = 'SystemProcess'
3 |     public var id: ObjectIdentifier { get }
4 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:108:13: error: cannot find 'posix_spawn_file_actions_init' in scope
106 |         do
107 |         {
108 |             posix_spawn_file_actions_init(&actions)
    |             `- error: cannot find 'posix_spawn_file_actions_init' in scope
109 |         }
110 |         defer
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:108:44: error: cannot find 'actions' in scope
106 |         do
107 |         {
108 |             posix_spawn_file_actions_init(&actions)
    |                                            `- error: cannot find 'actions' in scope
109 |         }
110 |         defer
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:112:13: error: cannot find 'posix_spawn_file_actions_destroy' in scope
110 |         defer
111 |         {
112 |             posix_spawn_file_actions_destroy(&actions)
    |             `- error: cannot find 'posix_spawn_file_actions_destroy' in scope
113 |         }
114 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:112:47: error: cannot find 'actions' in scope
110 |         defer
111 |         {
112 |             posix_spawn_file_actions_destroy(&actions)
    |                                               `- error: cannot find 'actions' in scope
113 |         }
114 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:117:13: error: cannot find 'posix_spawn_file_actions_adddup2' in scope
115 |         if  let stdout:FileDescriptor
116 |         {
117 |             posix_spawn_file_actions_adddup2(&actions, stdout.rawValue, 1)
    |             `- error: cannot find 'posix_spawn_file_actions_adddup2' in scope
118 |         }
119 |         if  let stderr:FileDescriptor
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:117:47: error: cannot find 'actions' in scope
115 |         if  let stdout:FileDescriptor
116 |         {
117 |             posix_spawn_file_actions_adddup2(&actions, stdout.rawValue, 1)
    |                                               `- error: cannot find 'actions' in scope
118 |         }
119 |         if  let stderr:FileDescriptor
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:121:13: error: cannot find 'posix_spawn_file_actions_adddup2' in scope
119 |         if  let stderr:FileDescriptor
120 |         {
121 |             posix_spawn_file_actions_adddup2(&actions, stderr.rawValue, 2)
    |             `- error: cannot find 'posix_spawn_file_actions_adddup2' in scope
122 |         }
123 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:121:47: error: cannot find 'actions' in scope
119 |         if  let stderr:FileDescriptor
120 |         {
121 |             posix_spawn_file_actions_adddup2(&actions, stderr.rawValue, 2)
    |                                               `- error: cannot find 'actions' in scope
122 |         }
123 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:126:13: error: cannot find 'posix_spawn_file_actions_adddup2' in scope
124 |         for stream:SystemProcess.Stream in streams
125 |         {
126 |             posix_spawn_file_actions_adddup2(&actions, stream.parent.rawValue, stream.child)
    |             `- error: cannot find 'posix_spawn_file_actions_adddup2' in scope
127 |         }
128 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:126:47: error: cannot find 'actions' in scope
124 |         for stream:SystemProcess.Stream in streams
125 |         {
126 |             posix_spawn_file_actions_adddup2(&actions, stream.parent.rawValue, stream.child)
    |                                               `- error: cannot find 'actions' in scope
127 |         }
128 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:129:21: error: cannot find type 'pid_t' in scope
127 |         }
128 |
129 |         var process:pid_t = 0
    |                     `- error: cannot find type 'pid_t' in scope
130 |         let status:Int32 = environment.withUnsafePointers
131 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:134:17: error: cannot find 'posix_spawnp' in scope
132 |             if  let command:String
133 |             {
134 |                 posix_spawnp(&process, command, &actions, nil, argv, $0)
    |                 `- error: cannot find 'posix_spawnp' in scope
135 |             }
136 |             else
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:134:50: error: cannot find 'actions' in scope
132 |             if  let command:String
133 |             {
134 |                 posix_spawnp(&process, command, &actions, nil, argv, $0)
    |                                                  `- error: cannot find 'actions' in scope
135 |             }
136 |             else
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:138:17: error: cannot find 'posix_spawn' in scope
136 |             else
137 |             {
138 |                 posix_spawn(&process, invocation[0], &actions, nil, argv, $0)
    |                 `- error: cannot find 'posix_spawn' in scope
139 |             }
140 |         }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:138:55: error: cannot find 'actions' in scope
136 |             else
137 |             {
138 |                 posix_spawn(&process, invocation[0], &actions, nil, argv, $0)
    |                                                       `- error: cannot find 'actions' in scope
139 |             }
140 |         }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:134:59: error: 'nil' requires a contextual type
132 |             if  let command:String
133 |             {
134 |                 posix_spawnp(&process, command, &actions, nil, argv, $0)
    |                                                           `- error: 'nil' requires a contextual type
135 |             }
136 |             else
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:146:47: error: extra argument 'id' in call
144 |         }
145 |
146 |         self.init(invocation: invocation, id: process)
    |                                               `- error: extra argument 'id' in call
147 |     }
148 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:146:19: error: missing argument for parameter 'command' in call
 38 | {
 39 |     public
 40 |     init(command:String?,
    |     `- note: 'init(command:_:stdout:stderr:duping:echo:with:)' declared here
 41 |         _ arguments:String?...,
 42 |         stdout:FileDescriptor? = nil,
    :
144 |         }
145 |
146 |         self.init(invocation: invocation, id: process)
    |                   `- error: missing argument for parameter 'command' in call
147 |     }
148 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:146:31: error: cannot convert value of type '[String]' to expected argument type 'String'
144 |         }
145 |
146 |         self.init(invocation: invocation, id: process)
    |                               `- error: cannot convert value of type '[String]' to expected argument type 'String'
147 |     }
148 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:154:16: error: cannot find 'waitpid' in scope
152 |         var status:Int32 = 0
153 |
154 |         switch waitpid(self.id, &status, 0)
    |                `- error: cannot find 'waitpid' in scope
155 |         {
156 |         case self.id:       break
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:154:29: error: property 'id' requires that 'SystemProcess' be a class type
152 |         var status:Int32 = 0
153 |
154 |         switch waitpid(self.id, &status, 0)
    |                             `- error: property 'id' requires that 'SystemProcess' be a class type
155 |         {
156 |         case self.id:       break
Swift.Identifiable:2:11: note: where 'Self' = 'SystemProcess'
1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
2 | extension Identifiable where Self : AnyObject {
  |           `- note: where 'Self' = 'SystemProcess'
3 |     public var id: ObjectIdentifier { get }
4 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:156:19: error: property 'id' requires that 'SystemProcess' be a class type
154 |         switch waitpid(self.id, &status, 0)
155 |         {
156 |         case self.id:       break
    |                   `- error: property 'id' requires that 'SystemProcess' be a class type
157 |         case let status:    return .failure(.wait(status, self.invocation))
158 |         }
Swift.Identifiable:2:11: note: where 'Self' = 'SystemProcess'
1 | @available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
2 | extension Identifiable where Self : AnyObject {
  |           `- note: where 'Self' = 'SystemProcess'
3 |     public var id: ObjectIdentifier { get }
4 | }
[232/911] Compiling JSONEncoding Substring (ext).swift
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.Environment.swift:6:8: error: unsupported platform
 4 | import Darwin
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:14:12: error: cannot find type 'pid_t' in scope
 12 |     let invocation:[String]
 13 |     public
 14 |     let id:pid_t
    |            `- error: cannot find type 'pid_t' in scope
 15 |
 16 |     private
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.Environment.swift:53:49: error: cannot find 'environ' in scope
51 |             else
52 |             {
53 |                 return try yield(self.inherit ? environ : nil)
   |                                                 `- error: cannot find 'environ' in scope
54 |             }
55 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.Environment.swift:57:29: error: cannot find 'environ' in scope
55 |
56 |             var inherited:Int = 0
57 |             while case _? = environ[inherited]
   |                             `- error: cannot find 'environ' in scope
58 |             {
59 |                 inherited += 1
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.Environment.swift:67:53: error: cannot find 'environ' in scope
65 |                 for i:Int in 0 ..< inherited
66 |                 {
67 |                     $0.initializeElement(at: i, to: environ[i])
   |                                                     `- error: cannot find 'environ' in scope
68 |                 }
69 |                 var i:Int = inherited
[233/911] Compiling JSONEncoding UInt (ext).swift
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.Environment.swift:6:8: error: unsupported platform
 4 | import Darwin
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:14:12: error: cannot find type 'pid_t' in scope
 12 |     let invocation:[String]
 13 |     public
 14 |     let id:pid_t
    |            `- error: cannot find type 'pid_t' in scope
 15 |
 16 |     private
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.Environment.swift:53:49: error: cannot find 'environ' in scope
51 |             else
52 |             {
53 |                 return try yield(self.inherit ? environ : nil)
   |                                                 `- error: cannot find 'environ' in scope
54 |             }
55 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.Environment.swift:57:29: error: cannot find 'environ' in scope
55 |
56 |             var inherited:Int = 0
57 |             while case _? = environ[inherited]
   |                             `- error: cannot find 'environ' in scope
58 |             {
59 |                 inherited += 1
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.Environment.swift:67:53: error: cannot find 'environ' in scope
65 |                 for i:Int in 0 ..< inherited
66 |                 {
67 |                     $0.initializeElement(at: i, to: environ[i])
   |                                                     `- error: cannot find 'environ' in scope
68 |                 }
69 |                 var i:Int = inherited
[234/911] Emitting module MarkdownDisplay
[235/911] Compiling MarkdownDisplay Markdown.ProseReference.swift
[237/912] Compiling JSONEncoding Array (ext).swift
[238/912] Compiling JSONEncoding ArraySlice (ext).swift
[239/912] Compiling JSONEncoding Bool (ext).swift
[240/912] Compiling JSONEncoding Character (ext).swift
[241/912] Compiling JSONEncoding Int (ext).swift
[242/912] Compiling JSONEncoding Int16 (ext).swift
[243/912] Compiling JSONEncoding Int32 (ext).swift
[244/912] Compiling JSONEncoding Int64 (ext).swift
[245/912] Compiling JSONEncoding Int8 (ext).swift
[246/920] Emitting module InlineArray
[247/920] Compiling InlineArray InlineArray.swift
[248/921] Compiling JSONEncoding JSON.ArrayEncoder.Index.swift
[249/921] Compiling JSONEncoding JSON.ArrayEncoder.swift
[250/921] Compiling JSONEncoding String (ext).swift
[256/921] Compiling JSONEncoding StaticString (ext).swift
[263/925] Compiling JSONEncoding JSONEncodable.swift
[264/925] Compiling JSONEncoding JSONObjectEncodable.swift
[265/925] Compiling JSONEncoding JSONStringEncodable.swift
[276/931] Compiling JSONEncoding UInt16 (ext).swift
[277/931] Compiling JSONEncoding UInt32 (ext).swift
[278/931] Compiling JSONEncoding UInt64 (ext).swift
[279/931] Compiling JSONEncoding JSON.InlineEncoder.swift
[280/931] Compiling JSONEncoding JSON.Literal (ext).swift
[281/931] Compiling JSONEncoding JSON.ObjectEncoder.swift
[282/931] Compiling JSONEncoding JSON (ext).swift
[283/931] Compiling JSONEncoding UInt8 (ext).swift
[284/931] Compiling JSONEncoding Unicode.Scalar (ext).swift
[287/931] Emitting module JSONEncoding
[288/931] Compiling InlineBuffer InlineBuffer.swift
[289/931] Emitting module InlineBuffer
[290/932] Compiling JSONEncoding Never (ext).swift
[291/932] Compiling JSONEncoding Optional (ext).swift
[292/932] Compiling JSONEncoding exports.swift
[293/959] Compiling IP IP.swift
[296/991] Compiling IP IP.Block.swift
[297/991] Compiling IP IP.Address.swift
[298/991] Compiling DOM HTML.UnsafeElement.swift
[299/991] Compiling DOM HTML.Attribute.Factory (mxt).swift
[300/991] Compiling DOM HTML.AttributeEncoder.CustomData.swift
[301/994] Compiling DOM DOM.ContentEncoder.swift
[302/994] Compiling DOM DOM.Property.swift
[303/994] Compiling DOM DOM.UTF8.swift
[304/994] Compiling DOM DOM.Attribute.swift
[305/994] Compiling DOM HTML.VoidElement.swift
[306/994] Compiling DOM HTML.swift
[307/1009] Compiling DOM String (ext).swift
[308/1009] Compiling DOM Substring (ext).swift
[309/1009] Compiling DOM Unicode.Scalar (ext).swift
[310/1009] Compiling FNV1 FNV24.swift
[311/1009] Compiling FNV1 FNV32.swift
[312/1009] Compiling FNV1 FNV24.Extended.swift
[313/1009] Compiling IP IP.V4.swift
[314/1009] Compiling IP IP.V6.swift
[315/1009] Emitting module FNV1
[316/1065] Emitting module IP
[317/1066] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[318/1066] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[319/1066] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[320/1066] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[321/1066] Compiling OrderedCollections OrderedDictionary+Elements.swift
[322/1066] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[323/1066] Compiling OrderedCollections OrderedSet+Descriptions.swift
[324/1066] Compiling OrderedCollections OrderedSet+Diffing.swift
[325/1066] Compiling OrderedCollections OrderedSet+Equatable.swift
[326/1066] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[327/1070] Compiling OrderedCollections _Hashtable+Header.swift
[328/1070] Compiling OrderedCollections OrderedDictionary.swift
[329/1070] Compiling OrderedCollections OrderedSet+Codable.swift
[330/1070] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[332/1070] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[333/1070] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[335/1072] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[336/1072] Compiling OrderedCollections OrderedDictionary+Values.swift
[337/1072] Compiling OrderedCollections OrderedDictionary+Codable.swift
[339/1072] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[344/1072] Compiling DOM XML.Sitemap.swift
[345/1072] Compiling DOM XML.swift
[346/1072] Compiling DOM XMLNS.swift
[347/1072] Compiling DOM StreamingEncoder.swift
[348/1108] Compiling SHA1 exports.swift
[349/1108] Compiling Symbols Phylum.Decl.Orientation.swift
[350/1108] Compiling Symbols Phylum.Decl.Route.swift
[351/1108] Compiling Symbols Phylum.Decl.swift
[352/1108] Compiling Symbols Phylum.DeclFlags.swift
[353/1108] Compiling Symbols Phylum.Language.swift
[354/1108] Compiling Symbols Symbol.PackageScope.swift
[355/1108] Compiling Symbols Symbol.Product.swift
[356/1108] Compiling Symbols Symbol.Triple.Architecture.swift
[357/1108] Compiling Symbols Symbol.Triple.OS.swift
[358/1108] Compiling Symbols Symbol.Decl.Vector.swift
[359/1108] Compiling Symbols Symbol.Decl.swift
[360/1108] Compiling Symbols Symbol.File.RebaseError.swift
[361/1108] Compiling Symbols Symbol.File.SchemeError.swift
[362/1108] Compiling Symbols Symbol.File.swift
[363/1108] Compiling Symbols Phylum.SwiftFlags.swift
[364/1108] Compiling Symbols Symbol.FileBase.swift
[365/1108] Compiling Symbols Symbol.Module.swift
[366/1108] Compiling Symbols Symbol.Package.swift
[367/1108] Compiling Symbols Symbol.PackageAtRef.swift
[370/1108] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[371/1108] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[372/1108] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[373/1108] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[374/1108] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[375/1108] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[376/1108] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[377/1108] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[378/1108] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[379/1108] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[380/1108] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[381/1108] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[382/1108] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[383/1108] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[389/1115] Compiling Symbols FNV24 (ext).swift
[390/1115] Compiling Symbols FNV24.Extended (ext).swift
[391/1115] Compiling Symbols Symbol.Article.swift
[392/1115] Compiling Symbols Symbol.Block.swift
[402/1115] Compiling SHA1 SHA1.swift
[403/1115] Emitting module SHA1
[412/1116] Compiling Symbols Phylum.Decl.Kink.swift
[413/1116] Compiling Symbols Phylum.Decl.Kinks.swift
[417/1116] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[418/1116] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[419/1116] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[420/1116] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[421/1116] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[426/1120] Compiling Symbols Phylum.Decl.Objectivity.swift
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:12:8: error: unsupported platform
 10 |
 11 | #else
 12 | #error("unsupported platform")
    |        `- error: unsupported platform
 13 | #endif
 14 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:40:50: error: cannot find 'getcwd' in scope
 38 |     {
 39 |         guard
 40 |         let buffer:UnsafeMutablePointer<CChar> = getcwd(nil, 0)
    |                                                  `- error: cannot find 'getcwd' in scope
 41 |         else
 42 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:40:57: error: 'nil' requires a contextual type
 38 |     {
 39 |         guard
 40 |         let buffer:UnsafeMutablePointer<CChar> = getcwd(nil, 0)
    |                                                         `- error: 'nil' requires a contextual type
 41 |         else
 42 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:47:13: error: cannot find 'free' in scope
 45 |         defer
 46 |         {
 47 |             free(buffer)
    |             `- error: cannot find 'free' in scope
 48 |         }
 49 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:10:8: error: unsupported platform
  8 | import Glibc
  9 | #else
 10 | #error("unsupported platform")
    |        `- error: unsupported platform
 11 | #endif
 12 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:20:30: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 18 |     {
 19 |         case unopened(FilePath)
 20 |         case opened(FilePath.DirectoryPointer?)
    |                              `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 21 |     }
 22 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:26:36: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 24 | {
 25 |     private mutating
 26 |     func open() throws -> FilePath.DirectoryPointer?
    |                                    `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 27 |     {
 28 |         switch self
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:31:34: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 29 |         {
 30 |         case .unopened(let path):
 31 |             let pointer:FilePath.DirectoryPointer? = try path.withPlatformString
    |                                  `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 32 |             {
 33 |                 if  let pointer:FilePath.DirectoryPointer = opendir($0)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:56:35: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 54 |     func next() throws -> FilePath.Component?
 55 |     {
 56 |         guard let stream:FilePath.DirectoryPointer = try self.open()
    |                                   `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 57 |         else
 58 |         {
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:56:63: error: type of expression is ambiguous without a type annotation
 54 |     func next() throws -> FilePath.Component?
 55 |     {
 56 |         guard let stream:FilePath.DirectoryPointer = try self.open()
    |                                                               `- error: type of expression is ambiguous without a type annotation
 57 |         else
 58 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:62:45: error: cannot find type 'dirent' in scope
 60 |         }
 61 |
 62 |         guard let offset:Int = MemoryLayout<dirent>.offset(of: \.d_name)
    |                                             `- error: cannot find type 'dirent' in scope
 63 |         else
 64 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:62:64: error: cannot infer key path type from context; consider explicitly specifying a root type
 60 |         }
 61 |
 62 |         guard let offset:Int = MemoryLayout<dirent>.offset(of: \.d_name)
    |                                                                `- error: cannot infer key path type from context; consider explicitly specifying a root type
 63 |         else
 64 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:46: error: cannot find type 'dirent' in scope
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                              `- error: cannot find type 'dirent' in scope
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:56: error: cannot find 'readdir' in scope
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                                        `- error: cannot find 'readdir' in scope
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:56: error: type of expression is ambiguous without a type annotation
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                                        `- error: type of expression is ambiguous without a type annotation
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:92:9: error: cannot find 'closedir' in scope
 90 |         }
 91 |
 92 |         closedir(stream)
    |         `- error: cannot find 'closedir' in scope
 93 |         self = .opened(nil)
 94 |         return nil
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:93:24: error: 'nil' requires a contextual type
 91 |
 92 |         closedir(stream)
 93 |         self = .opened(nil)
    |                        `- error: 'nil' requires a contextual type
 94 |         return nil
 95 |     }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:99:39: error: expression pattern of type 'Errno' cannot match values of type 'FilePath.DirectoryIterator.Stream'
 97 |     func close()
 98 |     {
 99 |         guard case .opened(let stream?) = self
    |                                       `- error: expression pattern of type 'Errno' cannot match values of type 'FilePath.DirectoryIterator.Stream'
100 |         else
101 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:99:21: error: type 'Errno' has no member 'opened'
 97 |     func close()
 98 |     {
 99 |         guard case .opened(let stream?) = self
    |                     `- error: type 'Errno' has no member 'opened'
100 |         else
101 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:105:9: error: cannot find 'closedir' in scope
103 |         }
104 |
105 |         closedir(stream)
    |         `- error: cannot find 'closedir' in scope
106 |         self = .opened(nil)
107 |     }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:106:24: error: 'nil' requires a contextual type
104 |
105 |         closedir(stream)
106 |         self = .opened(nil)
    |                        `- error: 'nil' requires a contextual type
107 |     }
108 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:12:8: error: unsupported platform
 10 |
 11 | #else
 12 | #error("unsupported platform")
    |        `- error: unsupported platform
 13 | #endif
 14 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:40:50: error: cannot find 'getcwd' in scope
 38 |     {
 39 |         guard
 40 |         let buffer:UnsafeMutablePointer<CChar> = getcwd(nil, 0)
    |                                                  `- error: cannot find 'getcwd' in scope
 41 |         else
 42 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:40:57: error: 'nil' requires a contextual type
 38 |     {
 39 |         guard
 40 |         let buffer:UnsafeMutablePointer<CChar> = getcwd(nil, 0)
    |                                                         `- error: 'nil' requires a contextual type
 41 |         else
 42 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:47:13: error: cannot find 'free' in scope
 45 |         defer
 46 |         {
 47 |             free(buffer)
    |             `- error: cannot find 'free' in scope
 48 |         }
 49 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:10:8: error: unsupported platform
  8 | import Glibc
  9 | #else
 10 | #error("unsupported platform")
    |        `- error: unsupported platform
 11 | #endif
 12 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:20:30: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 18 |     {
 19 |         case unopened(FilePath)
 20 |         case opened(FilePath.DirectoryPointer?)
    |                              `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 21 |     }
 22 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:26:36: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 24 | {
 25 |     private mutating
 26 |     func open() throws -> FilePath.DirectoryPointer?
    |                                    `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 27 |     {
 28 |         switch self
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:31:34: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 29 |         {
 30 |         case .unopened(let path):
 31 |             let pointer:FilePath.DirectoryPointer? = try path.withPlatformString
    |                                  `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 32 |             {
 33 |                 if  let pointer:FilePath.DirectoryPointer = opendir($0)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:56:35: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 54 |     func next() throws -> FilePath.Component?
 55 |     {
 56 |         guard let stream:FilePath.DirectoryPointer = try self.open()
    |                                   `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 57 |         else
 58 |         {
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:56:63: error: type of expression is ambiguous without a type annotation
 54 |     func next() throws -> FilePath.Component?
 55 |     {
 56 |         guard let stream:FilePath.DirectoryPointer = try self.open()
    |                                                               `- error: type of expression is ambiguous without a type annotation
 57 |         else
 58 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:62:45: error: cannot find type 'dirent' in scope
 60 |         }
 61 |
 62 |         guard let offset:Int = MemoryLayout<dirent>.offset(of: \.d_name)
    |                                             `- error: cannot find type 'dirent' in scope
 63 |         else
 64 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:62:64: error: cannot infer key path type from context; consider explicitly specifying a root type
 60 |         }
 61 |
 62 |         guard let offset:Int = MemoryLayout<dirent>.offset(of: \.d_name)
    |                                                                `- error: cannot infer key path type from context; consider explicitly specifying a root type
 63 |         else
 64 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:46: error: cannot find type 'dirent' in scope
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                              `- error: cannot find type 'dirent' in scope
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:56: error: cannot find 'readdir' in scope
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                                        `- error: cannot find 'readdir' in scope
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:56: error: type of expression is ambiguous without a type annotation
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                                        `- error: type of expression is ambiguous without a type annotation
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:92:9: error: cannot find 'closedir' in scope
 90 |         }
 91 |
 92 |         closedir(stream)
    |         `- error: cannot find 'closedir' in scope
 93 |         self = .opened(nil)
 94 |         return nil
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:93:24: error: 'nil' requires a contextual type
 91 |
 92 |         closedir(stream)
 93 |         self = .opened(nil)
    |                        `- error: 'nil' requires a contextual type
 94 |         return nil
 95 |     }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:99:39: error: expression pattern of type 'Errno' cannot match values of type 'FilePath.DirectoryIterator.Stream'
 97 |     func close()
 98 |     {
 99 |         guard case .opened(let stream?) = self
    |                                       `- error: expression pattern of type 'Errno' cannot match values of type 'FilePath.DirectoryIterator.Stream'
100 |         else
101 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:99:21: error: type 'Errno' has no member 'opened'
 97 |     func close()
 98 |     {
 99 |         guard case .opened(let stream?) = self
    |                     `- error: type 'Errno' has no member 'opened'
100 |         else
101 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:105:9: error: cannot find 'closedir' in scope
103 |         }
104 |
105 |         closedir(stream)
    |         `- error: cannot find 'closedir' in scope
106 |         self = .opened(nil)
107 |     }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:106:24: error: 'nil' requires a contextual type
104 |
105 |         closedir(stream)
106 |         self = .opened(nil)
    |                        `- error: 'nil' requires a contextual type
107 |     }
108 | }
[431/1120] Compiling Symbols Phylum.Decl.Macro.swift
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:12:8: error: unsupported platform
 10 |
 11 | #else
 12 | #error("unsupported platform")
    |        `- error: unsupported platform
 13 | #endif
 14 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:40:50: error: cannot find 'getcwd' in scope
 38 |     {
 39 |         guard
 40 |         let buffer:UnsafeMutablePointer<CChar> = getcwd(nil, 0)
    |                                                  `- error: cannot find 'getcwd' in scope
 41 |         else
 42 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:40:57: error: 'nil' requires a contextual type
 38 |     {
 39 |         guard
 40 |         let buffer:UnsafeMutablePointer<CChar> = getcwd(nil, 0)
    |                                                         `- error: 'nil' requires a contextual type
 41 |         else
 42 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:47:13: error: cannot find 'free' in scope
 45 |         defer
 46 |         {
 47 |             free(buffer)
    |             `- error: cannot find 'free' in scope
 48 |         }
 49 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:10:8: error: unsupported platform
  8 | import Glibc
  9 | #else
 10 | #error("unsupported platform")
    |        `- error: unsupported platform
 11 | #endif
 12 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:20:30: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 18 |     {
 19 |         case unopened(FilePath)
 20 |         case opened(FilePath.DirectoryPointer?)
    |                              `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 21 |     }
 22 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:26:36: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 24 | {
 25 |     private mutating
 26 |     func open() throws -> FilePath.DirectoryPointer?
    |                                    `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 27 |     {
 28 |         switch self
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:31:34: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 29 |         {
 30 |         case .unopened(let path):
 31 |             let pointer:FilePath.DirectoryPointer? = try path.withPlatformString
    |                                  `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 32 |             {
 33 |                 if  let pointer:FilePath.DirectoryPointer = opendir($0)
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:56:35: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 54 |     func next() throws -> FilePath.Component?
 55 |     {
 56 |         guard let stream:FilePath.DirectoryPointer = try self.open()
    |                                   `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 57 |         else
 58 |         {
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:56:63: error: type of expression is ambiguous without a type annotation
 54 |     func next() throws -> FilePath.Component?
 55 |     {
 56 |         guard let stream:FilePath.DirectoryPointer = try self.open()
    |                                                               `- error: type of expression is ambiguous without a type annotation
 57 |         else
 58 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:62:45: error: cannot find type 'dirent' in scope
 60 |         }
 61 |
 62 |         guard let offset:Int = MemoryLayout<dirent>.offset(of: \.d_name)
    |                                             `- error: cannot find type 'dirent' in scope
 63 |         else
 64 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:62:64: error: cannot infer key path type from context; consider explicitly specifying a root type
 60 |         }
 61 |
 62 |         guard let offset:Int = MemoryLayout<dirent>.offset(of: \.d_name)
    |                                                                `- error: cannot infer key path type from context; consider explicitly specifying a root type
 63 |         else
 64 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:46: error: cannot find type 'dirent' in scope
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                              `- error: cannot find type 'dirent' in scope
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:56: error: cannot find 'readdir' in scope
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                                        `- error: cannot find 'readdir' in scope
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:67:56: error: type of expression is ambiguous without a type annotation
 65 |             fatalError("invalid `dirent` layout")
 66 |         }
 67 |         while let entry:UnsafeMutablePointer<dirent> = readdir(stream)
    |                                                        `- error: type of expression is ambiguous without a type annotation
 68 |         {
 69 |             // `entry` is likely statically-allocated, and has variable-length layout.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:92:9: error: cannot find 'closedir' in scope
 90 |         }
 91 |
 92 |         closedir(stream)
    |         `- error: cannot find 'closedir' in scope
 93 |         self = .opened(nil)
 94 |         return nil
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:93:24: error: 'nil' requires a contextual type
 91 |
 92 |         closedir(stream)
 93 |         self = .opened(nil)
    |                        `- error: 'nil' requires a contextual type
 94 |         return nil
 95 |     }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:99:39: error: expression pattern of type 'Errno' cannot match values of type 'FilePath.DirectoryIterator.Stream'
 97 |     func close()
 98 |     {
 99 |         guard case .opened(let stream?) = self
    |                                       `- error: expression pattern of type 'Errno' cannot match values of type 'FilePath.DirectoryIterator.Stream'
100 |         else
101 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:99:21: error: type 'Errno' has no member 'opened'
 97 |     func close()
 98 |     {
 99 |         guard case .opened(let stream?) = self
    |                     `- error: type 'Errno' has no member 'opened'
100 |         else
101 |         {
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:105:9: error: cannot find 'closedir' in scope
103 |         }
104 |
105 |         closedir(stream)
    |         `- error: cannot find 'closedir' in scope
106 |         self = .opened(nil)
107 |     }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:106:24: error: 'nil' requires a contextual type
104 |
105 |         closedir(stream)
106 |         self = .opened(nil)
    |                        `- error: 'nil' requires a contextual type
107 |     }
108 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryPointer.swift:6:8: error: unsupported platform
 4 | import Glibc
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryPointer.swift:6:8: error: unsupported platform
 4 | import Glibc
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryPointer.swift:6:8: error: unsupported platform
 4 | import Glibc
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
[446/1120] Compiling Symbols Symbol.Decl.Language.swift
[447/1120] Compiling Symbols Symbol.Triple.Vendor.swift
[448/1120] Compiling Symbols Symbol.Triple.swift
[449/1120] Compiling Symbols Symbol.USR.swift
[450/1120] Compiling Symbols Symbol.Volume.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[460/1120] Emitting module SystemIO
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.Directory.swift:12:8: error: unsupported platform
 10 |
 11 | #else
 12 | #error("unsupported platform")
    |        `- error: unsupported platform
 13 | #endif
 14 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:10:8: error: unsupported platform
  8 | import Glibc
  9 | #else
 10 | #error("unsupported platform")
    |        `- error: unsupported platform
 11 | #endif
 12 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:20:30: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 18 |     {
 19 |         case unopened(FilePath)
 20 |         case opened(FilePath.DirectoryPointer?)
    |                              `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 21 |     }
 22 | }
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryIterator.Stream.swift:26:36: error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 24 | {
 25 |     private mutating
 26 |     func open() throws -> FilePath.DirectoryPointer?
    |                                    `- error: 'DirectoryPointer' is not a member type of struct 'SystemPackage.FilePath'
 27 |     {
 28 |         switch self
/host/spi-builder-workspace/.build/checkouts/swift-system/Sources/System/FilePath/FilePath.swift:41:15: note: 'FilePath' declared here
39 | /// like case insensitivity, Unicode normalization, and symbolic links.
40 | @available(/*System 0.0.1: macOS 11.0, iOS 14.0, watchOS 7.0, tvOS 14.0*/iOS 8, *)
41 | public struct FilePath: Sendable {
   |               `- note: 'FilePath' declared here
42 |   // TODO(docs): Section on all the new syntactic operations, lexical normalization, decomposition,
43 |   // components, etc.
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FilePath.DirectoryPointer.swift:6:8: error: unsupported platform
 4 | import Glibc
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:6:8: error: unsupported platform
 4 | import Glibc
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:15:15: error: cannot find type 'stat' in scope
13 | {
14 |     @usableFromInline
15 |     let value:stat
   |               `- error: cannot find type 'stat' in scope
16 |
17 |     private
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:18:16: error: cannot find type 'stat' in scope
16 |
17 |     private
18 |     init(value:stat)
   |                `- error: cannot find type 'stat' in scope
19 |     {
20 |         self.value = value
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileStatus.swift:28:30: error: cannot find 'S_IFMT' in scope
26 |     func `is`(_ type:FileType) -> Bool
27 |     {
28 |         self.value.st_mode & S_IFMT == type.mask
   |                              `- error: cannot find 'S_IFMT' in scope
29 |     }
30 | }
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileType.swift:23:14: error: cannot find type 'mode_t' in scope
21 | {
22 |     @inlinable
23 |     var mask:mode_t
   |              `- error: cannot find type 'mode_t' in scope
24 |     {
25 |         switch self
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileSystemStats.swift:6:8: error: unsupported platform
 4 | import Darwin
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileType.swift:6:8: error: unsupported platform
 4 | import Glibc
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.Environment.swift:6:8: error: unsupported platform
 4 | import Darwin
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:14:12: error: cannot find type 'pid_t' in scope
 12 |     let invocation:[String]
 13 |     public
 14 |     let id:pid_t
    |            `- error: cannot find type 'pid_t' in scope
 15 |
 16 |     private
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:6:8: error: unsupported platform
  4 | import Darwin
  5 | #else
  6 | #error("unsupported platform")
    |        `- error: unsupported platform
  7 | #endif
  8 |
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/SystemProcess.swift:17:34: error: cannot find type 'pid_t' in scope
 15 |
 16 |     private
 17 |     init(invocation:[String], id:pid_t)
    |                                  `- error: cannot find type 'pid_t' in scope
 18 |     {
 19 |         self.invocation = invocation
[465/1120] Emitting module DOM
[466/1121] Compiling Symbols Unicode.Scalar (ext).swift
[467/1121] Compiling Symbols Phylum.swift
[468/1121] Compiling Symbols Symbol.ACL.swift
[469/1121] Compiling Symbols Symbol.swift
[471/1126] Emitting module Grammar
[472/1126] Emitting module DequeModule
[473/1127] Compiling MD5 exports.swift
[478/1131] Compiling MD5 MD5.Words.swift
[479/1131] Compiling MD5 MD5.swift
[480/1131] Compiling MD5 MD5.Block.swift
[481/1131] Compiling CasesByIntegerEncodingMacro GenerateCasesByIntegerEncoding.swift
[482/1131] Compiling CasesByIntegerEncodingMacro RawRepresentableByIntegerEncoding.swift
[483/1131] Emitting module CasesByIntegerEncodingMacro
[494/1136] Compiling OrderedCollections OrderedSet+Sendable.swift
[495/1136] Compiling OrderedCollections OrderedSet+SubSequence.swift
[496/1136] Compiling OrderedCollections OrderedSet+Testing.swift
[497/1136] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[498/1136] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[499/1136] Compiling OrderedCollections OrderedSet.swift
[500/1136] Compiling OrderedCollections _UnsafeBitset.swift
[501/1136] Emitting module MD5
[502/1137] Compiling Sitemaps exports.swift
[504/1137] Compiling Sitemaps XML.Sitemap.ContentEncoder (ext).swift
[505/1137] Compiling Sitemaps XML.Sitemap (ext).swift
[506/1141] Emitting module Sitemaps
[507/1183] Compiling Multiparts ContentTypeRule.swift
[508/1183] Compiling Multiparts HorizontalWhitespaceRule.swift
[509/1183] Compiling Multiparts MultipartHeaderRule.OpaqueFieldValue.swift
[510/1183] Compiling Multiparts MultipartHeaderRule.swift
[511/1183] Compiling URI URI.Query.EncodingSet.swift
[516/1183] Compiling Multiparts MultipartParameterRule.QuotedString.LiteralCharacter.swift
[517/1183] Compiling URI URI.Path.Component.EncodingSet.swift
[518/1183] Compiling URI URI.Path.Component.swift
[519/1183] Compiling URI URI.Path.ComponentConvertible.swift
[520/1183] Compiling URI URI.Path.swift
[522/1183] Compiling Multiparts MultipartSplitError.swift
[523/1183] Compiling Multiparts Collection (ext).swift
[524/1183] Compiling Multiparts MultipartForm.Item.Header.swift
[525/1183] Compiling Multiparts MultipartForm.Item.swift
[526/1183] Compiling Multiparts ContentType.swift
[527/1183] Compiling Multiparts MultipartView.swift
[528/1183] Compiling Multiparts ContentDisposition.swift
[529/1183] Compiling Multiparts ContentDispositionRule.swift
[530/1183] Compiling Multiparts MultipartForm.Iterator.swift
[531/1183] Compiling Multiparts MultipartForm.swift
[532/1203] Compiling JSONParsing JSON.NodeRule.Array.swift
[533/1203] Compiling JSONParsing JSON.NumberRule.PlusOrMinus.swift
[534/1203] Compiling JSONParsing JSON.NumberRule.swift
[535/1203] Compiling JSONParsing JSON.RootRule.swift
[536/1206] Compiling JSONParsing JSON.NodeRule.False.swift
[537/1206] Compiling JSONParsing JSON.NodeRule.Null.swift
[538/1206] Compiling JSONParsing JSON.NodeRule.Object.Item.swift
[539/1206] Compiling JSONParsing JSON.InvalidUnicodeScalarError.swift
[540/1206] Compiling JSONParsing JSON.Node (ext).swift
[541/1206] Compiling JSONParsing JSON.Object (ext).swift
[542/1206] Compiling JSONParsing JSON (ext).swift
[543/1206] Compiling JSONParsing JSON.StringRule.CodeUnit.swift
[544/1206] Compiling JSONParsing JSON.StringRule.EscapeSequence.swift
[545/1206] Compiling JSONParsing JSON.StringRule.EscapedCodeUnit.swift
[546/1206] Compiling JSONParsing JSON.StringRule.swift
[553/1244] Compiling JSONDecoding Float (ext).swift
[554/1244] Compiling JSONDecoding Float80 (ext).swift
[555/1244] Compiling JSONDecoding Int (ext).swift
[556/1244] Compiling JSONDecoding Int16 (ext).swift
[557/1244] Emitting module Symbols
[558/1245] Compiling JSONDecoding Int8 (ext).swift
[559/1245] Compiling JSONDecoding Set (ext).swift
[560/1245] Compiling JSONDecoding String (ext).swift
[562/1245] Compiling JSONDecoding Int32 (ext).swift
[563/1245] Compiling JSONDecoding Int64 (ext).swift
[564/1245] Emitting module OrderedCollections
[565/1245] Emitting module Multiparts
[569/1246] Compiling JSONDecoding Array (ext).swift
[570/1246] Compiling JSONDecoding Bool (ext).swift
[571/1246] Compiling JSONDecoding Character (ext).swift
[572/1246] Compiling JSONDecoding JSON.SingleKeyError.swift
[573/1246] Compiling JSONDecoding JSON.ValueError.swift
[574/1246] Compiling JSONDecoding JSON.FieldDecoder.swift
[575/1246] Compiling JSONDecoding Dictionary (ext).swift
[576/1246] Compiling JSONDecoding Double (ext).swift
[577/1246] Compiling JSONDecoding JSON.ObjectKeyError.swift
[580/1248] Compiling JSONParsing JSON.WhitespaceRule.swift
[581/1248] Compiling JSONParsing exports.swift
[585/1249] Emitting module URI
[586/1249] Compiling JSONDecoding UInt64 (ext).swift
[587/1249] Compiling JSONDecoding UInt8 (ext).swift
[588/1249] Compiling JSONDecoding Unicode.Scalar (ext).swift
[598/1249] Compiling JSONDecoding UInt (ext).swift
[599/1249] Compiling JSONDecoding UInt16 (ext).swift
[600/1249] Compiling JSONDecoding UInt32 (ext).swift
[601/1249] Compiling JSONDecoding JSON.OptionalDecoder.swift
[602/1249] Compiling JSONDecoding JSON.TraceableDecoder.swift
[603/1249] Compiling JSONDecoding JSON.Array (ext).swift
[609/1250] Emitting module JSONParsing
[610/1251] Emitting module JSONDecoding
[611/1322] Compiling SourceDiagnostics Diagnostics.Group.swift
[612/1322] Compiling SourceDiagnostics Demangler.swift
[613/1322] Compiling SourceDiagnostics DiagnosticLogger.swift
[614/1322] Compiling SourceDiagnostics DiagnosticOutput.swift
[615/1322] Compiling SourceDiagnostics SourceReference (ext).swift
[616/1322] Compiling SourceDiagnostics DiagnosticContext.swift
[617/1322] Compiling SourceDiagnostics DiagnosticFrame.swift
[618/1322] Compiling SourceDiagnostics DiagnosticLine.swift
[619/1322] Compiling SourceDiagnostics Diagnostic.swift
[620/1322] Compiling SourceDiagnostics DiagnosticAlert.swift
[621/1322] Compiling SourceDiagnostics Diagnostics.swift
[622/1322] Compiling SourceDiagnostics DiagnosticFragment.swift
[623/1322] Compiling SourceDiagnostics TerminalColor.swift
[624/1322] Compiling SourceDiagnostics TerminalColors.swift
[625/1322] Compiling SourceDiagnostics DiagnosticLevel.swift
[626/1322] Compiling MarkdownAST Markdown.BlockCode.swift
[627/1322] Compiling MarkdownAST Markdown.BlockContainer.swift
[628/1322] Compiling MarkdownAST Markdown.BlockDirective.swift
[629/1322] Compiling MarkdownAST Markdown.BlockDirectiveOption.swift
[630/1322] Compiling MarkdownAST Markdown.BlockDirectiveType.swift
[631/1322] Compiling MarkdownAST Markdown.InlineContainerType.swift
[632/1322] Compiling MarkdownAST Markdown.InlineElement.swift
[633/1322] Compiling MarkdownAST Markdown.InlineHTML.swift
[634/1322] Compiling MarkdownAST Markdown.AnyOption.swift
[635/1322] Compiling MarkdownAST Markdown.BlockAside.swift
[636/1322] Compiling MarkdownAST Markdown.Table.Alignment.swift
[637/1322] Compiling MarkdownAST Markdown.BinaryEncoder (ext).swift
[638/1322] Compiling MarkdownAST Markdown.Outlinable.swift
[639/1322] Compiling MarkdownAST Markdown.ParsingEngine.swift
[640/1322] Compiling MarkdownAST Markdown.ParsingFlavor.swift
[641/1322] Compiling MarkdownAST Markdown.SourceURL.Provenance.swift
[642/1322] Compiling MarkdownAST Markdown.SourceURL.swift
[643/1322] Compiling MarkdownAST Markdown.TextElement.swift
[644/1322] Compiling MarkdownAST Markdown.Tree.swift
[645/1322] Compiling MarkdownAST Markdown.TreeElement.swift
[647/1322] Compiling _AsyncChannel Rethrow.swift
[648/1322] Compiling _AsyncChannel AsyncChannel.swift
[649/1322] Compiling _AsyncChannel AsyncThrowingChannel.swift
[650/1322] Compiling MarkdownAST Markdown.Source.swift
[651/1322] Compiling MarkdownAST Markdown.SourceString.swift
[652/1322] Compiling MarkdownAST Markdown.InlineHyperlink.Target.swift
[653/1322] Compiling MarkdownAST Markdown.InlineHyperlink.swift
[654/1328] Compiling _AsyncChannel Locking.swift
[655/1328] Emitting module _AsyncChannel
[662/1330] Emitting module SourceDiagnostics
[670/1330] Compiling ISO ISO.swift
[671/1330] Compiling _AsyncChannel ChannelStorage.swift
[675/1373] Compiling _AsyncChannel ChannelStateMachine.swift
[676/1376] Compiling ISO ISO.Locale.swift
[677/1376] Compiling UCF UCF.SignaturePatternRule.swift
[678/1376] Compiling UCF UCF.TypePatternRule.swift
[679/1376] Compiling UCF UCF.TypeSigil.swift
[680/1376] Compiling UCF UCF.Condition.swift
[681/1376] Compiling UCF UCF.ConditionFilter.swift
[682/1376] Compiling UCF UCF.Disambiguator.swift
[683/1376] Compiling UCF UCF.DisambiguatorRule.Clause.swift
[684/1376] Compiling UCF UCF.IdentifierRule.swift
[685/1376] Compiling UCF UCF.NominalPatternRule.GenericArguments.swift
[686/1376] Compiling UCF UCF.NominalPatternRule.PathComponent.swift
[687/1376] Compiling UCF UCF.NominalPatternRule.swift
[688/1376] Compiling UCF UCF.SignaturePattern.swift
[690/1382] Compiling UCF UCF.TuplePatternRule.swift
[691/1382] Compiling UCF UCF.TypeElement.swift
[693/1398] Compiling HTML SVG.ContentEncoder (ext).swift
[694/1398] Compiling HTML HTML.OutputStreamable (ext).swift
[695/1398] Compiling HTML HTML.Attribute.Rel.swift
[696/1398] Compiling HTML HTML.Link.swift
[697/1398] Compiling HTML SVG.Point.swift
[698/1398] Compiling HTML exports.swift
[699/1398] Compiling HTML HTML.ContentEncoder (ext).swift
[700/1398] Compiling HTML SVG (ext).swift
[701/1398] Compiling HTML HTML (ext).swift
[702/1398] Compiling HTML HTML.AttributeEncoder (ext).swift
[703/1398] Compiling HTML HTML.OutputStreamableHeading (ext).swift
[704/1398] Compiling HTML Never (ext).swift
[705/1398] Compiling HTML Optional (ext).swift
[706/1398] Compiling HTML HTML.Attribute.Property.swift
[707/1398] Compiling UCF UCF.SpaceRule.swift
[710/1398] Compiling UCF UCF.TypeElementRule.PostfixMetatype.swift
[711/1398] Compiling UCF UCF.TypeElementRule.PostfixOperator.swift
[712/1398] Compiling UCF UCF.ArrowRule.swift
[713/1398] Compiling UCF UCF.BracketPatternRule.swift
[714/1398] Compiling UCF UCF.DisambiguationSuffixRule.swift
[715/1398] Compiling UCF UCF.DisambiguatorRule.Clause.AlphanumericCodepoint.swift
[716/1398] Compiling UCF UCF.DisambiguatorRule.Clause.AlphanumericWord.swift
[717/1398] Compiling UCF UCF.DisambiguatorRule.Clause.AlphanumericWords.swift
[718/1401] Emitting module MarkdownAST
[737/1407] Compiling UCF UCF.LegacyFilter.swift
[738/1407] Compiling UCF UCF.Selector.Base.swift
[739/1407] Compiling UCF UCF.Selector.Path.swift
[740/1407] Compiling UCF UCF.Selector.PathComponent.IdentifierHead.swift
[741/1407] Compiling UCF UCF.Selector.PathComponent.OperatorHead.swift
[742/1407] Compiling UCF UCF.Selector.PathComponent.swift
[757/1409] Compiling ISO ISO.Macrolanguage (gen).swift
[758/1409] Compiling JSON exports.swift
[763/1410] Compiling JSON JSON (ext).swift
[764/1410] Emitting module JSON
[775/1411] Emitting module UCF
[776/1411] Emitting module ISO
[788/1411] Compiling MarkdownAST Markdown.Table.AnyCell.swift
[789/1411] Emitting module BaseDigits
[790/1411] Compiling BaseDigits BaseDigits.swift
[791/1412] Compiling ISO ISO.Country (gen).swift
[792/1413] Compiling HTML lexemes.swift
[794/1413] Emitting module HTML
[796/1414] Compiling UCF UCF.Selector.Suffix.swift
[797/1414] Compiling UCF UCF.Selector.swift
[798/1414] Compiling UCF UCF.SignatureFilter.swift
[799/1414] Compiling UCF Doclink.swift
[800/1414] Compiling UCF UCF.AnchorMangling.swift
[805/1489] Emitting module SHA1_JSON
[806/1489] Compiling SHA1_JSON SHA1 (ext).swift
[807/1490] Compiling Base64 Base64.SafeDigits.swift
[808/1490] Compiling Base64 Base64.DefaultDigits.swift
[809/1490] Compiling PieCharts Pie.ShareFormat.swift
[811/1491] Compiling PieCharts Pie.ShareFormat1F.swift
[812/1491] Compiling PieCharts Pie.Disc.swift
[813/1491] Compiling PieCharts Pie.Shape.Slice.swift
[814/1491] Compiling PieCharts Pie.Shape.swift
[815/1491] Compiling UnixCalendar UnixDate (ext).swift
[816/1492] Compiling UnixCalendar Timestamp.swift
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/Timestamp.swift:15:8: error: Platform doesn’t support 'gmtime_r'
13 |
14 | #else
15 | #error("Platform doesn’t support 'gmtime_r'")
   |        `- error: Platform doesn’t support 'gmtime_r'
16 | #endif
17 |
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/Timestamp.swift:61:23: error: cannot find type 'tm' in scope
59 |     init?(secondSinceEpoch:Int)
60 |     {
61 |         var segmented:tm = .init(
   |                       `- error: cannot find type 'tm' in scope
62 |             tm_sec:     -1,
63 |             tm_min:     -1,
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/Timestamp.swift:75:57: error: cannot find 'gmtime_r' in scope
73 |             tm_zone:    nil)
74 |
75 |         guard withUnsafePointer(to: secondSinceEpoch, { gmtime_r($0, &segmented) }) != nil,
   |                                                         `- error: cannot find 'gmtime_r' in scope
76 |         let weekday:Timestamp.Weekday = .init(rawValue: Int.init(segmented.tm_wday)),
77 |         let month:Timestamp.Month = .init(rawValue: segmented.tm_mon + 1)
[817/1492] Compiling UnixCalendar UnixAttosecond (ext).swift
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:21:8: error: Platform doesn’t support 'clock_gettime'
19 | import func Darwin.timegm
20 | #else
21 | #error("Platform doesn’t support 'clock_gettime'")
   |        `- error: Platform doesn’t support 'clock_gettime'
22 | #endif
23 |
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:30:18: error: cannot find type 'timespec' in scope
28 |     static func now() -> Self
29 |     {
30 |         var time:timespec = .init()
   |                  `- error: cannot find type 'timespec' in scope
31 |
32 |         if  clock_gettime(CLOCK_REALTIME, &time) != 0
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:32:13: error: cannot find 'clock_gettime' in scope
30 |         var time:timespec = .init()
31 |
32 |         if  clock_gettime(CLOCK_REALTIME, &time) != 0
   |             `- error: cannot find 'clock_gettime' in scope
33 |         {
34 |             fatalError("system clock unavailable! (CLOCK_REALTIME)")
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:32:27: error: cannot find 'CLOCK_REALTIME' in scope
30 |         var time:timespec = .init()
31 |
32 |         if  clock_gettime(CLOCK_REALTIME, &time) != 0
   |                           `- error: cannot find 'CLOCK_REALTIME' in scope
33 |         {
34 |             fatalError("system clock unavailable! (CLOCK_REALTIME)")
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:59:18: error: cannot find type 'tm' in scope
57 |         }
58 |
59 |         var time:tm = .init(
   |                  `- error: cannot find type 'tm' in scope
60 |             tm_sec:     timestamp.time.second,
61 |             tm_min:     timestamp.time.minute,
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:73:52: error: cannot find 'timegm' in scope
71 |             tm_zone:    nil)
72 |
73 |         switch withUnsafeMutablePointer(to: &time, timegm)
   |                                                    `- error: cannot find 'timegm' in scope
74 |         {
75 |         case -1:            return nil
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:73:52: error: converting non-escaping value to '(UnsafeMutablePointer<T>) throws(E) -> Result' may allow it to escape
71 |             tm_zone:    nil)
72 |
73 |         switch withUnsafeMutablePointer(to: &time, timegm)
   |                                                    `- error: converting non-escaping value to '(UnsafeMutablePointer<T>) throws(E) -> Result' may allow it to escape
74 |         {
75 |         case -1:            return nil
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:73:16: error: generic parameter 'E' could not be inferred
71 |             tm_zone:    nil)
72 |
73 |         switch withUnsafeMutablePointer(to: &time, timegm)
   |                `- error: generic parameter 'E' could not be inferred
74 |         {
75 |         case -1:            return nil
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:73:16: error: generic parameter 'Result' could not be inferred
71 |             tm_zone:    nil)
72 |
73 |         switch withUnsafeMutablePointer(to: &time, timegm)
   |                `- error: generic parameter 'Result' could not be inferred
74 |         {
75 |         case -1:            return nil
Swift.withUnsafeMutablePointer:1:13: note: in call to function 'withUnsafeMutablePointer(to:_:)'
1 | public func withUnsafeMutablePointer<T, E, Result>(to value: inout T, _ body: (UnsafeMutablePointer<T>) throws(E) -> Result) throws(E) -> Result where E : Error, T : ~Copyable, Result : ~Copyable
  |             `- note: in call to function 'withUnsafeMutablePointer(to:_:)'
[818/1492] Compiling Base64 Base64.swift
[819/1492] Compiling Base64 Base64.Values.swift
[820/1492] Compiling PieCharts Pie.swift
[821/1492] Compiling PieCharts Pie.ChartKey.swift
[822/1492] Compiling PieCharts Pie.ChartSource.swift
[823/1492] Compiling PieCharts Pie.Chart.Legend.swift
[824/1492] Compiling PieCharts Pie.Chart.swift
[825/1492] Compiling PieCharts Pie.Accumulator.swift
[826/1492] Compiling PieCharts Pie.ArcGeometry.swift
[827/1492] Emitting module Base64
error: emit-module command failed with exit code 1 (use -v to see invocation)
[828/1493] Emitting module UnixCalendar
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/Timestamp.swift:15:8: error: Platform doesn’t support 'gmtime_r'
13 |
14 | #else
15 | #error("Platform doesn’t support 'gmtime_r'")
   |        `- error: Platform doesn’t support 'gmtime_r'
16 | #endif
17 |
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:21:8: error: Platform doesn’t support 'clock_gettime'
19 | import func Darwin.timegm
20 | #else
21 | #error("Platform doesn’t support 'clock_gettime'")
   |        `- error: Platform doesn’t support 'clock_gettime'
22 | #endif
23 |
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:59:18: error: cannot find type 'tm' in scope
57 |         }
58 |
59 |         var time:tm = .init(
   |                  `- error: cannot find type 'tm' in scope
60 |             tm_sec:     timestamp.time.second,
61 |             tm_min:     timestamp.time.minute,
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:73:52: error: cannot find 'timegm' in scope
71 |             tm_zone:    nil)
72 |
73 |         switch withUnsafeMutablePointer(to: &time, timegm)
   |                                                    `- error: cannot find 'timegm' in scope
74 |         {
75 |         case -1:            return nil
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:73:52: error: converting non-escaping value to '(UnsafeMutablePointer<T>) throws(E) -> Result' may allow it to escape
71 |             tm_zone:    nil)
72 |
73 |         switch withUnsafeMutablePointer(to: &time, timegm)
   |                                                    `- error: converting non-escaping value to '(UnsafeMutablePointer<T>) throws(E) -> Result' may allow it to escape
74 |         {
75 |         case -1:            return nil
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:73:16: error: generic parameter 'E' could not be inferred
71 |             tm_zone:    nil)
72 |
73 |         switch withUnsafeMutablePointer(to: &time, timegm)
   |                `- error: generic parameter 'E' could not be inferred
74 |         {
75 |         case -1:            return nil
/host/spi-builder-workspace/.build/checkouts/swift-unixtime/Sources/UnixCalendar/UnixAttosecond (ext).swift:73:16: error: generic parameter 'Result' could not be inferred
71 |             tm_zone:    nil)
72 |
73 |         switch withUnsafeMutablePointer(to: &time, timegm)
   |                `- error: generic parameter 'Result' could not be inferred
74 |         {
75 |         case -1:            return nil
Swift.withUnsafeMutablePointer:1:13: note: in call to function 'withUnsafeMutablePointer(to:_:)'
1 | public func withUnsafeMutablePointer<T, E, Result>(to value: inout T, _ body: (UnsafeMutablePointer<T>) throws(E) -> Result) throws(E) -> Result where E : Error, T : ~Copyable, Result : ~Copyable
  |             `- note: in call to function 'withUnsafeMutablePointer(to:_:)'
[833/1493] Emitting module PieCharts
[834/1494] Compiling BSONABI BSON.BinaryShape.swift
[835/1494] Compiling BSONABI BSON.BinaryShapeError.Criteria.swift
[836/1494] Compiling BSONABI BSON.BinaryShapeError.swift
[837/1494] Compiling BSONABI BSON.BinarySubtype.swift
[838/1494] Compiling BSONABI BSON.BinarySubtypeError.swift
[839/1494] Compiling BSONABI BSON.BinaryView.swift
[845/1512] Compiling BSONABI BSON.DocumentFrame.swift
[846/1512] Compiling BSONABI BSON.UTF8Frame.swift
[847/1512] Compiling BSONABI BSON.UTF8View.swift
[850/1512] Compiling UCF UCF.swift
[852/1525] Compiling UnixCalendar UnixMillisecond (ext).swift
[854/1525] Compiling BSONABI BSON.Identifier.swift
[855/1525] Compiling BSONABI BSON.IntegerOverflowError.swift
[856/1525] Compiling BSONABI BSON.List.swift
[857/1525] Compiling BSONABI BSON.Max.swift
[858/1525] Compiling BSONABI BSON.Min.swift
[859/1525] Compiling BSONABI BSON.Null.swift
/host/spi-builder-workspace/.build/checkouts/swift-io/Sources/SystemIO/FileSystemStats.swift:6:8: error: unsupported platform
 4 | import Darwin
 5 | #else
 6 | #error("unsupported platform")
   |        `- error: unsupported platform
 7 | #endif
 8 |
BUILD FAILURE 6.1 android