Build Information
Failed to build VertexGUI, reference 0.2.1 (eb3d92), with Swift 6.3 for macOS (SPM) on 13 Apr 2026 18:51:03 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
1 | protocol FloatingPoint {
2 | mutating func formSquareRoot()}
| `- note: protocol requires function 'formSquareRoot()' with type '() -> ()'
3 |
Swift.FloatingPoint.addProduct:2:15: note: protocol requires function 'addProduct' with type '(Float80, Float80) -> ()'
1 | protocol FloatingPoint {
2 | mutating func addProduct(_ lhs: Self, _ rhs: Self)}
| `- note: protocol requires function 'addProduct' with type '(Float80, Float80) -> ()'
3 |
Swift.FloatingPoint.nextUp:2:5: note: protocol requires property 'nextUp' with type 'Float80'
1 | protocol FloatingPoint {
2 | var nextUp: Self { get }}
| `- note: protocol requires property 'nextUp' with type 'Float80'
3 |
Swift.FloatingPoint.isEqual:2:6: note: protocol requires function 'isEqual(to:)' with type '(Float80) -> Bool'
1 | protocol FloatingPoint {
2 | func isEqual(to other: Self) -> Bool}
| `- note: protocol requires function 'isEqual(to:)' with type '(Float80) -> Bool'
3 |
Swift.FloatingPoint.isLess:2:6: note: protocol requires function 'isLess(than:)' with type '(Float80) -> Bool'
1 | protocol FloatingPoint {
2 | func isLess(than other: Self) -> Bool}
| `- note: protocol requires function 'isLess(than:)' with type '(Float80) -> Bool'
3 |
Swift.FloatingPoint.isLessThanOrEqualTo:2:6: note: protocol requires function 'isLessThanOrEqualTo' with type '(Float80) -> Bool'
1 | protocol FloatingPoint {
2 | func isLessThanOrEqualTo(_ other: Self) -> Bool}
| `- note: protocol requires function 'isLessThanOrEqualTo' with type '(Float80) -> Bool'
3 |
Swift.FloatingPoint.isTotallyOrdered:2:6: note: protocol requires function 'isTotallyOrdered(belowOrEqualTo:)' with type '(Float80) -> Bool'
1 | protocol FloatingPoint {
2 | func isTotallyOrdered(belowOrEqualTo other: Self) -> Bool}
| `- note: protocol requires function 'isTotallyOrdered(belowOrEqualTo:)' with type '(Float80) -> Bool'
3 |
Swift.FloatingPoint.isNormal:2:5: note: protocol requires property 'isNormal' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isNormal: Bool { get }}
| `- note: protocol requires property 'isNormal' with type 'Bool'
3 |
Swift.FloatingPoint.isFinite:2:5: note: protocol requires property 'isFinite' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isFinite: Bool { get }}
| `- note: protocol requires property 'isFinite' with type 'Bool'
3 |
Swift.FloatingPoint.isZero:2:5: note: protocol requires property 'isZero' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isZero: Bool { get }}
| `- note: protocol requires property 'isZero' with type 'Bool'
3 |
Swift.FloatingPoint.isSubnormal:2:5: note: protocol requires property 'isSubnormal' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isSubnormal: Bool { get }}
| `- note: protocol requires property 'isSubnormal' with type 'Bool'
3 |
Swift.FloatingPoint.isInfinite:2:5: note: protocol requires property 'isInfinite' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isInfinite: Bool { get }}
| `- note: protocol requires property 'isInfinite' with type 'Bool'
3 |
Swift.FloatingPoint.isNaN:2:5: note: protocol requires property 'isNaN' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isNaN: Bool { get }}
| `- note: protocol requires property 'isNaN' with type 'Bool'
3 |
Swift.FloatingPoint.isSignalingNaN:2:5: note: protocol requires property 'isSignalingNaN' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isSignalingNaN: Bool { get }}
| `- note: protocol requires property 'isSignalingNaN' with type 'Bool'
3 |
Swift.FloatingPoint.isCanonical:2:5: note: protocol requires property 'isCanonical' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isCanonical: Bool { get }}
| `- note: protocol requires property 'isCanonical' with type 'Bool'
3 |
Swift.Strideable.distance:2:6: note: protocol requires function 'distance(to:)' with type '(Float80) -> Float80'
1 | protocol Strideable {
2 | func distance(to other: Self) -> Self.Stride}
| `- note: protocol requires function 'distance(to:)' with type '(Float80) -> Float80'
3 |
Swift.Strideable.advanced:2:6: note: protocol requires function 'advanced(by:)' with type '(Float80) -> Float80'
1 | protocol Strideable {
2 | func advanced(by n: Self.Stride) -> Self}
| `- note: protocol requires function 'advanced(by:)' with type '(Float80) -> Float80'
3 |
Swift.Numeric.magnitude:2:5: note: protocol requires property 'magnitude' with type 'Float80'
1 | protocol Numeric {
2 | var magnitude: Self.Magnitude { get }}
| `- note: protocol requires property 'magnitude' with type 'Float80'
3 |
Swift.AdditiveArithmetic.+:2:13: note: protocol requires function '+' with type '(Float80, Float80) -> Float80'
1 | protocol AdditiveArithmetic {
2 | static func + (lhs: Self, rhs: Self) -> Self}
| `- note: protocol requires function '+' with type '(Float80, Float80) -> Float80'
3 |
Swift.ExpressibleByIntegerLiteral.IntegerLiteralType:2:16: note: protocol requires nested type 'IntegerLiteralType'
1 | protocol ExpressibleByIntegerLiteral {
2 | associatedtype IntegerLiteralType : _ExpressibleByBuiltinIntegerLiteral}
| `- note: protocol requires nested type 'IntegerLiteralType'
3 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:14:11: error: 'Float80' is unavailable: Float80 is not available on target platform.
12 |
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:15:32: error: 'Float80' is unavailable: Float80 is not available on target platform.
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:15:44: error: 'Float80' is unavailable: Float80 is not available on target platform.
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:16:32: error: 'Float80' is unavailable: Float80 is not available on target platform.
14 | extension Float80 : FloatingPointGenericMath {
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:16:44: error: 'Float80' is unavailable: Float80 is not available on target platform.
14 | extension Float80 : FloatingPointGenericMath {
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:17:32: error: 'Float80' is unavailable: Float80 is not available on target platform.
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:17:44: error: 'Float80' is unavailable: Float80 is not available on target platform.
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:18:33: error: 'Float80' is unavailable: Float80 is not available on target platform.
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
20 | public static func _pow(_ x: Float80, _ y: Float80) -> Float80 { return pow(x, y) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:18:45: error: 'Float80' is unavailable: Float80 is not available on target platform.
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
20 | public static func _pow(_ x: Float80, _ y: Float80) -> Float80 { return pow(x, y) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:19:32: error: 'Float80' is unavailable: Float80 is not available on target platform.
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
20 | public static func _pow(_ x: Float80, _ y: Float80) -> Float80 { return pow(x, y) }
21 | // ...
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:19:44: error: 'Float80' is unavailable: Float80 is not available on target platform.
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
20 | public static func _pow(_ x: Float80, _ y: Float80) -> Float80 { return pow(x, y) }
21 | // ...
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:20:32: error: 'Float80' is unavailable: Float80 is not available on target platform.
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
20 | public static func _pow(_ x: Float80, _ y: Float80) -> Float80 { return pow(x, y) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
21 | // ...
22 | }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:20:46: error: 'Float80' is unavailable: Float80 is not available on target platform.
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
20 | public static func _pow(_ x: Float80, _ y: Float80) -> Float80 { return pow(x, y) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
21 | // ...
22 | }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:20:58: error: 'Float80' is unavailable: Float80 is not available on target platform.
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
20 | public static func _pow(_ x: Float80, _ y: Float80) -> Float80 { return pow(x, y) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
21 | // ...
22 | }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:14:1: error: extension outside of file declaring struct 'Float80' prevents automatic synthesis of 'hash(into:)' for protocol 'Hashable'
12 |
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
| |- error: extension outside of file declaring struct 'Float80' prevents automatic synthesis of 'hash(into:)' for protocol 'Hashable'
| `- note: add stubs for conformance
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
Swift.Float80:2:23: note: type declared here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: type declared here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:14:1: error: type 'Float80' does not conform to protocol 'FloatingPoint'
12 |
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
| `- error: type 'Float80' does not conform to protocol 'FloatingPoint'
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/Matrix.swift:138:28: note: candidate would match if 'Float80' conformed to 'MatrixProtocol'
136 | /// element wise division
137 | // TODO: divide only the overlapping elements
138 | @inlinable static func / (lhs: Self, rhs: Self) -> Self {
| `- note: candidate would match if 'Float80' conformed to 'MatrixProtocol'
139 | var result = lhs.clone()
140 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/Quaternion.swift:118:22: note: candidate has non-matching type '<E> (Quaternion<E>, Quaternion<E>.Element) -> Quaternion<E>' (aka '<E> (Quaternion<E>, E) -> Quaternion<E>') [with Exponent = _]
116 | divide w, x, y, z by rhs
117 | */
118 | public static func / (lhs: Self, rhs: Element) -> Self {
| `- note: candidate has non-matching type '<E> (Quaternion<E>, Quaternion<E>.Element) -> Quaternion<E>' (aka '<E> (Quaternion<E>, E) -> Quaternion<E>') [with Exponent = _]
119 | var result = lhs
120 | result /= rhs
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/vector/VectorProtocol+Operators.swift:135:33: note: candidate has non-matching type '<Self> (Self, Self.Element) -> Self' [with Exponent = _]
133 | }
134 |
135 | @inlinable public static func / (lhs: Self, rhs: Element) -> Self {
| `- note: candidate has non-matching type '<Self> (Self, Self.Element) -> Self' [with Exponent = _]
136 | var result = lhs
137 | result /= rhs
:
145 | }
146 |
147 | @inlinable public static func / (lhs: Self, rhs: Self) -> Self {
| `- note: candidate would match if 'Float80' conformed to 'VectorProtocol'
148 | var result = lhs
149 | result /= rhs
Swift.Duration./:3:22: note: candidate has non-matching type '<T> (Duration, T) -> Duration' [with Exponent = _]
1 | struct Duration {
2 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
3 | public static func / <T>(lhs: Duration, rhs: T) -> Duration where T : BinaryInteger}
| `- note: candidate has non-matching type '<T> (Duration, T) -> Duration' [with Exponent = _]
4 |
Swift.SIMD./:2:20: note: candidate would match if 'Float80' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func / (a: Self, b: Self) -> Self}
| `- note: candidate would match if 'Float80' conformed to 'SIMD'
3 |
Swift.SIMD./:2:20: note: candidate would match if 'Float80' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func / (a: Self, b: Self) -> Self}
| `- note: candidate would match if 'Float80' conformed to 'SIMD'
3 |
Swift.SIMD./:2:20: note: candidate has non-matching type '<Self> (Self.Scalar, Self) -> Self' [with Exponent = _]
1 | protocol SIMD {
2 | public static func / (a: Self.Scalar, b: Self) -> Self}
| `- note: candidate has non-matching type '<Self> (Self.Scalar, Self) -> Self' [with Exponent = _]
3 |
Swift.SIMD./:2:20: note: candidate has non-matching type '<Self> (Self, Self.Scalar) -> Self' [with Exponent = _]
1 | protocol SIMD {
2 | public static func / (a: Self, b: Self.Scalar) -> Self}
| `- note: candidate has non-matching type '<Self> (Self, Self.Scalar) -> Self' [with Exponent = _]
3 |
Swift.SIMD./:2:20: note: candidate has non-matching type '<Self> (Self.Scalar, Self) -> Self' [with Exponent = _]
1 | protocol SIMD {
2 | public static func / (a: Self.Scalar, b: Self) -> Self}
| `- note: candidate has non-matching type '<Self> (Self.Scalar, Self) -> Self' [with Exponent = _]
3 |
Swift.SIMD./:2:20: note: candidate has non-matching type '<Self> (Self, Self.Scalar) -> Self' [with Exponent = _]
1 | protocol SIMD {
2 | public static func / (a: Self, b: Self.Scalar) -> Self}
| `- note: candidate has non-matching type '<Self> (Self, Self.Scalar) -> Self' [with Exponent = _]
3 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:14:1: error: type 'Float80' does not conform to protocol 'Strideable'
12 |
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
| `- error: type 'Float80' does not conform to protocol 'Strideable'
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:14:1: error: type 'Float80' does not conform to protocol 'Numeric'
12 |
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
| `- error: type 'Float80' does not conform to protocol 'Numeric'
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:14:1: error: type 'Float80' does not conform to protocol 'AdditiveArithmetic'
12 |
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
| `- error: type 'Float80' does not conform to protocol 'AdditiveArithmetic'
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/Color/Experimental/EColor.swift:16:35: note: candidate would match if 'Float80' conformed to 'EColor'
14 | }
15 |
16 | @inlinable public static func + (lhs: Self, rhs: Self) -> Self {
| `- note: candidate would match if 'Float80' conformed to 'EColor'
17 | var result = lhs
18 | result += rhs
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/Matrix.swift:104:28: note: candidate has non-matching type '<Self> (Self, Self.Element) -> Self'
102 |
103 | // TODO: need to add throws if dimensions don't match
104 | @inlinable static func + (lhs: Self, rhs: Element) -> Self {
| `- note: candidate has non-matching type '<Self> (Self, Self.Element) -> Self'
105 | var result = lhs.clone()
106 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/vector/VectorProtocol+Operators.swift:18:33: note: candidate would match if 'Float80' conformed to 'VectorProtocol'
16 | }
17 |
18 | @inlinable public static func + <O: VectorProtocol>(lhs: Self, rhs: O) -> Self where O.Dimension == Dimension, O.Element == Element {
| `- note: candidate would match if 'Float80' conformed to 'VectorProtocol'
19 | var result = lhs
20 | result += rhs
Swift.Strideable.+:2:20: note: candidate would match if 'Float80' conformed to '_Pointer'
1 | protocol Strideable {
2 | public static func + (lhs: Self, rhs: Self.Stride) -> Self}
| `- note: candidate would match if 'Float80' conformed to '_Pointer'
3 |
Swift.Strideable.+:2:20: note: candidate would match if 'Float80' conformed to '_Pointer'
1 | protocol Strideable {
2 | public static func + (lhs: Self.Stride, rhs: Self) -> Self}
| `- note: candidate would match if 'Float80' conformed to '_Pointer'
3 |
Swift.RangeReplaceableCollection.+:2:31: note: candidate would match if 'Float80' conformed to 'RangeReplaceableCollection'
1 | protocol RangeReplaceableCollection {
2 | @inlinable public static func + <Other>(lhs: Self, rhs: Other) -> Self where Other : Sequence, Self.Element == Other.Element}
| `- note: candidate would match if 'Float80' conformed to 'RangeReplaceableCollection'
3 |
Swift.RangeReplaceableCollection.+:2:31: note: candidate would match if 'Float80' conformed to 'RangeReplaceableCollection'
1 | protocol RangeReplaceableCollection {
2 | @inlinable public static func + <Other>(lhs: Other, rhs: Self) -> Self where Other : Sequence, Self.Element == Other.Element}
| `- note: candidate would match if 'Float80' conformed to 'RangeReplaceableCollection'
3 |
Swift.RangeReplaceableCollection.+:2:31: note: candidate would match if 'Float80' conformed to 'RangeReplaceableCollection'
1 | protocol RangeReplaceableCollection {
2 | @inlinable public static func + <Other>(lhs: Self, rhs: Other) -> Self where Other : RangeReplaceableCollection, Self.Element == Other.Element}
| `- note: candidate would match if 'Float80' conformed to 'RangeReplaceableCollection'
3 |
Swift.Sequence.+:3:22: note: candidate has non-matching type '<Self> (Self, String) -> Never'
1 | protocol Sequence {
2 | @available(*, unavailable, message: "Operator '+' cannot be used to append a String to a sequence of strings")
3 | public static func + (lhs: Self, rhs: String) -> Never}
| `- note: candidate has non-matching type '<Self> (Self, String) -> Never'
4 |
Swift.Sequence.+:3:22: note: candidate has non-matching type '<Self> (String, Self) -> Never'
1 | protocol Sequence {
2 | @available(*, unavailable, message: "Operator '+' cannot be used to append a String to a sequence of strings")
3 | public static func + (lhs: String, rhs: Self) -> Never}
| `- note: candidate has non-matching type '<Self> (String, Self) -> Never'
4 |
Swift.SIMD.+:2:20: note: candidate would match if 'Float80' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func + (a: Self, b: Self) -> Self}
| `- note: candidate would match if 'Float80' conformed to 'SIMD'
3 |
Swift.SIMD.+:3:22: note: candidate would match if 'Float80' conformed to 'SIMD'
1 | protocol SIMD {
2 | @available(*, unavailable, message: "integer vector types do not support checked arithmetic; use the wrapping operator '&+' instead")
3 | public static func + (a: Self, b: Self) -> Self}
| `- note: candidate would match if 'Float80' conformed to 'SIMD'
4 |
Swift.SIMD.+:3:22: note: candidate has non-matching type '<Self> (Self, Self.Scalar) -> Self'
1 | protocol SIMD {
2 | @available(*, unavailable, message: "integer vector types do not support checked arithmetic; use the wrapping operator '&+' instead")
3 | public static func + (a: Self, b: Self.Scalar) -> Self}
| `- note: candidate has non-matching type '<Self> (Self, Self.Scalar) -> Self'
4 |
Swift.SIMD.+:3:22: note: candidate has non-matching type '<Self> (Self.Scalar, Self) -> Self'
1 | protocol SIMD {
2 | @available(*, unavailable, message: "integer vector types do not support checked arithmetic; use the wrapping operator '&+' instead")
3 | public static func + (a: Self.Scalar, b: Self) -> Self}
| `- note: candidate has non-matching type '<Self> (Self.Scalar, Self) -> Self'
4 |
Swift.SIMD.+:2:20: note: candidate has non-matching type '<Self> (Self.Scalar, Self) -> Self'
1 | protocol SIMD {
2 | public static func + (a: Self.Scalar, b: Self) -> Self}
| `- note: candidate has non-matching type '<Self> (Self.Scalar, Self) -> Self'
3 |
Swift.SIMD.+:2:20: note: candidate has non-matching type '<Self> (Self, Self.Scalar) -> Self'
1 | protocol SIMD {
2 | public static func + (a: Self, b: Self.Scalar) -> Self}
| `- note: candidate has non-matching type '<Self> (Self, Self.Scalar) -> Self'
3 |
Foundation.AttributedString.+:2:20: note: candidate has non-matching type ' (AttributedString, some AttributedStringProtocol) -> AttributedString'
1 | struct AttributedString {
2 | public static func + (lhs: AttributedString, rhs: some AttributedStringProtocol) -> AttributedString}
| `- note: candidate has non-matching type ' (AttributedString, some AttributedStringProtocol) -> AttributedString'
3 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:14:1: error: type 'Float80' does not conform to protocol 'ExpressibleByIntegerLiteral'
12 |
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
| |- error: type 'Float80' does not conform to protocol 'ExpressibleByIntegerLiteral'
| `- note: add stubs for conformance
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
Swift.FloatingPoint.Exponent:2:16: note: protocol requires nested type 'Exponent'
1 | protocol FloatingPoint {
2 | associatedtype Exponent : SignedInteger}
| `- note: protocol requires nested type 'Exponent'
3 |
Swift.FloatingPoint.init:2:1: note: protocol requires initializer 'init(signOf:magnitudeOf:)' with type '(signOf: Float80, magnitudeOf: Float80)'
1 | protocol FloatingPoint {
2 | init(signOf: Self, magnitudeOf: Self)}
| `- note: protocol requires initializer 'init(signOf:magnitudeOf:)' with type '(signOf: Float80, magnitudeOf: Float80)'
3 |
Swift.FloatingPoint.init:2:1: note: protocol requires initializer 'init(_:)' with type 'Int'
1 | protocol FloatingPoint {
2 | init(_ value: Int)}
| `- note: protocol requires initializer 'init(_:)' with type 'Int'
3 |
Swift.FloatingPoint.init:2:1: note: protocol requires initializer 'init(_:)' with type 'Source'
1 | protocol FloatingPoint {
2 | init<Source>(_ value: Source) where Source : BinaryInteger}
| `- note: protocol requires initializer 'init(_:)' with type 'Source'
3 |
Swift.FloatingPoint.init:2:1: note: protocol requires initializer 'init(exactly:)' with type '(exactly: Source)'
1 | protocol FloatingPoint {
2 | init?<Source>(exactly value: Source) where Source : BinaryInteger}
| `- note: protocol requires initializer 'init(exactly:)' with type '(exactly: Source)'
3 |
Swift.FloatingPoint.radix:2:12: note: protocol requires property 'radix' with type 'Int'
1 | protocol FloatingPoint {
2 | static var radix: Int { get }}
| `- note: protocol requires property 'radix' with type 'Int'
3 |
Swift.FloatingPoint.nan:2:12: note: protocol requires property 'nan' with type 'Float80'
1 | protocol FloatingPoint {
2 | static var nan: Self { get }}
| `- note: protocol requires property 'nan' with type 'Float80'
3 |
Swift.FloatingPoint.signalingNaN:2:12: note: protocol requires property 'signalingNaN' with type 'Float80'
1 | protocol FloatingPoint {
2 | static var signalingNaN: Self { get }}
| `- note: protocol requires property 'signalingNaN' with type 'Float80'
3 |
Swift.FloatingPoint.infinity:2:12: note: protocol requires property 'infinity' with type 'Float80'
1 | protocol FloatingPoint {
2 | static var infinity: Self { get }}
| `- note: protocol requires property 'infinity' with type 'Float80'
3 |
Swift.FloatingPoint.greatestFiniteMagnitude:2:12: note: protocol requires property 'greatestFiniteMagnitude' with type 'Float80'
1 | protocol FloatingPoint {
2 | static var greatestFiniteMagnitude: Self { get }}
| `- note: protocol requires property 'greatestFiniteMagnitude' with type 'Float80'
3 |
Swift.FloatingPoint.pi:2:12: note: protocol requires property 'pi' with type 'Float80'
1 | protocol FloatingPoint {
2 | static var pi: Self { get }}
| `- note: protocol requires property 'pi' with type 'Float80'
3 |
Swift.FloatingPoint.ulp:2:5: note: protocol requires property 'ulp' with type 'Float80'
1 | protocol FloatingPoint {
2 | var ulp: Self { get }}
| `- note: protocol requires property 'ulp' with type 'Float80'
3 |
Swift.FloatingPoint.leastNormalMagnitude:2:12: note: protocol requires property 'leastNormalMagnitude' with type 'Float80'
1 | protocol FloatingPoint {
2 | static var leastNormalMagnitude: Self { get }}
| `- note: protocol requires property 'leastNormalMagnitude' with type 'Float80'
3 |
Swift.FloatingPoint.leastNonzeroMagnitude:2:12: note: protocol requires property 'leastNonzeroMagnitude' with type 'Float80'
1 | protocol FloatingPoint {
2 | static var leastNonzeroMagnitude: Self { get }}
| `- note: protocol requires property 'leastNonzeroMagnitude' with type 'Float80'
3 |
Swift.FloatingPoint.sign:2:5: note: protocol requires property 'sign' with type 'FloatingPointSign'
1 | protocol FloatingPoint {
2 | var sign: FloatingPointSign { get }}
| `- note: protocol requires property 'sign' with type 'FloatingPointSign'
3 |
Swift.FloatingPoint.significand:2:5: note: protocol requires property 'significand' with type 'Float80'
1 | protocol FloatingPoint {
2 | var significand: Self { get }}
| `- note: protocol requires property 'significand' with type 'Float80'
3 |
Swift.FloatingPoint./:2:13: note: protocol requires function '/' with type '(Float80, Float80) -> Float80'
1 | protocol FloatingPoint {
2 | static func / (lhs: Self, rhs: Self) -> Self}
| `- note: protocol requires function '/' with type '(Float80, Float80) -> Float80'
3 |
Swift.FloatingPoint.formRemainder:2:15: note: protocol requires function 'formRemainder(dividingBy:)' with type '(Float80) -> ()'
1 | protocol FloatingPoint {
2 | mutating func formRemainder(dividingBy other: Self)}
| `- note: protocol requires function 'formRemainder(dividingBy:)' with type '(Float80) -> ()'
3 |
Swift.FloatingPoint.formTruncatingRemainder:2:15: note: protocol requires function 'formTruncatingRemainder(dividingBy:)' with type '(Float80) -> ()'
1 | protocol FloatingPoint {
2 | mutating func formTruncatingRemainder(dividingBy other: Self)}
| `- note: protocol requires function 'formTruncatingRemainder(dividingBy:)' with type '(Float80) -> ()'
3 |
Swift.FloatingPoint.formSquareRoot:2:15: note: protocol requires function 'formSquareRoot()' with type '() -> ()'
1 | protocol FloatingPoint {
2 | mutating func formSquareRoot()}
| `- note: protocol requires function 'formSquareRoot()' with type '() -> ()'
3 |
Swift.FloatingPoint.addProduct:2:15: note: protocol requires function 'addProduct' with type '(Float80, Float80) -> ()'
1 | protocol FloatingPoint {
2 | mutating func addProduct(_ lhs: Self, _ rhs: Self)}
| `- note: protocol requires function 'addProduct' with type '(Float80, Float80) -> ()'
3 |
Swift.FloatingPoint.nextUp:2:5: note: protocol requires property 'nextUp' with type 'Float80'
1 | protocol FloatingPoint {
2 | var nextUp: Self { get }}
| `- note: protocol requires property 'nextUp' with type 'Float80'
3 |
Swift.FloatingPoint.isEqual:2:6: note: protocol requires function 'isEqual(to:)' with type '(Float80) -> Bool'
1 | protocol FloatingPoint {
2 | func isEqual(to other: Self) -> Bool}
| `- note: protocol requires function 'isEqual(to:)' with type '(Float80) -> Bool'
3 |
Swift.FloatingPoint.isLess:2:6: note: protocol requires function 'isLess(than:)' with type '(Float80) -> Bool'
1 | protocol FloatingPoint {
2 | func isLess(than other: Self) -> Bool}
| `- note: protocol requires function 'isLess(than:)' with type '(Float80) -> Bool'
3 |
Swift.FloatingPoint.isLessThanOrEqualTo:2:6: note: protocol requires function 'isLessThanOrEqualTo' with type '(Float80) -> Bool'
1 | protocol FloatingPoint {
2 | func isLessThanOrEqualTo(_ other: Self) -> Bool}
| `- note: protocol requires function 'isLessThanOrEqualTo' with type '(Float80) -> Bool'
3 |
Swift.FloatingPoint.isTotallyOrdered:2:6: note: protocol requires function 'isTotallyOrdered(belowOrEqualTo:)' with type '(Float80) -> Bool'
1 | protocol FloatingPoint {
2 | func isTotallyOrdered(belowOrEqualTo other: Self) -> Bool}
| `- note: protocol requires function 'isTotallyOrdered(belowOrEqualTo:)' with type '(Float80) -> Bool'
3 |
Swift.FloatingPoint.isNormal:2:5: note: protocol requires property 'isNormal' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isNormal: Bool { get }}
| `- note: protocol requires property 'isNormal' with type 'Bool'
3 |
Swift.FloatingPoint.isFinite:2:5: note: protocol requires property 'isFinite' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isFinite: Bool { get }}
| `- note: protocol requires property 'isFinite' with type 'Bool'
3 |
Swift.FloatingPoint.isZero:2:5: note: protocol requires property 'isZero' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isZero: Bool { get }}
| `- note: protocol requires property 'isZero' with type 'Bool'
3 |
Swift.FloatingPoint.isSubnormal:2:5: note: protocol requires property 'isSubnormal' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isSubnormal: Bool { get }}
| `- note: protocol requires property 'isSubnormal' with type 'Bool'
3 |
Swift.FloatingPoint.isInfinite:2:5: note: protocol requires property 'isInfinite' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isInfinite: Bool { get }}
| `- note: protocol requires property 'isInfinite' with type 'Bool'
3 |
Swift.FloatingPoint.isNaN:2:5: note: protocol requires property 'isNaN' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isNaN: Bool { get }}
| `- note: protocol requires property 'isNaN' with type 'Bool'
3 |
Swift.FloatingPoint.isSignalingNaN:2:5: note: protocol requires property 'isSignalingNaN' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isSignalingNaN: Bool { get }}
| `- note: protocol requires property 'isSignalingNaN' with type 'Bool'
3 |
Swift.FloatingPoint.isCanonical:2:5: note: protocol requires property 'isCanonical' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isCanonical: Bool { get }}
| `- note: protocol requires property 'isCanonical' with type 'Bool'
3 |
Swift.Strideable.distance:2:6: note: protocol requires function 'distance(to:)' with type '(Float80) -> Float80'
1 | protocol Strideable {
2 | func distance(to other: Self) -> Self.Stride}
| `- note: protocol requires function 'distance(to:)' with type '(Float80) -> Float80'
3 |
Swift.Strideable.advanced:2:6: note: protocol requires function 'advanced(by:)' with type '(Float80) -> Float80'
1 | protocol Strideable {
2 | func advanced(by n: Self.Stride) -> Self}
| `- note: protocol requires function 'advanced(by:)' with type '(Float80) -> Float80'
3 |
Swift.Numeric.magnitude:2:5: note: protocol requires property 'magnitude' with type 'Float80'
1 | protocol Numeric {
2 | var magnitude: Self.Magnitude { get }}
| `- note: protocol requires property 'magnitude' with type 'Float80'
3 |
Swift.AdditiveArithmetic.+:2:13: note: protocol requires function '+' with type '(Float80, Float80) -> Float80'
1 | protocol AdditiveArithmetic {
2 | static func + (lhs: Self, rhs: Self) -> Self}
| `- note: protocol requires function '+' with type '(Float80, Float80) -> Float80'
3 |
Swift.ExpressibleByIntegerLiteral.IntegerLiteralType:2:16: note: protocol requires nested type 'IntegerLiteralType'
1 | protocol ExpressibleByIntegerLiteral {
2 | associatedtype IntegerLiteralType : _ExpressibleByBuiltinIntegerLiteral}
| `- note: protocol requires nested type 'IntegerLiteralType'
3 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:14:11: error: 'Float80' is unavailable: Float80 is not available on target platform.
12 |
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:15:32: error: 'Float80' is unavailable: Float80 is not available on target platform.
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:15:44: error: 'Float80' is unavailable: Float80 is not available on target platform.
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:16:32: error: 'Float80' is unavailable: Float80 is not available on target platform.
14 | extension Float80 : FloatingPointGenericMath {
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:16:44: error: 'Float80' is unavailable: Float80 is not available on target platform.
14 | extension Float80 : FloatingPointGenericMath {
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:17:32: error: 'Float80' is unavailable: Float80 is not available on target platform.
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:17:44: error: 'Float80' is unavailable: Float80 is not available on target platform.
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:18:33: error: 'Float80' is unavailable: Float80 is not available on target platform.
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
20 | public static func _pow(_ x: Float80, _ y: Float80) -> Float80 { return pow(x, y) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:18:45: error: 'Float80' is unavailable: Float80 is not available on target platform.
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
20 | public static func _pow(_ x: Float80, _ y: Float80) -> Float80 { return pow(x, y) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:19:32: error: 'Float80' is unavailable: Float80 is not available on target platform.
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
20 | public static func _pow(_ x: Float80, _ y: Float80) -> Float80 { return pow(x, y) }
21 | // ...
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:19:44: error: 'Float80' is unavailable: Float80 is not available on target platform.
17 | public static func _cos(_ x: Float80) -> Float80 { return cos(x) }
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
20 | public static func _pow(_ x: Float80, _ y: Float80) -> Float80 { return pow(x, y) }
21 | // ...
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:20:32: error: 'Float80' is unavailable: Float80 is not available on target platform.
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
20 | public static func _pow(_ x: Float80, _ y: Float80) -> Float80 { return pow(x, y) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
21 | // ...
22 | }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:20:46: error: 'Float80' is unavailable: Float80 is not available on target platform.
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
20 | public static func _pow(_ x: Float80, _ y: Float80) -> Float80 { return pow(x, y) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
21 | // ...
22 | }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:20:58: error: 'Float80' is unavailable: Float80 is not available on target platform.
18 | public static func _acos(_ x: Float80) -> Float80 { return acos(x) }
19 | public static func _tan(_ x: Float80) -> Float80 { return tan(x) }
20 | public static func _pow(_ x: Float80, _ y: Float80) -> Float80 { return pow(x, y) }
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
21 | // ...
22 | }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:14:1: error: extension outside of file declaring struct 'Float80' prevents automatic synthesis of 'hash(into:)' for protocol 'Hashable'
12 |
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
| |- error: extension outside of file declaring struct 'Float80' prevents automatic synthesis of 'hash(into:)' for protocol 'Hashable'
| `- note: add stubs for conformance
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
Swift.Float80:2:23: note: type declared here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: type declared here
3 | public init()
4 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:14:1: error: type 'Float80' does not conform to protocol 'FloatingPoint'
12 |
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
| `- error: type 'Float80' does not conform to protocol 'FloatingPoint'
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/Matrix.swift:138:28: note: candidate would match if 'Float80' conformed to 'MatrixProtocol'
136 | /// element wise division
137 | // TODO: divide only the overlapping elements
138 | @inlinable static func / (lhs: Self, rhs: Self) -> Self {
| `- note: candidate would match if 'Float80' conformed to 'MatrixProtocol'
139 | var result = lhs.clone()
140 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/Quaternion.swift:118:22: note: candidate has non-matching type '<E> (Quaternion<E>, Quaternion<E>.Element) -> Quaternion<E>' (aka '<E> (Quaternion<E>, E) -> Quaternion<E>') [with Exponent = _]
116 | divide w, x, y, z by rhs
117 | */
118 | public static func / (lhs: Self, rhs: Element) -> Self {
| `- note: candidate has non-matching type '<E> (Quaternion<E>, Quaternion<E>.Element) -> Quaternion<E>' (aka '<E> (Quaternion<E>, E) -> Quaternion<E>') [with Exponent = _]
119 | var result = lhs
120 | result /= rhs
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/vector/VectorProtocol+Operators.swift:135:33: note: candidate has non-matching type '<Self> (Self, Self.Element) -> Self' [with Exponent = _]
133 | }
134 |
135 | @inlinable public static func / (lhs: Self, rhs: Element) -> Self {
| `- note: candidate has non-matching type '<Self> (Self, Self.Element) -> Self' [with Exponent = _]
136 | var result = lhs
137 | result /= rhs
:
145 | }
146 |
147 | @inlinable public static func / (lhs: Self, rhs: Self) -> Self {
| `- note: candidate would match if 'Float80' conformed to 'VectorProtocol'
148 | var result = lhs
149 | result /= rhs
Swift.Duration./:3:22: note: candidate has non-matching type '<T> (Duration, T) -> Duration' [with Exponent = _]
1 | struct Duration {
2 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
3 | public static func / <T>(lhs: Duration, rhs: T) -> Duration where T : BinaryInteger}
| `- note: candidate has non-matching type '<T> (Duration, T) -> Duration' [with Exponent = _]
4 |
Swift.SIMD./:2:20: note: candidate would match if 'Float80' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func / (a: Self, b: Self) -> Self}
| `- note: candidate would match if 'Float80' conformed to 'SIMD'
3 |
Swift.SIMD./:2:20: note: candidate would match if 'Float80' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func / (a: Self, b: Self) -> Self}
| `- note: candidate would match if 'Float80' conformed to 'SIMD'
3 |
Swift.SIMD./:2:20: note: candidate has non-matching type '<Self> (Self.Scalar, Self) -> Self' [with Exponent = _]
1 | protocol SIMD {
2 | public static func / (a: Self.Scalar, b: Self) -> Self}
| `- note: candidate has non-matching type '<Self> (Self.Scalar, Self) -> Self' [with Exponent = _]
3 |
Swift.SIMD./:2:20: note: candidate has non-matching type '<Self> (Self, Self.Scalar) -> Self' [with Exponent = _]
1 | protocol SIMD {
2 | public static func / (a: Self, b: Self.Scalar) -> Self}
| `- note: candidate has non-matching type '<Self> (Self, Self.Scalar) -> Self' [with Exponent = _]
3 |
Swift.SIMD./:2:20: note: candidate has non-matching type '<Self> (Self.Scalar, Self) -> Self' [with Exponent = _]
1 | protocol SIMD {
2 | public static func / (a: Self.Scalar, b: Self) -> Self}
| `- note: candidate has non-matching type '<Self> (Self.Scalar, Self) -> Self' [with Exponent = _]
3 |
Swift.SIMD./:2:20: note: candidate has non-matching type '<Self> (Self, Self.Scalar) -> Self' [with Exponent = _]
1 | protocol SIMD {
2 | public static func / (a: Self, b: Self.Scalar) -> Self}
| `- note: candidate has non-matching type '<Self> (Self, Self.Scalar) -> Self' [with Exponent = _]
3 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:14:1: error: type 'Float80' does not conform to protocol 'Strideable'
12 |
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
| `- error: type 'Float80' does not conform to protocol 'Strideable'
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:14:1: error: type 'Float80' does not conform to protocol 'Numeric'
12 |
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
| `- error: type 'Float80' does not conform to protocol 'Numeric'
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:14:1: error: type 'Float80' does not conform to protocol 'AdditiveArithmetic'
12 |
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
| `- error: type 'Float80' does not conform to protocol 'AdditiveArithmetic'
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/Color/Experimental/EColor.swift:16:35: note: candidate would match if 'Float80' conformed to 'EColor'
14 | }
15 |
16 | @inlinable public static func + (lhs: Self, rhs: Self) -> Self {
| `- note: candidate would match if 'Float80' conformed to 'EColor'
17 | var result = lhs
18 | result += rhs
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/Matrix.swift:104:28: note: candidate has non-matching type '<Self> (Self, Self.Element) -> Self'
102 |
103 | // TODO: need to add throws if dimensions don't match
104 | @inlinable static func + (lhs: Self, rhs: Element) -> Self {
| `- note: candidate has non-matching type '<Self> (Self, Self.Element) -> Self'
105 | var result = lhs.clone()
106 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/vector/VectorProtocol+Operators.swift:18:33: note: candidate would match if 'Float80' conformed to 'VectorProtocol'
16 | }
17 |
18 | @inlinable public static func + <O: VectorProtocol>(lhs: Self, rhs: O) -> Self where O.Dimension == Dimension, O.Element == Element {
| `- note: candidate would match if 'Float80' conformed to 'VectorProtocol'
19 | var result = lhs
20 | result += rhs
Swift.Strideable.+:2:20: note: candidate would match if 'Float80' conformed to '_Pointer'
1 | protocol Strideable {
2 | public static func + (lhs: Self, rhs: Self.Stride) -> Self}
| `- note: candidate would match if 'Float80' conformed to '_Pointer'
3 |
Swift.Strideable.+:2:20: note: candidate would match if 'Float80' conformed to '_Pointer'
1 | protocol Strideable {
2 | public static func + (lhs: Self.Stride, rhs: Self) -> Self}
| `- note: candidate would match if 'Float80' conformed to '_Pointer'
3 |
Swift.RangeReplaceableCollection.+:2:31: note: candidate would match if 'Float80' conformed to 'RangeReplaceableCollection'
1 | protocol RangeReplaceableCollection {
2 | @inlinable public static func + <Other>(lhs: Self, rhs: Other) -> Self where Other : Sequence, Self.Element == Other.Element}
| `- note: candidate would match if 'Float80' conformed to 'RangeReplaceableCollection'
3 |
Swift.RangeReplaceableCollection.+:2:31: note: candidate would match if 'Float80' conformed to 'RangeReplaceableCollection'
1 | protocol RangeReplaceableCollection {
2 | @inlinable public static func + <Other>(lhs: Other, rhs: Self) -> Self where Other : Sequence, Self.Element == Other.Element}
| `- note: candidate would match if 'Float80' conformed to 'RangeReplaceableCollection'
3 |
Swift.RangeReplaceableCollection.+:2:31: note: candidate would match if 'Float80' conformed to 'RangeReplaceableCollection'
1 | protocol RangeReplaceableCollection {
2 | @inlinable public static func + <Other>(lhs: Self, rhs: Other) -> Self where Other : RangeReplaceableCollection, Self.Element == Other.Element}
| `- note: candidate would match if 'Float80' conformed to 'RangeReplaceableCollection'
3 |
Swift.Sequence.+:3:22: note: candidate has non-matching type '<Self> (Self, String) -> Never'
1 | protocol Sequence {
2 | @available(*, unavailable, message: "Operator '+' cannot be used to append a String to a sequence of strings")
3 | public static func + (lhs: Self, rhs: String) -> Never}
| `- note: candidate has non-matching type '<Self> (Self, String) -> Never'
4 |
Swift.Sequence.+:3:22: note: candidate has non-matching type '<Self> (String, Self) -> Never'
1 | protocol Sequence {
2 | @available(*, unavailable, message: "Operator '+' cannot be used to append a String to a sequence of strings")
3 | public static func + (lhs: String, rhs: Self) -> Never}
| `- note: candidate has non-matching type '<Self> (String, Self) -> Never'
4 |
Swift.SIMD.+:2:20: note: candidate would match if 'Float80' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func + (a: Self, b: Self) -> Self}
| `- note: candidate would match if 'Float80' conformed to 'SIMD'
3 |
Swift.SIMD.+:3:22: note: candidate would match if 'Float80' conformed to 'SIMD'
1 | protocol SIMD {
2 | @available(*, unavailable, message: "integer vector types do not support checked arithmetic; use the wrapping operator '&+' instead")
3 | public static func + (a: Self, b: Self) -> Self}
| `- note: candidate would match if 'Float80' conformed to 'SIMD'
4 |
Swift.SIMD.+:3:22: note: candidate has non-matching type '<Self> (Self, Self.Scalar) -> Self'
1 | protocol SIMD {
2 | @available(*, unavailable, message: "integer vector types do not support checked arithmetic; use the wrapping operator '&+' instead")
3 | public static func + (a: Self, b: Self.Scalar) -> Self}
| `- note: candidate has non-matching type '<Self> (Self, Self.Scalar) -> Self'
4 |
Swift.SIMD.+:3:22: note: candidate has non-matching type '<Self> (Self.Scalar, Self) -> Self'
1 | protocol SIMD {
2 | @available(*, unavailable, message: "integer vector types do not support checked arithmetic; use the wrapping operator '&+' instead")
3 | public static func + (a: Self.Scalar, b: Self) -> Self}
| `- note: candidate has non-matching type '<Self> (Self.Scalar, Self) -> Self'
4 |
Swift.SIMD.+:2:20: note: candidate has non-matching type '<Self> (Self.Scalar, Self) -> Self'
1 | protocol SIMD {
2 | public static func + (a: Self.Scalar, b: Self) -> Self}
| `- note: candidate has non-matching type '<Self> (Self.Scalar, Self) -> Self'
3 |
Swift.SIMD.+:2:20: note: candidate has non-matching type '<Self> (Self, Self.Scalar) -> Self'
1 | protocol SIMD {
2 | public static func + (a: Self, b: Self.Scalar) -> Self}
| `- note: candidate has non-matching type '<Self> (Self, Self.Scalar) -> Self'
3 |
Foundation.AttributedString.+:2:20: note: candidate has non-matching type ' (AttributedString, some AttributedStringProtocol) -> AttributedString'
1 | struct AttributedString {
2 | public static func + (lhs: AttributedString, rhs: some AttributedStringProtocol) -> AttributedString}
| `- note: candidate has non-matching type ' (AttributedString, some AttributedStringProtocol) -> AttributedString'
3 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:14:1: error: type 'Float80' does not conform to protocol 'ExpressibleByIntegerLiteral'
12 |
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
| |- error: type 'Float80' does not conform to protocol 'ExpressibleByIntegerLiteral'
| `- note: add stubs for conformance
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
Swift.FloatingPoint.Exponent:2:16: note: protocol requires nested type 'Exponent'
1 | protocol FloatingPoint {
2 | associatedtype Exponent : SignedInteger}
| `- note: protocol requires nested type 'Exponent'
3 |
Swift.FloatingPoint.init:2:1: note: protocol requires initializer 'init(signOf:magnitudeOf:)' with type '(signOf: Float80, magnitudeOf: Float80)'
1 | protocol FloatingPoint {
2 | init(signOf: Self, magnitudeOf: Self)}
| `- note: protocol requires initializer 'init(signOf:magnitudeOf:)' with type '(signOf: Float80, magnitudeOf: Float80)'
3 |
Swift.FloatingPoint.init:2:1: note: protocol requires initializer 'init(_:)' with type 'Int'
1 | protocol FloatingPoint {
2 | init(_ value: Int)}
| `- note: protocol requires initializer 'init(_:)' with type 'Int'
3 |
Swift.FloatingPoint.init:2:1: note: protocol requires initializer 'init(_:)' with type 'Source'
1 | protocol FloatingPoint {
2 | init<Source>(_ value: Source) where Source : BinaryInteger}
| `- note: protocol requires initializer 'init(_:)' with type 'Source'
3 |
Swift.FloatingPoint.init:2:1: note: protocol requires initializer 'init(exactly:)' with type '(exactly: Source)'
1 | protocol FloatingPoint {
2 | init?<Source>(exactly value: Source) where Source : BinaryInteger}
| `- note: protocol requires initializer 'init(exactly:)' with type '(exactly: Source)'
3 |
Swift.FloatingPoint.radix:2:12: note: protocol requires property 'radix' with type 'Int'
1 | protocol FloatingPoint {
2 | static var radix: Int { get }}
| `- note: protocol requires property 'radix' with type 'Int'
3 |
Swift.FloatingPoint.nan:2:12: note: protocol requires property 'nan' with type 'Float80'
1 | protocol FloatingPoint {
2 | static var nan: Self { get }}
| `- note: protocol requires property 'nan' with type 'Float80'
3 |
Swift.FloatingPoint.signalingNaN:2:12: note: protocol requires property 'signalingNaN' with type 'Float80'
1 | protocol FloatingPoint {
2 | static var signalingNaN: Self { get }}
| `- note: protocol requires property 'signalingNaN' with type 'Float80'
3 |
Swift.FloatingPoint.infinity:2:12: note: protocol requires property 'infinity' with type 'Float80'
1 | protocol FloatingPoint {
2 | static var infinity: Self { get }}
| `- note: protocol requires property 'infinity' with type 'Float80'
3 |
Swift.FloatingPoint.greatestFiniteMagnitude:2:12: note: protocol requires property 'greatestFiniteMagnitude' with type 'Float80'
1 | protocol FloatingPoint {
2 | static var greatestFiniteMagnitude: Self { get }}
| `- note: protocol requires property 'greatestFiniteMagnitude' with type 'Float80'
3 |
Swift.FloatingPoint.pi:2:12: note: protocol requires property 'pi' with type 'Float80'
1 | protocol FloatingPoint {
2 | static var pi: Self { get }}
| `- note: protocol requires property 'pi' with type 'Float80'
3 |
Swift.FloatingPoint.ulp:2:5: note: protocol requires property 'ulp' with type 'Float80'
1 | protocol FloatingPoint {
2 | var ulp: Self { get }}
| `- note: protocol requires property 'ulp' with type 'Float80'
3 |
Swift.FloatingPoint.leastNormalMagnitude:2:12: note: protocol requires property 'leastNormalMagnitude' with type 'Float80'
1 | protocol FloatingPoint {
2 | static var leastNormalMagnitude: Self { get }}
| `- note: protocol requires property 'leastNormalMagnitude' with type 'Float80'
3 |
Swift.FloatingPoint.leastNonzeroMagnitude:2:12: note: protocol requires property 'leastNonzeroMagnitude' with type 'Float80'
1 | protocol FloatingPoint {
2 | static var leastNonzeroMagnitude: Self { get }}
| `- note: protocol requires property 'leastNonzeroMagnitude' with type 'Float80'
3 |
Swift.FloatingPoint.sign:2:5: note: protocol requires property 'sign' with type 'FloatingPointSign'
1 | protocol FloatingPoint {
2 | var sign: FloatingPointSign { get }}
| `- note: protocol requires property 'sign' with type 'FloatingPointSign'
3 |
Swift.FloatingPoint.significand:2:5: note: protocol requires property 'significand' with type 'Float80'
1 | protocol FloatingPoint {
2 | var significand: Self { get }}
| `- note: protocol requires property 'significand' with type 'Float80'
3 |
Swift.FloatingPoint./:2:13: note: protocol requires function '/' with type '(Float80, Float80) -> Float80'
1 | protocol FloatingPoint {
2 | static func / (lhs: Self, rhs: Self) -> Self}
| `- note: protocol requires function '/' with type '(Float80, Float80) -> Float80'
3 |
Swift.FloatingPoint.formRemainder:2:15: note: protocol requires function 'formRemainder(dividingBy:)' with type '(Float80) -> ()'
1 | protocol FloatingPoint {
2 | mutating func formRemainder(dividingBy other: Self)}
| `- note: protocol requires function 'formRemainder(dividingBy:)' with type '(Float80) -> ()'
3 |
Swift.FloatingPoint.formTruncatingRemainder:2:15: note: protocol requires function 'formTruncatingRemainder(dividingBy:)' with type '(Float80) -> ()'
1 | protocol FloatingPoint {
2 | mutating func formTruncatingRemainder(dividingBy other: Self)}
| `- note: protocol requires function 'formTruncatingRemainder(dividingBy:)' with type '(Float80) -> ()'
3 |
Swift.FloatingPoint.formSquareRoot:2:15: note: protocol requires function 'formSquareRoot()' with type '() -> ()'
1 | protocol FloatingPoint {
2 | mutating func formSquareRoot()}
| `- note: protocol requires function 'formSquareRoot()' with type '() -> ()'
3 |
Swift.FloatingPoint.addProduct:2:15: note: protocol requires function 'addProduct' with type '(Float80, Float80) -> ()'
1 | protocol FloatingPoint {
2 | mutating func addProduct(_ lhs: Self, _ rhs: Self)}
| `- note: protocol requires function 'addProduct' with type '(Float80, Float80) -> ()'
3 |
Swift.FloatingPoint.nextUp:2:5: note: protocol requires property 'nextUp' with type 'Float80'
1 | protocol FloatingPoint {
2 | var nextUp: Self { get }}
| `- note: protocol requires property 'nextUp' with type 'Float80'
3 |
Swift.FloatingPoint.isEqual:2:6: note: protocol requires function 'isEqual(to:)' with type '(Float80) -> Bool'
1 | protocol FloatingPoint {
2 | func isEqual(to other: Self) -> Bool}
| `- note: protocol requires function 'isEqual(to:)' with type '(Float80) -> Bool'
3 |
Swift.FloatingPoint.isLess:2:6: note: protocol requires function 'isLess(than:)' with type '(Float80) -> Bool'
1 | protocol FloatingPoint {
2 | func isLess(than other: Self) -> Bool}
| `- note: protocol requires function 'isLess(than:)' with type '(Float80) -> Bool'
3 |
Swift.FloatingPoint.isLessThanOrEqualTo:2:6: note: protocol requires function 'isLessThanOrEqualTo' with type '(Float80) -> Bool'
1 | protocol FloatingPoint {
2 | func isLessThanOrEqualTo(_ other: Self) -> Bool}
| `- note: protocol requires function 'isLessThanOrEqualTo' with type '(Float80) -> Bool'
3 |
Swift.FloatingPoint.isTotallyOrdered:2:6: note: protocol requires function 'isTotallyOrdered(belowOrEqualTo:)' with type '(Float80) -> Bool'
1 | protocol FloatingPoint {
2 | func isTotallyOrdered(belowOrEqualTo other: Self) -> Bool}
| `- note: protocol requires function 'isTotallyOrdered(belowOrEqualTo:)' with type '(Float80) -> Bool'
3 |
Swift.FloatingPoint.isNormal:2:5: note: protocol requires property 'isNormal' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isNormal: Bool { get }}
| `- note: protocol requires property 'isNormal' with type 'Bool'
3 |
Swift.FloatingPoint.isFinite:2:5: note: protocol requires property 'isFinite' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isFinite: Bool { get }}
| `- note: protocol requires property 'isFinite' with type 'Bool'
3 |
Swift.FloatingPoint.isZero:2:5: note: protocol requires property 'isZero' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isZero: Bool { get }}
| `- note: protocol requires property 'isZero' with type 'Bool'
3 |
Swift.FloatingPoint.isSubnormal:2:5: note: protocol requires property 'isSubnormal' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isSubnormal: Bool { get }}
| `- note: protocol requires property 'isSubnormal' with type 'Bool'
3 |
Swift.FloatingPoint.isInfinite:2:5: note: protocol requires property 'isInfinite' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isInfinite: Bool { get }}
| `- note: protocol requires property 'isInfinite' with type 'Bool'
3 |
Swift.FloatingPoint.isNaN:2:5: note: protocol requires property 'isNaN' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isNaN: Bool { get }}
| `- note: protocol requires property 'isNaN' with type 'Bool'
3 |
Swift.FloatingPoint.isSignalingNaN:2:5: note: protocol requires property 'isSignalingNaN' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isSignalingNaN: Bool { get }}
| `- note: protocol requires property 'isSignalingNaN' with type 'Bool'
3 |
Swift.FloatingPoint.isCanonical:2:5: note: protocol requires property 'isCanonical' with type 'Bool'
1 | protocol FloatingPoint {
2 | var isCanonical: Bool { get }}
| `- note: protocol requires property 'isCanonical' with type 'Bool'
3 |
Swift.Strideable.distance:2:6: note: protocol requires function 'distance(to:)' with type '(Float80) -> Float80'
1 | protocol Strideable {
2 | func distance(to other: Self) -> Self.Stride}
| `- note: protocol requires function 'distance(to:)' with type '(Float80) -> Float80'
3 |
Swift.Strideable.advanced:2:6: note: protocol requires function 'advanced(by:)' with type '(Float80) -> Float80'
1 | protocol Strideable {
2 | func advanced(by n: Self.Stride) -> Self}
| `- note: protocol requires function 'advanced(by:)' with type '(Float80) -> Float80'
3 |
Swift.Numeric.magnitude:2:5: note: protocol requires property 'magnitude' with type 'Float80'
1 | protocol Numeric {
2 | var magnitude: Self.Magnitude { get }}
| `- note: protocol requires property 'magnitude' with type 'Float80'
3 |
Swift.AdditiveArithmetic.+:2:13: note: protocol requires function '+' with type '(Float80, Float80) -> Float80'
1 | protocol AdditiveArithmetic {
2 | static func + (lhs: Self, rhs: Self) -> Self}
| `- note: protocol requires function '+' with type '(Float80, Float80) -> Float80'
3 |
Swift.ExpressibleByIntegerLiteral.IntegerLiteralType:2:16: note: protocol requires nested type 'IntegerLiteralType'
1 | protocol ExpressibleByIntegerLiteral {
2 | associatedtype IntegerLiteralType : _ExpressibleByBuiltinIntegerLiteral}
| `- note: protocol requires nested type 'IntegerLiteralType'
3 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-gfx-math/Sources/GfxMath/FloatingPointGenericMath.swift:14:11: error: 'Float80' is unavailable: Float80 is not available on target platform.
12 |
13 | #if os(Linux) || os(macOS)
14 | extension Float80 : FloatingPointGenericMath {
| `- error: 'Float80' is unavailable: Float80 is not available on target platform.
15 | public static func _log(_ x: Float80) -> Float80 { return log(x) }
16 | public static func _sin(_ x: Float80) -> Float80 { return sin(x) }
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Float80 is not available on target platform.")
2 | @frozen public struct Float80 {
| `- note: 'Float80' has been explicitly marked unavailable here
3 | public init()
4 | }
[219/526] Compiling CXCompatible Dispatch.swift
[220/526] Emitting module CXCompatible
[221/526] Compiling CXCompatible Foundation.swift
[222/526] Compiling CXCompatible @_exported.swift
[223/526] Compiling CombineX BreakPoint.swift
[224/526] Compiling CombineX Buffer.swift
[225/526] Compiling CombineX CollectByTime.swift
[226/526] Compiling CombineX CombineLatest.swift
[227/526] Compiling CombineX Debounce.swift
[228/526] Compiling CombineX HandleEvents.swift
[229/526] Compiling CombineX SwitchToLatest.swift
[230/526] Compiling CombineX Throttle.swift
[231/526] Compiling CombineX Timeout.swift
[232/526] Compiling CombineX Scheduler.swift
[233/526] Compiling CombineX SchedulerTimeIntervalConvertible.swift
[234/526] Compiling CombineX ImmediateScheduler.swift
[235/526] Compiling CombineX DropUntilOutput.swift
[236/526] Compiling CombineX Empty.swift
[237/526] Compiling CombineX Fail.swift
[238/526] Compiling CombineX FlatMap.swift
[239/526] Compiling CombineX Just.swift
[240/526] Compiling CombineX MapError.swift
[241/526] Compiling CombineX MeasureInterval.swift
[242/526] Compiling CombineX Merge.swift
[243/526] Compiling CombineX Optional.Publisher.swift
[244/526] Compiling CombineX Output.swift
[245/526] Compiling CombineX PrefixUntilOutput.swift
[246/526] Compiling CombineX Print.swift
[247/526] Compiling CombineX Subscribers.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[248/526] Compiling CombineX Subscription.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[249/526] Compiling CombineX EmptySubscription.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[250/526] Compiling CombineX Subscriptions.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[251/526] Compiling Vulkan PipelineColorBlendAttachmentState.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[252/526] Compiling Vulkan PipelineColorBlendStateCreateFlags.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[253/526] Compiling Vulkan PipelineColorBlendStateCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[254/526] Compiling Vulkan PipelineCreateFlags.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[255/526] Compiling Vulkan PipelineDepthStencilStateCreateFlags.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[256/526] Compiling Vulkan PipelineDepthStencilStateCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[257/526] Compiling Vulkan PipelineDynamicStateCreateFlags.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[258/526] Compiling Vulkan PipelineDynamicStateCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[259/526] Compiling Vulkan PipelineInputAssemblyStateCreateFlags.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[260/526] Compiling Vulkan PipelineInputAssemblyStateCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[261/526] Compiling Vulkan PipelineLayoutCreateFlags.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[262/526] Compiling Vulkan PipelineLayoutCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[263/526] Compiling Vulkan PipelineMultisampleStateCreateFlags.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[264/526] Compiling Vulkan PipelineMultisampleStateCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[265/526] Compiling Vulkan PipelineRasterizationStateCreateFlags.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[266/526] Compiling Vulkan PipelineRasterizationStateCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[279/526] Compiling CombineX Subject.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[280/526] Compiling CombineX CurrentValueSubject.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[281/526] Compiling CombineX PassthroughSubject.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[282/526] Compiling CombineX Subscriber.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[283/526] Compiling CombineX Assign.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[284/526] Compiling CombineX Completion.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[285/526] Compiling CombineX Demand.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[286/526] Compiling CombineX Sink.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[371/526] Compiling Vulkan CommandBufferBeginInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[372/526] Compiling Vulkan _oldRenderPassBeginInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[373/526] Compiling Vulkan Buffer.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[374/526] Compiling Vulkan BufferView.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[375/526] Compiling Vulkan CommandBuffer.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[376/526] Compiling Vulkan CommandPool.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[377/526] Compiling Vulkan FenceCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[378/526] Compiling Vulkan ShaderModuleCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[379/526] Compiling Vulkan _oldPipelineColorBlendStateCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[380/526] Compiling Vulkan _oldPipelineDynamicStateCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[381/526] Compiling Vulkan _oldPipelineInputAssemblyStateCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[382/526] Compiling Vulkan _oldPipelineMultisampleStateCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[383/526] Compiling Vulkan _oldPipelineRasterizationStateCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[384/526] Compiling Vulkan _oldPipelineShaderStageCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[385/526] Compiling Vulkan _oldPipelineVertexInputStateCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[386/526] Compiling Vulkan _oldPipelineViewportStateCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[387/526] Compiling Vulkan _old_GraphicsPipelineCreateInfo.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[388/526] Compiling Vulkan Debugging.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[389/526] Compiling Vulkan DescriptorPool.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
[390/526] Compiling Vulkan DescriptorSet.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/SwiftVulkan/Sources/Vulkan/BeginInfo/CommandBufferBeginInfo.swift:1:8: error: could not build Objective-C module 'CVulkan'
1 | import CVulkan
| `- error: could not build Objective-C module 'CVulkan'
2 |
3 | public struct CommandBufferBeginInfo: WrapperStruct {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/CVulkan/Sources/CVulkan/shim.h:1:10: error: 'vulkan/vulkan.h' file not found
1 | #include <vulkan/vulkan.h>
| `- error: 'vulkan/vulkan.h' file not found
2 |
3 | static uint32_t vkMakeApiVersion(uint32_t v1, uint32_t v2, uint32_t v3) {
[391/526] Emitting module ColorizeSwift
warning: 'spi-builder-workspace': Invalid Resource 'Resources': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'Resources': File not found.
warning: failed to retrieve search paths with pkg-config; maybe pkg-config is not installed
warning: you may be able to install sdl2 using your system-packager:
brew install sdl2
warning: you may be able to install sdl2 using your system-packager:
brew install sdl2
BUILD FAILURE 6.3 macosSpm