The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build Glider, reference 2.0.6 (c93275), with Swift 6.2 (beta) for Linux on 21 Jun 2025 02:34:48 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

   |                                     `- error: cannot find 'kCFBundleNameKey' in scope
23 |     }
24 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/Bundle+Extension.swift:27:37: error: cannot find 'kCFBundleVersionKey' in scope
25 |     /// Build version number.
26 |     static var buildVersionNumber: String {
27 |         Bundle.main.infoDictionary?[kCFBundleVersionKey as String] as? String ?? ""
   |                                     `- error: cannot find 'kCFBundleVersionKey' in scope
28 |     }
29 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/Bundle+Extension.swift:37:37: error: cannot find 'kCFBundleIdentifierKey' in scope
35 |     /// Bundle ID.
36 |     static var bundleID: String {
37 |         Bundle.main.infoDictionary?[kCFBundleIdentifierKey as String] as? String ?? ""
   |                                     `- error: cannot find 'kCFBundleIdentifierKey' in scope
38 |     }
39 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/UIDevice+Extension.swift:151:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
149 | // MARK: - CGSize
150 |
151 | extension CGSize: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
152 |
153 |     public var description: String {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:94:29: error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
 92 |
 93 |         case .measure(let unit, let options, let style):
 94 |             let formatter = MeasurementFormatter()
    |                             `- error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
 95 |             formatter.unitOptions = options
 96 |             formatter.unitStyle = style
Foundation.MeasurementFormatter:2:12: note: 'MeasurementFormatter' has been explicitly marked unavailable here
 1 | @available(*, unavailable, message: "Not supported in swift-corelibs-foundation")
 2 | open class MeasurementFormatter : Formatter, NSSecureCoding {
   |            `- note: 'MeasurementFormatter' has been explicitly marked unavailable here
 3 |     public struct UnitOptions : OptionSet, Sendable {
 4 |         public private(set) var rawValue: UInt { get }
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:107:40: error: incorrect argument label in call (have 'from:', expected 'for:')
105 |             formatter.countStyle = style
106 |             if #available(iOS 13.0, macOS 10.15, tvOS 13, *) {
107 |                 return formatter.string(from: .init(value: value.doubleValue, unit: .bytes)).removeGroupingSeparatorAndUseDotDecimal()
    |                                        `- error: incorrect argument label in call (have 'from:', expected 'for:')
108 |             } else {
109 |                 // Fallback on earlier versions
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:107:48: error: 'Any' cannot be constructed because it has no accessible initializers
105 |             formatter.countStyle = style
106 |             if #available(iOS 13.0, macOS 10.15, tvOS 13, *) {
107 |                 return formatter.string(from: .init(value: value.doubleValue, unit: .bytes)).removeGroupingSeparatorAndUseDotDecimal()
    |                                                `- error: 'Any' cannot be constructed because it has no accessible initializers
108 |             } else {
109 |                 // Fallback on earlier versions
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:107:86: error: cannot infer contextual base in reference to member 'bytes'
105 |             formatter.countStyle = style
106 |             if #available(iOS 13.0, macOS 10.15, tvOS 13, *) {
107 |                 return formatter.string(from: .init(value: value.doubleValue, unit: .bytes)).removeGroupingSeparatorAndUseDotDecimal()
    |                                                                                      `- error: cannot infer contextual base in reference to member 'bytes'
108 |             } else {
109 |                 // Fallback on earlier versions
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:107:92: error: value of optional type 'String?' must be unwrapped to refer to member 'removeGroupingSeparatorAndUseDotDecimal' of wrapped base type 'String'
105 |             formatter.countStyle = style
106 |             if #available(iOS 13.0, macOS 10.15, tvOS 13, *) {
107 |                 return formatter.string(from: .init(value: value.doubleValue, unit: .bytes)).removeGroupingSeparatorAndUseDotDecimal()
    |                                                                                            |- error: value of optional type 'String?' must be unwrapped to refer to member 'removeGroupingSeparatorAndUseDotDecimal' of wrapped base type 'String'
    |                                                                                            |- note: chain the optional using '?' to access member 'removeGroupingSeparatorAndUseDotDecimal' only for non-'nil' base values
    |                                                                                            `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
108 |             } else {
109 |                 // Fallback on earlier versions
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Styles.swift:54:39: error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
 52 |     case fixed(precision: Int)
 53 |     case formatter(formatter: Formatter)
 54 |     case measure(unit: Unit, options: MeasurementFormatter.UnitOptions, style: Formatter.UnitStyle = .short)
    |                                       `- error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
 55 |     case currency(symbol: String?, usesGroupingSeparator: Bool = true)
 56 |     case bytes(style: ByteCountFormatter.CountStyle)
Foundation.MeasurementFormatter:2:12: note: 'MeasurementFormatter' has been explicitly marked unavailable here
 1 | @available(*, unavailable, message: "Not supported in swift-corelibs-foundation")
 2 | open class MeasurementFormatter : Formatter, NSSecureCoding {
   |            `- note: 'MeasurementFormatter' has been explicitly marked unavailable here
 3 |     public struct UnitOptions : OptionSet, Sendable {
 4 |         public private(set) var rawValue: UInt { get }
[48/97] Compiling Glider Level.swift
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/Bundle+Extension.swift:22:37: error: cannot find 'kCFBundleNameKey' in scope
20 |     /// Name of the main application.
21 |     static var appName: String {
22 |         Bundle.main.infoDictionary?[kCFBundleNameKey as String] as? String ?? ""
   |                                     `- error: cannot find 'kCFBundleNameKey' in scope
23 |     }
24 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/Bundle+Extension.swift:27:37: error: cannot find 'kCFBundleVersionKey' in scope
25 |     /// Build version number.
26 |     static var buildVersionNumber: String {
27 |         Bundle.main.infoDictionary?[kCFBundleVersionKey as String] as? String ?? ""
   |                                     `- error: cannot find 'kCFBundleVersionKey' in scope
28 |     }
29 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/Bundle+Extension.swift:37:37: error: cannot find 'kCFBundleIdentifierKey' in scope
35 |     /// Bundle ID.
36 |     static var bundleID: String {
37 |         Bundle.main.infoDictionary?[kCFBundleIdentifierKey as String] as? String ?? ""
   |                                     `- error: cannot find 'kCFBundleIdentifierKey' in scope
38 |     }
39 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/UIDevice+Extension.swift:151:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
149 | // MARK: - CGSize
150 |
151 | extension CGSize: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
152 |
153 |     public var description: String {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:94:29: error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
 92 |
 93 |         case .measure(let unit, let options, let style):
 94 |             let formatter = MeasurementFormatter()
    |                             `- error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
 95 |             formatter.unitOptions = options
 96 |             formatter.unitStyle = style
Foundation.MeasurementFormatter:2:12: note: 'MeasurementFormatter' has been explicitly marked unavailable here
 1 | @available(*, unavailable, message: "Not supported in swift-corelibs-foundation")
 2 | open class MeasurementFormatter : Formatter, NSSecureCoding {
   |            `- note: 'MeasurementFormatter' has been explicitly marked unavailable here
 3 |     public struct UnitOptions : OptionSet, Sendable {
 4 |         public private(set) var rawValue: UInt { get }
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:107:40: error: incorrect argument label in call (have 'from:', expected 'for:')
105 |             formatter.countStyle = style
106 |             if #available(iOS 13.0, macOS 10.15, tvOS 13, *) {
107 |                 return formatter.string(from: .init(value: value.doubleValue, unit: .bytes)).removeGroupingSeparatorAndUseDotDecimal()
    |                                        `- error: incorrect argument label in call (have 'from:', expected 'for:')
108 |             } else {
109 |                 // Fallback on earlier versions
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:107:48: error: 'Any' cannot be constructed because it has no accessible initializers
105 |             formatter.countStyle = style
106 |             if #available(iOS 13.0, macOS 10.15, tvOS 13, *) {
107 |                 return formatter.string(from: .init(value: value.doubleValue, unit: .bytes)).removeGroupingSeparatorAndUseDotDecimal()
    |                                                `- error: 'Any' cannot be constructed because it has no accessible initializers
108 |             } else {
109 |                 // Fallback on earlier versions
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:107:86: error: cannot infer contextual base in reference to member 'bytes'
105 |             formatter.countStyle = style
106 |             if #available(iOS 13.0, macOS 10.15, tvOS 13, *) {
107 |                 return formatter.string(from: .init(value: value.doubleValue, unit: .bytes)).removeGroupingSeparatorAndUseDotDecimal()
    |                                                                                      `- error: cannot infer contextual base in reference to member 'bytes'
108 |             } else {
109 |                 // Fallback on earlier versions
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:107:92: error: value of optional type 'String?' must be unwrapped to refer to member 'removeGroupingSeparatorAndUseDotDecimal' of wrapped base type 'String'
105 |             formatter.countStyle = style
106 |             if #available(iOS 13.0, macOS 10.15, tvOS 13, *) {
107 |                 return formatter.string(from: .init(value: value.doubleValue, unit: .bytes)).removeGroupingSeparatorAndUseDotDecimal()
    |                                                                                            |- error: value of optional type 'String?' must be unwrapped to refer to member 'removeGroupingSeparatorAndUseDotDecimal' of wrapped base type 'String'
    |                                                                                            |- note: chain the optional using '?' to access member 'removeGroupingSeparatorAndUseDotDecimal' only for non-'nil' base values
    |                                                                                            `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
108 |             } else {
109 |                 // Fallback on earlier versions
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Styles.swift:54:39: error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
 52 |     case fixed(precision: Int)
 53 |     case formatter(formatter: Formatter)
 54 |     case measure(unit: Unit, options: MeasurementFormatter.UnitOptions, style: Formatter.UnitStyle = .short)
    |                                       `- error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
 55 |     case currency(symbol: String?, usesGroupingSeparator: Bool = true)
 56 |     case bytes(style: ByteCountFormatter.CountStyle)
Foundation.MeasurementFormatter:2:12: note: 'MeasurementFormatter' has been explicitly marked unavailable here
 1 | @available(*, unavailable, message: "Not supported in swift-corelibs-foundation")
 2 | open class MeasurementFormatter : Formatter, NSSecureCoding {
   |            `- note: 'MeasurementFormatter' has been explicitly marked unavailable here
 3 |     public struct UnitOptions : OptionSet, Sendable {
 4 |         public private(set) var rawValue: UInt { get }
[49/97] Compiling Glider LogInterpolation+Formatters.swift
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/Bundle+Extension.swift:22:37: error: cannot find 'kCFBundleNameKey' in scope
20 |     /// Name of the main application.
21 |     static var appName: String {
22 |         Bundle.main.infoDictionary?[kCFBundleNameKey as String] as? String ?? ""
   |                                     `- error: cannot find 'kCFBundleNameKey' in scope
23 |     }
24 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/Bundle+Extension.swift:27:37: error: cannot find 'kCFBundleVersionKey' in scope
25 |     /// Build version number.
26 |     static var buildVersionNumber: String {
27 |         Bundle.main.infoDictionary?[kCFBundleVersionKey as String] as? String ?? ""
   |                                     `- error: cannot find 'kCFBundleVersionKey' in scope
28 |     }
29 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/Bundle+Extension.swift:37:37: error: cannot find 'kCFBundleIdentifierKey' in scope
35 |     /// Bundle ID.
36 |     static var bundleID: String {
37 |         Bundle.main.infoDictionary?[kCFBundleIdentifierKey as String] as? String ?? ""
   |                                     `- error: cannot find 'kCFBundleIdentifierKey' in scope
38 |     }
39 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/UIDevice+Extension.swift:151:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
149 | // MARK: - CGSize
150 |
151 | extension CGSize: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
152 |
153 |     public var description: String {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:94:29: error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
 92 |
 93 |         case .measure(let unit, let options, let style):
 94 |             let formatter = MeasurementFormatter()
    |                             `- error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
 95 |             formatter.unitOptions = options
 96 |             formatter.unitStyle = style
Foundation.MeasurementFormatter:2:12: note: 'MeasurementFormatter' has been explicitly marked unavailable here
 1 | @available(*, unavailable, message: "Not supported in swift-corelibs-foundation")
 2 | open class MeasurementFormatter : Formatter, NSSecureCoding {
   |            `- note: 'MeasurementFormatter' has been explicitly marked unavailable here
 3 |     public struct UnitOptions : OptionSet, Sendable {
 4 |         public private(set) var rawValue: UInt { get }
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:107:40: error: incorrect argument label in call (have 'from:', expected 'for:')
105 |             formatter.countStyle = style
106 |             if #available(iOS 13.0, macOS 10.15, tvOS 13, *) {
107 |                 return formatter.string(from: .init(value: value.doubleValue, unit: .bytes)).removeGroupingSeparatorAndUseDotDecimal()
    |                                        `- error: incorrect argument label in call (have 'from:', expected 'for:')
108 |             } else {
109 |                 // Fallback on earlier versions
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:107:48: error: 'Any' cannot be constructed because it has no accessible initializers
105 |             formatter.countStyle = style
106 |             if #available(iOS 13.0, macOS 10.15, tvOS 13, *) {
107 |                 return formatter.string(from: .init(value: value.doubleValue, unit: .bytes)).removeGroupingSeparatorAndUseDotDecimal()
    |                                                `- error: 'Any' cannot be constructed because it has no accessible initializers
108 |             } else {
109 |                 // Fallback on earlier versions
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:107:86: error: cannot infer contextual base in reference to member 'bytes'
105 |             formatter.countStyle = style
106 |             if #available(iOS 13.0, macOS 10.15, tvOS 13, *) {
107 |                 return formatter.string(from: .init(value: value.doubleValue, unit: .bytes)).removeGroupingSeparatorAndUseDotDecimal()
    |                                                                                      `- error: cannot infer contextual base in reference to member 'bytes'
108 |             } else {
109 |                 // Fallback on earlier versions
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:107:92: error: value of optional type 'String?' must be unwrapped to refer to member 'removeGroupingSeparatorAndUseDotDecimal' of wrapped base type 'String'
105 |             formatter.countStyle = style
106 |             if #available(iOS 13.0, macOS 10.15, tvOS 13, *) {
107 |                 return formatter.string(from: .init(value: value.doubleValue, unit: .bytes)).removeGroupingSeparatorAndUseDotDecimal()
    |                                                                                            |- error: value of optional type 'String?' must be unwrapped to refer to member 'removeGroupingSeparatorAndUseDotDecimal' of wrapped base type 'String'
    |                                                                                            |- note: chain the optional using '?' to access member 'removeGroupingSeparatorAndUseDotDecimal' only for non-'nil' base values
    |                                                                                            `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
108 |             } else {
109 |                 // Fallback on earlier versions
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Styles.swift:54:39: error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
 52 |     case fixed(precision: Int)
 53 |     case formatter(formatter: Formatter)
 54 |     case measure(unit: Unit, options: MeasurementFormatter.UnitOptions, style: Formatter.UnitStyle = .short)
    |                                       `- error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
 55 |     case currency(symbol: String?, usesGroupingSeparator: Bool = true)
 56 |     case bytes(style: ByteCountFormatter.CountStyle)
Foundation.MeasurementFormatter:2:12: note: 'MeasurementFormatter' has been explicitly marked unavailable here
 1 | @available(*, unavailable, message: "Not supported in swift-corelibs-foundation")
 2 | open class MeasurementFormatter : Formatter, NSSecureCoding {
   |            `- note: 'MeasurementFormatter' has been explicitly marked unavailable here
 3 |     public struct UnitOptions : OptionSet, Sendable {
 4 |         public private(set) var rawValue: UInt { get }
[50/97] Compiling Glider LogInterpolation+Styles.swift
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/Bundle+Extension.swift:22:37: error: cannot find 'kCFBundleNameKey' in scope
20 |     /// Name of the main application.
21 |     static var appName: String {
22 |         Bundle.main.infoDictionary?[kCFBundleNameKey as String] as? String ?? ""
   |                                     `- error: cannot find 'kCFBundleNameKey' in scope
23 |     }
24 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/Bundle+Extension.swift:27:37: error: cannot find 'kCFBundleVersionKey' in scope
25 |     /// Build version number.
26 |     static var buildVersionNumber: String {
27 |         Bundle.main.infoDictionary?[kCFBundleVersionKey as String] as? String ?? ""
   |                                     `- error: cannot find 'kCFBundleVersionKey' in scope
28 |     }
29 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/Bundle+Extension.swift:37:37: error: cannot find 'kCFBundleIdentifierKey' in scope
35 |     /// Bundle ID.
36 |     static var bundleID: String {
37 |         Bundle.main.infoDictionary?[kCFBundleIdentifierKey as String] as? String ?? ""
   |                                     `- error: cannot find 'kCFBundleIdentifierKey' in scope
38 |     }
39 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/UIDevice+Extension.swift:151:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
149 | // MARK: - CGSize
150 |
151 | extension CGSize: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
152 |
153 |     public var description: String {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:94:29: error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
 92 |
 93 |         case .measure(let unit, let options, let style):
 94 |             let formatter = MeasurementFormatter()
    |                             `- error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
 95 |             formatter.unitOptions = options
 96 |             formatter.unitStyle = style
Foundation.MeasurementFormatter:2:12: note: 'MeasurementFormatter' has been explicitly marked unavailable here
 1 | @available(*, unavailable, message: "Not supported in swift-corelibs-foundation")
 2 | open class MeasurementFormatter : Formatter, NSSecureCoding {
   |            `- note: 'MeasurementFormatter' has been explicitly marked unavailable here
 3 |     public struct UnitOptions : OptionSet, Sendable {
 4 |         public private(set) var rawValue: UInt { get }
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:107:40: error: incorrect argument label in call (have 'from:', expected 'for:')
105 |             formatter.countStyle = style
106 |             if #available(iOS 13.0, macOS 10.15, tvOS 13, *) {
107 |                 return formatter.string(from: .init(value: value.doubleValue, unit: .bytes)).removeGroupingSeparatorAndUseDotDecimal()
    |                                        `- error: incorrect argument label in call (have 'from:', expected 'for:')
108 |             } else {
109 |                 // Fallback on earlier versions
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:107:48: error: 'Any' cannot be constructed because it has no accessible initializers
105 |             formatter.countStyle = style
106 |             if #available(iOS 13.0, macOS 10.15, tvOS 13, *) {
107 |                 return formatter.string(from: .init(value: value.doubleValue, unit: .bytes)).removeGroupingSeparatorAndUseDotDecimal()
    |                                                `- error: 'Any' cannot be constructed because it has no accessible initializers
108 |             } else {
109 |                 // Fallback on earlier versions
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:107:86: error: cannot infer contextual base in reference to member 'bytes'
105 |             formatter.countStyle = style
106 |             if #available(iOS 13.0, macOS 10.15, tvOS 13, *) {
107 |                 return formatter.string(from: .init(value: value.doubleValue, unit: .bytes)).removeGroupingSeparatorAndUseDotDecimal()
    |                                                                                      `- error: cannot infer contextual base in reference to member 'bytes'
108 |             } else {
109 |                 // Fallback on earlier versions
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift:107:92: error: value of optional type 'String?' must be unwrapped to refer to member 'removeGroupingSeparatorAndUseDotDecimal' of wrapped base type 'String'
105 |             formatter.countStyle = style
106 |             if #available(iOS 13.0, macOS 10.15, tvOS 13, *) {
107 |                 return formatter.string(from: .init(value: value.doubleValue, unit: .bytes)).removeGroupingSeparatorAndUseDotDecimal()
    |                                                                                            |- error: value of optional type 'String?' must be unwrapped to refer to member 'removeGroupingSeparatorAndUseDotDecimal' of wrapped base type 'String'
    |                                                                                            |- note: chain the optional using '?' to access member 'removeGroupingSeparatorAndUseDotDecimal' only for non-'nil' base values
    |                                                                                            `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
108 |             } else {
109 |                 // Fallback on earlier versions
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Styles.swift:54:39: error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
 52 |     case fixed(precision: Int)
 53 |     case formatter(formatter: Formatter)
 54 |     case measure(unit: Unit, options: MeasurementFormatter.UnitOptions, style: Formatter.UnitStyle = .short)
    |                                       `- error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
 55 |     case currency(symbol: String?, usesGroupingSeparator: Bool = true)
 56 |     case bytes(style: ByteCountFormatter.CountStyle)
Foundation.MeasurementFormatter:2:12: note: 'MeasurementFormatter' has been explicitly marked unavailable here
 1 | @available(*, unavailable, message: "Not supported in swift-corelibs-foundation")
 2 | open class MeasurementFormatter : Formatter, NSSecureCoding {
   |            `- note: 'MeasurementFormatter' has been explicitly marked unavailable here
 3 |     public struct UnitOptions : OptionSet, Sendable {
 4 |         public private(set) var rawValue: UInt { get }
[51/97] Compiling Glider Configuration.swift
[52/97] Compiling Glider EventMessageFormatter.swift
[53/97] Compiling Glider FieldsFormatter+Field.swift
[54/97] Compiling Glider FieldsFormatter.swift
[55/97] Compiling Glider JSONFormatter.swift
[56/97] Compiling Glider MsgPackFormatter.swift
[57/97] Compiling Glider DataStream.swift
[58/97] Compiling Glider FlatValue.swift
[59/97] Compiling Glider Reader+Optionals.swift
[60/97] Compiling Glider Reader.swift
[61/97] Compiling Glider Types.swift
[62/97] Compiling Glider Writer+Optionals.swift
[63/97] Compiling Glider Writer.swift
[64/97] Compiling Glider OSLogFormatter.swift
[65/97] Compiling Glider SysLogFormatter.swift
[66/97] Compiling Glider SysLogPayload.swift
[67/97] Compiling Glider ASCIITable+Borders.swift
[68/97] Compiling Glider ASCIITable+Rendering.swift
[69/97] Compiling Glider ASCIITable.swift
[70/97] Compiling Glider TableFormatter.swift
[71/97] Compiling Glider TerminalFormatter+Colorize.swift
[72/97] Compiling Glider TerminalFormatter.swift
[73/97] Compiling Glider XCodeFormatter+Colorize.swift
[74/97] Compiling Glider XCodeFormatter.swift
[75/97] Compiling Glider RemoteTransportServerDelegate.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
 23 |
 24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 25 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 26 |
 27 |     /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
 47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 48 | public protocol RemoteTransportPacket {
 49 |     var code: RemoteTransport.PacketCode { get }
    |               `- error: cannot find type 'RemoteTransport' in scope
 50 |
 51 |     /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
 58 |     /// - Parameter data: data to decode.
 59 |     /// - Returns: `Self?`
 60 |     static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
    |                                  `- error: cannot find type 'RemoteTransport' in scope
 61 |
 62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
 63 |
 64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 65 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 66 |
 67 |     /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
226 |
227 |     // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 |         internal var flag: Int32 {
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
    |                                           `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
    |                                                     `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
    |                                                             `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 |             }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
    |                                `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 |             }
203 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
 69 |
 70 |         /// The packet code.
 71 |         public var code: RemoteTransport.PacketCode = .message
    |                          `- error: cannot find type 'RemoteTransport' in scope
 72 |
 73 |         /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 |     public struct PacketEmpty: RemoteTransportPacket {
105 |
106 |         public let code: RemoteTransport.PacketCode
    |                          `- error: cannot find type 'RemoteTransport' in scope
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 |         public let code: RemoteTransport.PacketCode
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
    |                           `- error: cannot find type 'RemoteTransport' in scope
109 |             self.code = code
110 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 |         /// Code of the message.
194 |         public let code: RemoteTransport.PacketCode = .clientHello
    |                          `- error: cannot find type 'RemoteTransport' in scope
195 |
196 |         /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                                                                   `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 |     /// - `completed`: when closing a connection.
233 |     public enum RemoteEvent {
234 |         case packet(RawPacket)
    |                     `- error: cannot find type 'RawPacket' in scope
235 |         case error(Error)
236 |         case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 |         /// Readable control code
251 |         public var readableCode: RemoteTransport.PacketCode? {
    |                                  `- error: cannot find type 'RemoteTransport' in scope
252 |             .init(rawValue: code)
253 |         }
[76/97] Compiling Glider Network+Extension.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
 23 |
 24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 25 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 26 |
 27 |     /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
 47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 48 | public protocol RemoteTransportPacket {
 49 |     var code: RemoteTransport.PacketCode { get }
    |               `- error: cannot find type 'RemoteTransport' in scope
 50 |
 51 |     /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
 58 |     /// - Parameter data: data to decode.
 59 |     /// - Returns: `Self?`
 60 |     static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
    |                                  `- error: cannot find type 'RemoteTransport' in scope
 61 |
 62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
 63 |
 64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 65 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 66 |
 67 |     /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
226 |
227 |     // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 |         internal var flag: Int32 {
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
    |                                           `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
    |                                                     `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
    |                                                             `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 |             }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
    |                                `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 |             }
203 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
 69 |
 70 |         /// The packet code.
 71 |         public var code: RemoteTransport.PacketCode = .message
    |                          `- error: cannot find type 'RemoteTransport' in scope
 72 |
 73 |         /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 |     public struct PacketEmpty: RemoteTransportPacket {
105 |
106 |         public let code: RemoteTransport.PacketCode
    |                          `- error: cannot find type 'RemoteTransport' in scope
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 |         public let code: RemoteTransport.PacketCode
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
    |                           `- error: cannot find type 'RemoteTransport' in scope
109 |             self.code = code
110 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 |         /// Code of the message.
194 |         public let code: RemoteTransport.PacketCode = .clientHello
    |                          `- error: cannot find type 'RemoteTransport' in scope
195 |
196 |         /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                                                                   `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 |     /// - `completed`: when closing a connection.
233 |     public enum RemoteEvent {
234 |         case packet(RawPacket)
    |                     `- error: cannot find type 'RawPacket' in scope
235 |         case error(Error)
236 |         case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 |         /// Readable control code
251 |         public var readableCode: RemoteTransport.PacketCode? {
    |                                  `- error: cannot find type 'RemoteTransport' in scope
252 |             .init(rawValue: code)
253 |         }
[77/97] Compiling Glider RemoteTransportConnection.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
 23 |
 24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 25 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 26 |
 27 |     /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
 47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 48 | public protocol RemoteTransportPacket {
 49 |     var code: RemoteTransport.PacketCode { get }
    |               `- error: cannot find type 'RemoteTransport' in scope
 50 |
 51 |     /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
 58 |     /// - Parameter data: data to decode.
 59 |     /// - Returns: `Self?`
 60 |     static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
    |                                  `- error: cannot find type 'RemoteTransport' in scope
 61 |
 62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
 63 |
 64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 65 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 66 |
 67 |     /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
226 |
227 |     // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 |         internal var flag: Int32 {
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
    |                                           `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
    |                                                     `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
    |                                                             `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 |             }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
    |                                `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 |             }
203 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
 69 |
 70 |         /// The packet code.
 71 |         public var code: RemoteTransport.PacketCode = .message
    |                          `- error: cannot find type 'RemoteTransport' in scope
 72 |
 73 |         /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 |     public struct PacketEmpty: RemoteTransportPacket {
105 |
106 |         public let code: RemoteTransport.PacketCode
    |                          `- error: cannot find type 'RemoteTransport' in scope
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 |         public let code: RemoteTransport.PacketCode
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
    |                           `- error: cannot find type 'RemoteTransport' in scope
109 |             self.code = code
110 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 |         /// Code of the message.
194 |         public let code: RemoteTransport.PacketCode = .clientHello
    |                          `- error: cannot find type 'RemoteTransport' in scope
195 |
196 |         /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                                                                   `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 |     /// - `completed`: when closing a connection.
233 |     public enum RemoteEvent {
234 |         case packet(RawPacket)
    |                     `- error: cannot find type 'RawPacket' in scope
235 |         case error(Error)
236 |         case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 |         /// Readable control code
251 |         public var readableCode: RemoteTransport.PacketCode? {
    |                                  `- error: cannot find type 'RemoteTransport' in scope
252 |             .init(rawValue: code)
253 |         }
[78/97] Compiling Glider RemoteTransportPackets.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
 23 |
 24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 25 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 26 |
 27 |     /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
 47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 48 | public protocol RemoteTransportPacket {
 49 |     var code: RemoteTransport.PacketCode { get }
    |               `- error: cannot find type 'RemoteTransport' in scope
 50 |
 51 |     /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
 58 |     /// - Parameter data: data to decode.
 59 |     /// - Returns: `Self?`
 60 |     static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
    |                                  `- error: cannot find type 'RemoteTransport' in scope
 61 |
 62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
 63 |
 64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 65 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 66 |
 67 |     /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
226 |
227 |     // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 |         internal var flag: Int32 {
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
    |                                           `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
    |                                                     `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
    |                                                             `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 |             }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
    |                                `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 |             }
203 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
 69 |
 70 |         /// The packet code.
 71 |         public var code: RemoteTransport.PacketCode = .message
    |                          `- error: cannot find type 'RemoteTransport' in scope
 72 |
 73 |         /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 |     public struct PacketEmpty: RemoteTransportPacket {
105 |
106 |         public let code: RemoteTransport.PacketCode
    |                          `- error: cannot find type 'RemoteTransport' in scope
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 |         public let code: RemoteTransport.PacketCode
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
    |                           `- error: cannot find type 'RemoteTransport' in scope
109 |             self.code = code
110 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 |         /// Code of the message.
194 |         public let code: RemoteTransport.PacketCode = .clientHello
    |                          `- error: cannot find type 'RemoteTransport' in scope
195 |
196 |         /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                                                                   `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 |     /// - `completed`: when closing a connection.
233 |     public enum RemoteEvent {
234 |         case packet(RawPacket)
    |                     `- error: cannot find type 'RawPacket' in scope
235 |         case error(Error)
236 |         case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 |         /// Readable control code
251 |         public var readableCode: RemoteTransport.PacketCode? {
    |                                  `- error: cannot find type 'RemoteTransport' in scope
252 |             .init(rawValue: code)
253 |         }
[79/97] Compiling Glider SQLiteTransport+Delegate.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
 23 |
 24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 25 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 26 |
 27 |     /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
 47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 48 | public protocol RemoteTransportPacket {
 49 |     var code: RemoteTransport.PacketCode { get }
    |               `- error: cannot find type 'RemoteTransport' in scope
 50 |
 51 |     /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
 58 |     /// - Parameter data: data to decode.
 59 |     /// - Returns: `Self?`
 60 |     static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
    |                                  `- error: cannot find type 'RemoteTransport' in scope
 61 |
 62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
 63 |
 64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 65 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 66 |
 67 |     /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
226 |
227 |     // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 |         internal var flag: Int32 {
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
    |                                           `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
    |                                                     `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
    |                                                             `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 |             }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
    |                                `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 |             }
203 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
 69 |
 70 |         /// The packet code.
 71 |         public var code: RemoteTransport.PacketCode = .message
    |                          `- error: cannot find type 'RemoteTransport' in scope
 72 |
 73 |         /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 |     public struct PacketEmpty: RemoteTransportPacket {
105 |
106 |         public let code: RemoteTransport.PacketCode
    |                          `- error: cannot find type 'RemoteTransport' in scope
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 |         public let code: RemoteTransport.PacketCode
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
    |                           `- error: cannot find type 'RemoteTransport' in scope
109 |             self.code = code
110 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 |         /// Code of the message.
194 |         public let code: RemoteTransport.PacketCode = .clientHello
    |                          `- error: cannot find type 'RemoteTransport' in scope
195 |
196 |         /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                                                                   `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 |     /// - `completed`: when closing a connection.
233 |     public enum RemoteEvent {
234 |         case packet(RawPacket)
    |                     `- error: cannot find type 'RawPacket' in scope
235 |         case error(Error)
236 |         case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 |         /// Readable control code
251 |         public var readableCode: RemoteTransport.PacketCode? {
    |                                  `- error: cannot find type 'RemoteTransport' in scope
252 |             .init(rawValue: code)
253 |         }
[80/97] Compiling Glider SQLiteTransport.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
 23 |
 24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 25 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 26 |
 27 |     /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
 47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 48 | public protocol RemoteTransportPacket {
 49 |     var code: RemoteTransport.PacketCode { get }
    |               `- error: cannot find type 'RemoteTransport' in scope
 50 |
 51 |     /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
 58 |     /// - Parameter data: data to decode.
 59 |     /// - Returns: `Self?`
 60 |     static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
    |                                  `- error: cannot find type 'RemoteTransport' in scope
 61 |
 62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
 63 |
 64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 65 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 66 |
 67 |     /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
226 |
227 |     // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 |         internal var flag: Int32 {
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
    |                                           `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
    |                                                     `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
    |                                                             `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 |             }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
    |                                `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 |             }
203 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
 69 |
 70 |         /// The packet code.
 71 |         public var code: RemoteTransport.PacketCode = .message
    |                          `- error: cannot find type 'RemoteTransport' in scope
 72 |
 73 |         /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 |     public struct PacketEmpty: RemoteTransportPacket {
105 |
106 |         public let code: RemoteTransport.PacketCode
    |                          `- error: cannot find type 'RemoteTransport' in scope
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 |         public let code: RemoteTransport.PacketCode
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
    |                           `- error: cannot find type 'RemoteTransport' in scope
109 |             self.code = code
110 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 |         /// Code of the message.
194 |         public let code: RemoteTransport.PacketCode = .clientHello
    |                          `- error: cannot find type 'RemoteTransport' in scope
195 |
196 |         /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                                                                   `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 |     /// - `completed`: when closing a connection.
233 |     public enum RemoteEvent {
234 |         case packet(RawPacket)
    |                     `- error: cannot find type 'RawPacket' in scope
235 |         case error(Error)
236 |         case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 |         /// Readable control code
251 |         public var readableCode: RemoteTransport.PacketCode? {
    |                                  `- error: cannot find type 'RemoteTransport' in scope
252 |             .init(rawValue: code)
253 |         }
[81/97] Compiling Glider SQLite+Statement.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
 23 |
 24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 25 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 26 |
 27 |     /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
 47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 48 | public protocol RemoteTransportPacket {
 49 |     var code: RemoteTransport.PacketCode { get }
    |               `- error: cannot find type 'RemoteTransport' in scope
 50 |
 51 |     /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
 58 |     /// - Parameter data: data to decode.
 59 |     /// - Returns: `Self?`
 60 |     static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
    |                                  `- error: cannot find type 'RemoteTransport' in scope
 61 |
 62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
 63 |
 64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 65 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 66 |
 67 |     /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
226 |
227 |     // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 |         internal var flag: Int32 {
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
    |                                           `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
    |                                                     `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
    |                                                             `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 |             }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
    |                                `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 |             }
203 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
 69 |
 70 |         /// The packet code.
 71 |         public var code: RemoteTransport.PacketCode = .message
    |                          `- error: cannot find type 'RemoteTransport' in scope
 72 |
 73 |         /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 |     public struct PacketEmpty: RemoteTransportPacket {
105 |
106 |         public let code: RemoteTransport.PacketCode
    |                          `- error: cannot find type 'RemoteTransport' in scope
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 |         public let code: RemoteTransport.PacketCode
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
    |                           `- error: cannot find type 'RemoteTransport' in scope
109 |             self.code = code
110 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 |         /// Code of the message.
194 |         public let code: RemoteTransport.PacketCode = .clientHello
    |                          `- error: cannot find type 'RemoteTransport' in scope
195 |
196 |         /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                                                                   `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 |     /// - `completed`: when closing a connection.
233 |     public enum RemoteEvent {
234 |         case packet(RawPacket)
    |                     `- error: cannot find type 'RawPacket' in scope
235 |         case error(Error)
236 |         case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 |         /// Readable control code
251 |         public var readableCode: RemoteTransport.PacketCode? {
    |                                  `- error: cannot find type 'RemoteTransport' in scope
252 |             .init(rawValue: code)
253 |         }
[82/97] Compiling Glider SQLiteDb+Additions.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
 23 |
 24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 25 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 26 |
 27 |     /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
 47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 48 | public protocol RemoteTransportPacket {
 49 |     var code: RemoteTransport.PacketCode { get }
    |               `- error: cannot find type 'RemoteTransport' in scope
 50 |
 51 |     /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
 58 |     /// - Parameter data: data to decode.
 59 |     /// - Returns: `Self?`
 60 |     static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
    |                                  `- error: cannot find type 'RemoteTransport' in scope
 61 |
 62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
 63 |
 64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 65 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 66 |
 67 |     /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
226 |
227 |     // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 |         internal var flag: Int32 {
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
    |                                           `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
    |                                                     `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
    |                                                             `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 |             }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
    |                                `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 |             }
203 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
 69 |
 70 |         /// The packet code.
 71 |         public var code: RemoteTransport.PacketCode = .message
    |                          `- error: cannot find type 'RemoteTransport' in scope
 72 |
 73 |         /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 |     public struct PacketEmpty: RemoteTransportPacket {
105 |
106 |         public let code: RemoteTransport.PacketCode
    |                          `- error: cannot find type 'RemoteTransport' in scope
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 |         public let code: RemoteTransport.PacketCode
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
    |                           `- error: cannot find type 'RemoteTransport' in scope
109 |             self.code = code
110 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 |         /// Code of the message.
194 |         public let code: RemoteTransport.PacketCode = .clientHello
    |                          `- error: cannot find type 'RemoteTransport' in scope
195 |
196 |         /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                                                                   `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 |     /// - `completed`: when closing a connection.
233 |     public enum RemoteEvent {
234 |         case packet(RawPacket)
    |                     `- error: cannot find type 'RawPacket' in scope
235 |         case error(Error)
236 |         case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 |         /// Readable control code
251 |         public var readableCode: RemoteTransport.PacketCode? {
    |                                  `- error: cannot find type 'RemoteTransport' in scope
252 |             .init(rawValue: code)
253 |         }
[83/97] Compiling Glider SQLiteDb+Support.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
 23 |
 24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 25 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 26 |
 27 |     /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
 47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 48 | public protocol RemoteTransportPacket {
 49 |     var code: RemoteTransport.PacketCode { get }
    |               `- error: cannot find type 'RemoteTransport' in scope
 50 |
 51 |     /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
 58 |     /// - Parameter data: data to decode.
 59 |     /// - Returns: `Self?`
 60 |     static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
    |                                  `- error: cannot find type 'RemoteTransport' in scope
 61 |
 62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
 63 |
 64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 65 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 66 |
 67 |     /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
226 |
227 |     // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 |         internal var flag: Int32 {
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
    |                                           `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
    |                                                     `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
    |                                                             `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 |             }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
    |                                `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 |             }
203 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
 69 |
 70 |         /// The packet code.
 71 |         public var code: RemoteTransport.PacketCode = .message
    |                          `- error: cannot find type 'RemoteTransport' in scope
 72 |
 73 |         /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 |     public struct PacketEmpty: RemoteTransportPacket {
105 |
106 |         public let code: RemoteTransport.PacketCode
    |                          `- error: cannot find type 'RemoteTransport' in scope
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 |         public let code: RemoteTransport.PacketCode
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
    |                           `- error: cannot find type 'RemoteTransport' in scope
109 |             self.code = code
110 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 |         /// Code of the message.
194 |         public let code: RemoteTransport.PacketCode = .clientHello
    |                          `- error: cannot find type 'RemoteTransport' in scope
195 |
196 |         /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                                                                   `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 |     /// - `completed`: when closing a connection.
233 |     public enum RemoteEvent {
234 |         case packet(RawPacket)
    |                     `- error: cannot find type 'RawPacket' in scope
235 |         case error(Error)
236 |         case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 |         /// Readable control code
251 |         public var readableCode: RemoteTransport.PacketCode? {
    |                                  `- error: cannot find type 'RemoteTransport' in scope
252 |             .init(rawValue: code)
253 |         }
[84/97] Compiling Glider SQLiteDb.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
 23 |
 24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 25 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 26 |
 27 |     /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
 47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 48 | public protocol RemoteTransportPacket {
 49 |     var code: RemoteTransport.PacketCode { get }
    |               `- error: cannot find type 'RemoteTransport' in scope
 50 |
 51 |     /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
 58 |     /// - Parameter data: data to decode.
 59 |     /// - Returns: `Self?`
 60 |     static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
    |                                  `- error: cannot find type 'RemoteTransport' in scope
 61 |
 62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
 63 |
 64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 65 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 66 |
 67 |     /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
226 |
227 |     // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 |         internal var flag: Int32 {
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
    |                                           `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
    |                                                     `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
    |                                                             `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 |             }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
    |                                `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 |             }
203 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
 69 |
 70 |         /// The packet code.
 71 |         public var code: RemoteTransport.PacketCode = .message
    |                          `- error: cannot find type 'RemoteTransport' in scope
 72 |
 73 |         /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 |     public struct PacketEmpty: RemoteTransportPacket {
105 |
106 |         public let code: RemoteTransport.PacketCode
    |                          `- error: cannot find type 'RemoteTransport' in scope
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 |         public let code: RemoteTransport.PacketCode
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
    |                           `- error: cannot find type 'RemoteTransport' in scope
109 |             self.code = code
110 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 |         /// Code of the message.
194 |         public let code: RemoteTransport.PacketCode = .clientHello
    |                          `- error: cannot find type 'RemoteTransport' in scope
195 |
196 |         /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                                                                   `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 |     /// - `completed`: when closing a connection.
233 |     public enum RemoteEvent {
234 |         case packet(RawPacket)
    |                     `- error: cannot find type 'RawPacket' in scope
235 |         case error(Error)
236 |         case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 |         /// Readable control code
251 |         public var readableCode: RemoteTransport.PacketCode? {
    |                                  `- error: cannot find type 'RemoteTransport' in scope
252 |             .init(rawValue: code)
253 |         }
[85/97] Compiling Glider BonjourPublisher+Configuration.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
 23 |
 24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 25 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 26 |
 27 |     /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
 47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 48 | public protocol RemoteTransportPacket {
 49 |     var code: RemoteTransport.PacketCode { get }
    |               `- error: cannot find type 'RemoteTransport' in scope
 50 |
 51 |     /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
 58 |     /// - Parameter data: data to decode.
 59 |     /// - Returns: `Self?`
 60 |     static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
    |                                  `- error: cannot find type 'RemoteTransport' in scope
 61 |
 62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
 63 |
 64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
 65 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
 66 |
 67 |     /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
    |           `- error: cannot find type 'RemoteTransport' in scope
226 |
227 |     // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 |         internal var flag: Int32 {
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
    |                                           `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 |             switch self {
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
    |                                                     `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 |             case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
    |                                                             `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 |             }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 |             case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 |             case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 |             case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
    |                                `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 |             }
203 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
 69 |
 70 |         /// The packet code.
 71 |         public var code: RemoteTransport.PacketCode = .message
    |                          `- error: cannot find type 'RemoteTransport' in scope
 72 |
 73 |         /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
 89 |         }
 90 |
 91 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
 92 |             guard let code = PacketCode(rawValue: packet.code),
 93 |                   code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 |     public struct PacketEmpty: RemoteTransportPacket {
105 |
106 |         public let code: RemoteTransport.PacketCode
    |                          `- error: cannot find type 'RemoteTransport' in scope
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 |         public let code: RemoteTransport.PacketCode
107 |
108 |         public init(code: RemoteTransport.PacketCode) {
    |                           `- error: cannot find type 'RemoteTransport' in scope
109 |             self.code = code
110 |         }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                                                                  `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 |         }
115 |
116 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
117 |             guard let code =  PacketCode(rawValue: packet.code) else {
118 |                 throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 |         /// Code of the message.
194 |         public let code: RemoteTransport.PacketCode = .clientHello
    |                          `- error: cannot find type 'RemoteTransport' in scope
195 |
196 |         /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                                                                   `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 |         }
214 |
215 |         public static func decode(_ packet: RemoteTransport.RawPacket) throws ->  RemoteTransport.PacketHello? {
    |                                             `- error: cannot find type 'RemoteTransport' in scope
216 |             let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 |             return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 |     /// - `completed`: when closing a connection.
233 |     public enum RemoteEvent {
234 |         case packet(RawPacket)
    |                     `- error: cannot find type 'RawPacket' in scope
235 |         case error(Error)
236 |         case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 |         /// Readable control code
251 |         public var readableCode: RemoteTransport.PacketCode? {
    |                                  `- error: cannot find type 'RemoteTransport' in scope
252 |             .init(rawValue: code)
253 |         }
[86/97] Compiling Glider LogInterpolation.swift
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:9: error: cannot find 'pthread_threadid_np' in scope
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |         `- error: cannot find 'pthread_threadid_np' in scope
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:29: error: 'nil' requires a contextual type
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |                             `- error: 'nil' requires a contextual type
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:133:24: error: cannot find 'mach_task_basic_info' in scope
131 |         var usedMemoryBytes: Float {
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
    |                        `- error: cannot find 'mach_task_basic_info' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:25: error: cannot find 'mach_msg_type_number_t' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                         `- error: cannot find 'mach_msg_type_number_t' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:61: error: cannot find type 'mach_task_basic_info' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                                                             `- error: cannot find type 'mach_task_basic_info' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:136:23: error: cannot find type 'kern_return_t' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
    |                       `- error: cannot find type 'kern_return_t' in scope
137 |                 $0.withMemoryRebound(to: integer_t.self, capacity: 1) {
138 |                     task_info(
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:147:24: error: cannot find 'KERN_SUCCESS' in scope
145 |             }
146 |
147 |             if kerr == KERN_SUCCESS {
    |                        `- error: cannot find 'KERN_SUCCESS' in scope
148 |                 let usedBytes: Float = Float(info.resident_size)
149 |                 usedMegabytes = usedBytes / 1024.0 / 1024.0
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:149:21: error: cannot find 'UIDevice' in scope
147 |         os[.version] = ProcessInfo.processInfo.operatingSystemVersionString
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
    |                     `- error: cannot find 'UIDevice' in scope
150 |         os[.version] = UIDevice.current.systemVersion
151 |         #endif
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:150:24: error: cannot find 'UIDevice' in scope
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
150 |         os[.version] = UIDevice.current.systemVersion
    |                        `- error: cannot find 'UIDevice' in scope
151 |         #endif
152 |     }
[87/97] Compiling Glider Message.swift
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:9: error: cannot find 'pthread_threadid_np' in scope
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |         `- error: cannot find 'pthread_threadid_np' in scope
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:29: error: 'nil' requires a contextual type
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |                             `- error: 'nil' requires a contextual type
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:133:24: error: cannot find 'mach_task_basic_info' in scope
131 |         var usedMemoryBytes: Float {
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
    |                        `- error: cannot find 'mach_task_basic_info' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:25: error: cannot find 'mach_msg_type_number_t' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                         `- error: cannot find 'mach_msg_type_number_t' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:61: error: cannot find type 'mach_task_basic_info' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                                                             `- error: cannot find type 'mach_task_basic_info' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:136:23: error: cannot find type 'kern_return_t' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
    |                       `- error: cannot find type 'kern_return_t' in scope
137 |                 $0.withMemoryRebound(to: integer_t.self, capacity: 1) {
138 |                     task_info(
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:147:24: error: cannot find 'KERN_SUCCESS' in scope
145 |             }
146 |
147 |             if kerr == KERN_SUCCESS {
    |                        `- error: cannot find 'KERN_SUCCESS' in scope
148 |                 let usedBytes: Float = Float(info.resident_size)
149 |                 usedMegabytes = usedBytes / 1024.0 / 1024.0
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:149:21: error: cannot find 'UIDevice' in scope
147 |         os[.version] = ProcessInfo.processInfo.operatingSystemVersionString
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
    |                     `- error: cannot find 'UIDevice' in scope
150 |         os[.version] = UIDevice.current.systemVersion
151 |         #endif
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:150:24: error: cannot find 'UIDevice' in scope
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
150 |         os[.version] = UIDevice.current.systemVersion
    |                        `- error: cannot find 'UIDevice' in scope
151 |         #endif
152 |     }
[88/97] Compiling Glider Metadata.swift
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:9: error: cannot find 'pthread_threadid_np' in scope
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |         `- error: cannot find 'pthread_threadid_np' in scope
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:29: error: 'nil' requires a contextual type
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |                             `- error: 'nil' requires a contextual type
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:133:24: error: cannot find 'mach_task_basic_info' in scope
131 |         var usedMemoryBytes: Float {
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
    |                        `- error: cannot find 'mach_task_basic_info' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:25: error: cannot find 'mach_msg_type_number_t' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                         `- error: cannot find 'mach_msg_type_number_t' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:61: error: cannot find type 'mach_task_basic_info' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                                                             `- error: cannot find type 'mach_task_basic_info' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:136:23: error: cannot find type 'kern_return_t' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
    |                       `- error: cannot find type 'kern_return_t' in scope
137 |                 $0.withMemoryRebound(to: integer_t.self, capacity: 1) {
138 |                     task_info(
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:147:24: error: cannot find 'KERN_SUCCESS' in scope
145 |             }
146 |
147 |             if kerr == KERN_SUCCESS {
    |                        `- error: cannot find 'KERN_SUCCESS' in scope
148 |                 let usedBytes: Float = Float(info.resident_size)
149 |                 usedMegabytes = usedBytes / 1024.0 / 1024.0
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:149:21: error: cannot find 'UIDevice' in scope
147 |         os[.version] = ProcessInfo.processInfo.operatingSystemVersionString
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
    |                     `- error: cannot find 'UIDevice' in scope
150 |         os[.version] = UIDevice.current.systemVersion
151 |         #endif
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:150:24: error: cannot find 'UIDevice' in scope
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
150 |         os[.version] = UIDevice.current.systemVersion
    |                        `- error: cannot find 'UIDevice' in scope
151 |         #endif
152 |     }
[89/97] Compiling Glider ProcessIdentification.swift
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:9: error: cannot find 'pthread_threadid_np' in scope
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |         `- error: cannot find 'pthread_threadid_np' in scope
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:29: error: 'nil' requires a contextual type
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |                             `- error: 'nil' requires a contextual type
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:133:24: error: cannot find 'mach_task_basic_info' in scope
131 |         var usedMemoryBytes: Float {
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
    |                        `- error: cannot find 'mach_task_basic_info' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:25: error: cannot find 'mach_msg_type_number_t' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                         `- error: cannot find 'mach_msg_type_number_t' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:61: error: cannot find type 'mach_task_basic_info' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                                                             `- error: cannot find type 'mach_task_basic_info' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:136:23: error: cannot find type 'kern_return_t' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
    |                       `- error: cannot find type 'kern_return_t' in scope
137 |                 $0.withMemoryRebound(to: integer_t.self, capacity: 1) {
138 |                     task_info(
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:147:24: error: cannot find 'KERN_SUCCESS' in scope
145 |             }
146 |
147 |             if kerr == KERN_SUCCESS {
    |                        `- error: cannot find 'KERN_SUCCESS' in scope
148 |                 let usedBytes: Float = Float(info.resident_size)
149 |                 usedMegabytes = usedBytes / 1024.0 / 1024.0
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:149:21: error: cannot find 'UIDevice' in scope
147 |         os[.version] = ProcessInfo.processInfo.operatingSystemVersionString
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
    |                     `- error: cannot find 'UIDevice' in scope
150 |         os[.version] = UIDevice.current.systemVersion
151 |         #endif
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:150:24: error: cannot find 'UIDevice' in scope
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
150 |         os[.version] = UIDevice.current.systemVersion
    |                        `- error: cannot find 'UIDevice' in scope
151 |         #endif
152 |     }
[90/97] Compiling Glider Scope.swift
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:9: error: cannot find 'pthread_threadid_np' in scope
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |         `- error: cannot find 'pthread_threadid_np' in scope
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:29: error: 'nil' requires a contextual type
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |                             `- error: 'nil' requires a contextual type
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:133:24: error: cannot find 'mach_task_basic_info' in scope
131 |         var usedMemoryBytes: Float {
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
    |                        `- error: cannot find 'mach_task_basic_info' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:25: error: cannot find 'mach_msg_type_number_t' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                         `- error: cannot find 'mach_msg_type_number_t' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:61: error: cannot find type 'mach_task_basic_info' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                                                             `- error: cannot find type 'mach_task_basic_info' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:136:23: error: cannot find type 'kern_return_t' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
    |                       `- error: cannot find type 'kern_return_t' in scope
137 |                 $0.withMemoryRebound(to: integer_t.self, capacity: 1) {
138 |                     task_info(
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:147:24: error: cannot find 'KERN_SUCCESS' in scope
145 |             }
146 |
147 |             if kerr == KERN_SUCCESS {
    |                        `- error: cannot find 'KERN_SUCCESS' in scope
148 |                 let usedBytes: Float = Float(info.resident_size)
149 |                 usedMegabytes = usedBytes / 1024.0 / 1024.0
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:149:21: error: cannot find 'UIDevice' in scope
147 |         os[.version] = ProcessInfo.processInfo.operatingSystemVersionString
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
    |                     `- error: cannot find 'UIDevice' in scope
150 |         os[.version] = UIDevice.current.systemVersion
151 |         #endif
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:150:24: error: cannot find 'UIDevice' in scope
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
150 |         os[.version] = UIDevice.current.systemVersion
    |                        `- error: cannot find 'UIDevice' in scope
151 |         #endif
152 |     }
[91/97] Compiling Glider UIImage+Serialization.swift
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:9: error: cannot find 'pthread_threadid_np' in scope
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |         `- error: cannot find 'pthread_threadid_np' in scope
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:29: error: 'nil' requires a contextual type
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |                             `- error: 'nil' requires a contextual type
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:133:24: error: cannot find 'mach_task_basic_info' in scope
131 |         var usedMemoryBytes: Float {
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
    |                        `- error: cannot find 'mach_task_basic_info' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:25: error: cannot find 'mach_msg_type_number_t' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                         `- error: cannot find 'mach_msg_type_number_t' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:61: error: cannot find type 'mach_task_basic_info' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                                                             `- error: cannot find type 'mach_task_basic_info' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:136:23: error: cannot find type 'kern_return_t' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
    |                       `- error: cannot find type 'kern_return_t' in scope
137 |                 $0.withMemoryRebound(to: integer_t.self, capacity: 1) {
138 |                     task_info(
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:147:24: error: cannot find 'KERN_SUCCESS' in scope
145 |             }
146 |
147 |             if kerr == KERN_SUCCESS {
    |                        `- error: cannot find 'KERN_SUCCESS' in scope
148 |                 let usedBytes: Float = Float(info.resident_size)
149 |                 usedMegabytes = usedBytes / 1024.0 / 1024.0
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:149:21: error: cannot find 'UIDevice' in scope
147 |         os[.version] = ProcessInfo.processInfo.operatingSystemVersionString
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
    |                     `- error: cannot find 'UIDevice' in scope
150 |         os[.version] = UIDevice.current.systemVersion
151 |         #endif
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:150:24: error: cannot find 'UIDevice' in scope
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
150 |         os[.version] = UIDevice.current.systemVersion
    |                        `- error: cannot find 'UIDevice' in scope
151 |         #endif
152 |     }
[92/97] Compiling Glider SerializableObject.swift
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:9: error: cannot find 'pthread_threadid_np' in scope
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |         `- error: cannot find 'pthread_threadid_np' in scope
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:29: error: 'nil' requires a contextual type
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |                             `- error: 'nil' requires a contextual type
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:133:24: error: cannot find 'mach_task_basic_info' in scope
131 |         var usedMemoryBytes: Float {
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
    |                        `- error: cannot find 'mach_task_basic_info' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:25: error: cannot find 'mach_msg_type_number_t' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                         `- error: cannot find 'mach_msg_type_number_t' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:61: error: cannot find type 'mach_task_basic_info' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                                                             `- error: cannot find type 'mach_task_basic_info' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:136:23: error: cannot find type 'kern_return_t' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
    |                       `- error: cannot find type 'kern_return_t' in scope
137 |                 $0.withMemoryRebound(to: integer_t.self, capacity: 1) {
138 |                     task_info(
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:147:24: error: cannot find 'KERN_SUCCESS' in scope
145 |             }
146 |
147 |             if kerr == KERN_SUCCESS {
    |                        `- error: cannot find 'KERN_SUCCESS' in scope
148 |                 let usedBytes: Float = Float(info.resident_size)
149 |                 usedMegabytes = usedBytes / 1024.0 / 1024.0
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:149:21: error: cannot find 'UIDevice' in scope
147 |         os[.version] = ProcessInfo.processInfo.operatingSystemVersionString
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
    |                     `- error: cannot find 'UIDevice' in scope
150 |         os[.version] = UIDevice.current.systemVersion
151 |         #endif
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:150:24: error: cannot find 'UIDevice' in scope
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
150 |         os[.version] = UIDevice.current.systemVersion
    |                        `- error: cannot find 'UIDevice' in scope
151 |         #endif
152 |     }
[93/97] Compiling Glider SerializationStrategies.swift
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:9: error: cannot find 'pthread_threadid_np' in scope
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |         `- error: cannot find 'pthread_threadid_np' in scope
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:29: error: 'nil' requires a contextual type
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |                             `- error: 'nil' requires a contextual type
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:133:24: error: cannot find 'mach_task_basic_info' in scope
131 |         var usedMemoryBytes: Float {
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
    |                        `- error: cannot find 'mach_task_basic_info' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:25: error: cannot find 'mach_msg_type_number_t' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                         `- error: cannot find 'mach_msg_type_number_t' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:61: error: cannot find type 'mach_task_basic_info' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                                                             `- error: cannot find type 'mach_task_basic_info' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:136:23: error: cannot find type 'kern_return_t' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
    |                       `- error: cannot find type 'kern_return_t' in scope
137 |                 $0.withMemoryRebound(to: integer_t.self, capacity: 1) {
138 |                     task_info(
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:147:24: error: cannot find 'KERN_SUCCESS' in scope
145 |             }
146 |
147 |             if kerr == KERN_SUCCESS {
    |                        `- error: cannot find 'KERN_SUCCESS' in scope
148 |                 let usedBytes: Float = Float(info.resident_size)
149 |                 usedMegabytes = usedBytes / 1024.0 / 1024.0
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:149:21: error: cannot find 'UIDevice' in scope
147 |         os[.version] = ProcessInfo.processInfo.operatingSystemVersionString
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
    |                     `- error: cannot find 'UIDevice' in scope
150 |         os[.version] = UIDevice.current.systemVersion
151 |         #endif
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:150:24: error: cannot find 'UIDevice' in scope
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
150 |         os[.version] = UIDevice.current.systemVersion
    |                        `- error: cannot find 'UIDevice' in scope
151 |         #endif
152 |     }
[94/97] Compiling Glider StatusMonitor.swift
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:9: error: cannot find 'pthread_threadid_np' in scope
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |         `- error: cannot find 'pthread_threadid_np' in scope
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:29: error: 'nil' requires a contextual type
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |                             `- error: 'nil' requires a contextual type
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:133:24: error: cannot find 'mach_task_basic_info' in scope
131 |         var usedMemoryBytes: Float {
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
    |                        `- error: cannot find 'mach_task_basic_info' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:25: error: cannot find 'mach_msg_type_number_t' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                         `- error: cannot find 'mach_msg_type_number_t' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:61: error: cannot find type 'mach_task_basic_info' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                                                             `- error: cannot find type 'mach_task_basic_info' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:136:23: error: cannot find type 'kern_return_t' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
    |                       `- error: cannot find type 'kern_return_t' in scope
137 |                 $0.withMemoryRebound(to: integer_t.self, capacity: 1) {
138 |                     task_info(
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:147:24: error: cannot find 'KERN_SUCCESS' in scope
145 |             }
146 |
147 |             if kerr == KERN_SUCCESS {
    |                        `- error: cannot find 'KERN_SUCCESS' in scope
148 |                 let usedBytes: Float = Float(info.resident_size)
149 |                 usedMegabytes = usedBytes / 1024.0 / 1024.0
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:149:21: error: cannot find 'UIDevice' in scope
147 |         os[.version] = ProcessInfo.processInfo.operatingSystemVersionString
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
    |                     `- error: cannot find 'UIDevice' in scope
150 |         os[.version] = UIDevice.current.systemVersion
151 |         #endif
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:150:24: error: cannot find 'UIDevice' in scope
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
150 |         os[.version] = UIDevice.current.systemVersion
    |                        `- error: cannot find 'UIDevice' in scope
151 |         #endif
152 |     }
[95/97] Compiling Glider User.swift
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:9: error: cannot find 'pthread_threadid_np' in scope
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |         `- error: cannot find 'pthread_threadid_np' in scope
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:29: error: 'nil' requires a contextual type
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |                             `- error: 'nil' requires a contextual type
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:133:24: error: cannot find 'mach_task_basic_info' in scope
131 |         var usedMemoryBytes: Float {
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
    |                        `- error: cannot find 'mach_task_basic_info' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:25: error: cannot find 'mach_msg_type_number_t' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                         `- error: cannot find 'mach_msg_type_number_t' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:61: error: cannot find type 'mach_task_basic_info' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                                                             `- error: cannot find type 'mach_task_basic_info' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:136:23: error: cannot find type 'kern_return_t' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
    |                       `- error: cannot find type 'kern_return_t' in scope
137 |                 $0.withMemoryRebound(to: integer_t.self, capacity: 1) {
138 |                     task_info(
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:147:24: error: cannot find 'KERN_SUCCESS' in scope
145 |             }
146 |
147 |             if kerr == KERN_SUCCESS {
    |                        `- error: cannot find 'KERN_SUCCESS' in scope
148 |                 let usedBytes: Float = Float(info.resident_size)
149 |                 usedMegabytes = usedBytes / 1024.0 / 1024.0
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:149:21: error: cannot find 'UIDevice' in scope
147 |         os[.version] = ProcessInfo.processInfo.operatingSystemVersionString
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
    |                     `- error: cannot find 'UIDevice' in scope
150 |         os[.version] = UIDevice.current.systemVersion
151 |         #endif
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:150:24: error: cannot find 'UIDevice' in scope
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
150 |         os[.version] = UIDevice.current.systemVersion
    |                        `- error: cannot find 'UIDevice' in scope
151 |         #endif
152 |     }
[96/97] Compiling Glider Channel.swift
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:9: error: cannot find 'pthread_threadid_np' in scope
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |         `- error: cannot find 'pthread_threadid_np' in scope
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:29: error: 'nil' requires a contextual type
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |                             `- error: 'nil' requires a contextual type
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:133:24: error: cannot find 'mach_task_basic_info' in scope
131 |         var usedMemoryBytes: Float {
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
    |                        `- error: cannot find 'mach_task_basic_info' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:25: error: cannot find 'mach_msg_type_number_t' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                         `- error: cannot find 'mach_msg_type_number_t' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:61: error: cannot find type 'mach_task_basic_info' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                                                             `- error: cannot find type 'mach_task_basic_info' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:136:23: error: cannot find type 'kern_return_t' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
    |                       `- error: cannot find type 'kern_return_t' in scope
137 |                 $0.withMemoryRebound(to: integer_t.self, capacity: 1) {
138 |                     task_info(
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:147:24: error: cannot find 'KERN_SUCCESS' in scope
145 |             }
146 |
147 |             if kerr == KERN_SUCCESS {
    |                        `- error: cannot find 'KERN_SUCCESS' in scope
148 |                 let usedBytes: Float = Float(info.resident_size)
149 |                 usedMegabytes = usedBytes / 1024.0 / 1024.0
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:149:21: error: cannot find 'UIDevice' in scope
147 |         os[.version] = ProcessInfo.processInfo.operatingSystemVersionString
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
    |                     `- error: cannot find 'UIDevice' in scope
150 |         os[.version] = UIDevice.current.systemVersion
151 |         #endif
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:150:24: error: cannot find 'UIDevice' in scope
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
150 |         os[.version] = UIDevice.current.systemVersion
    |                        `- error: cannot find 'UIDevice' in scope
151 |         #endif
152 |     }
[97/97] Compiling Glider Context.swift
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:9: error: cannot find 'pthread_threadid_np' in scope
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |         `- error: cannot find 'pthread_threadid_np' in scope
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:29: error: 'nil' requires a contextual type
57 |     public lazy var threadID: UInt64 = {
58 |         var threadID: UInt64 = 0
59 |         pthread_threadid_np(nil, &threadID)
   |                             `- error: 'nil' requires a contextual type
60 |         return threadID
61 |     }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:133:24: error: cannot find 'mach_task_basic_info' in scope
131 |         var usedMemoryBytes: Float {
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
    |                        `- error: cannot find 'mach_task_basic_info' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:25: error: cannot find 'mach_msg_type_number_t' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                         `- error: cannot find 'mach_msg_type_number_t' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:134:61: error: cannot find type 'mach_task_basic_info' in scope
132 |             var usedMegabytes: Float = 0
133 |             var info = mach_task_basic_info()
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
    |                                                             `- error: cannot find type 'mach_task_basic_info' in scope
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:136:23: error: cannot find type 'kern_return_t' in scope
134 |             var count = mach_msg_type_number_t(MemoryLayout<mach_task_basic_info>.size)/4
135 |
136 |             let kerr: kern_return_t = withUnsafeMutablePointer(to: &info) {
    |                       `- error: cannot find type 'kern_return_t' in scope
137 |                 $0.withMemoryRebound(to: integer_t.self, capacity: 1) {
138 |                     task_info(
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:147:24: error: cannot find 'KERN_SUCCESS' in scope
145 |             }
146 |
147 |             if kerr == KERN_SUCCESS {
    |                        `- error: cannot find 'KERN_SUCCESS' in scope
148 |                 let usedBytes: Float = Float(info.resident_size)
149 |                 usedMegabytes = usedBytes / 1024.0 / 1024.0
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:149:21: error: cannot find 'UIDevice' in scope
147 |         os[.version] = ProcessInfo.processInfo.operatingSystemVersionString
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
    |                     `- error: cannot find 'UIDevice' in scope
150 |         os[.version] = UIDevice.current.systemVersion
151 |         #endif
/host/spi-builder-workspace/Glider/Sources/Log/Context.swift:150:24: error: cannot find 'UIDevice' in scope
148 |         #else
149 |         os[.name] = UIDevice.current.systemName
150 |         os[.version] = UIDevice.current.systemVersion
    |                        `- error: cannot find 'UIDevice' in scope
151 |         #endif
152 |     }
BUILD FAILURE 6.2 linux