The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build ReerKit, reference 1.0.36 (2a65ba), with Swift 5.9 for Linux on 9 Oct 2024 17:16:57 UTC.

Build Command

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

Build Log

/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:27: error: cannot find 'CTFramesetterCreateWithAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:76: error: cannot find type 'CFAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:20: error: cannot find 'CGPath' in scope
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                   ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:34: error: cannot infer contextual base in reference to member 'init'
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                ~^~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:118: error: 'nil' requires a contextual type
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                                                                                                     ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:21: error: cannot find 'CTFramesetterCreateFrame' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                    ^~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:59: error: cannot find 'CFRangeMake' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                          ^~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:84: error: 'nil' requires a contextual type
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:21: error: cannot find 'CTFrameGetLines' in scope
        let lines = CTFrameGetLines(frame) as Array
                    ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: error: generic parameter 'Element' could not be inferred in cast to 'Array'
        let lines = CTFrameGetLines(frame) as Array
                                              ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: note: explicitly specify the generic arguments to fix this issue
        let lines = CTFrameGetLines(frame) as Array
                                              ^
                                                   <Any>
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:63:55: error: cannot find type 'CTLine' in scope
        if ignoreBlankLines, let ctLines = lines as? [CTLine] {
                                                      ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:66:33: error: cannot find 'CTLineGetStringRange' in scope
                let lineRange = CTLineGetStringRange(ctLine)
                                ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:70:66: error: cannot infer contextual base in reference to member 'whitespacesAndNewlines'
                let trimmed = lineString.trimmingCharacters(in: .whitespacesAndNewlines)
                                                                ~^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:25: error: value of type 'Base' has no member 'boundingRect'
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                   ~~~~ ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:64: error: reference to member 'usesLineFragmentOrigin' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                               ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:89: error: reference to member 'usesFontLeading' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                        ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:116: error: 'nil' requires a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:94:76: error: missing argument for parameter 'string' in call
        guard !base.string.isEmpty else { return NSMutableAttributedString() }
                                                                           ^
                                                                           string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:113:130: error: missing argument for parameter 'string' in call
        guard let pattern = try? NSRegularExpression(pattern: pattern, options: options) else { return NSMutableAttributedString() }
                                                                                                                                 ^
                                                                                                                                 string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:57:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'not'
        return rhs.re.not
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:67:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'and'
        return lhs.re.and(rhs)
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:77:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'or'
        return lhs.re.or(rhs)
               ~~~~~~ ^~
/host/spi-builder-workspace/Sources/Foundation/NSRegularExpression+REExtensions.swift:48:22: error: cannot find type 'MatchingFlags' in scope
            _ flags: MatchingFlags,
                     ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:32:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:50:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:82:6: error: Objective-C interoperability is disabled
    @objc
    ~^~~~

/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:36:35: error: extra arguments at positions #2, #3, #4 in call
        return Base.scheduledTimer(
                                  ^
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:38:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:16: error: constructing an object of class type 'Base' with a metatype value must use a 'required' initializer
        return Base(
               ^~~~
Foundation.Timer:3:24: note: selected non-required initializer 'init(timeInterval:repeats:block:)'
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:20: error: extra arguments at positions #2, #3, #4 in call
        return Base(
                   ^
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:56:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:40: error: cannot find 'AssociationKey' in scope
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
                                       ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:16: error: value of type 'ReerForEquatable<Timer>' has no member 'associatedValue'
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
            ~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:53: error: cannot find 'AssociationKey' in scope
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
                                                    ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:16: error: value of type 'ReerForEquatable<Timer>' has no member 'setAssociatedValue'
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
            ~~ ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/StandardLibrary/AnyObjectExtensions/AnyObjectExtensionable.swift:25:5: error: cannot find type 'Associatable' in scope
    Associatable
    ^~~~~~~~~~~~
[104/133] Compiling ReerKit NSPredicate+REExtensions.swift
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: warning: unknown operating system for build configuration 'os'
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'iOS'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          iOS
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'Windows'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          Windows
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:27: error: cannot find 'CTFramesetterCreateWithAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:76: error: cannot find type 'CFAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:20: error: cannot find 'CGPath' in scope
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                   ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:34: error: cannot infer contextual base in reference to member 'init'
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                ~^~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:118: error: 'nil' requires a contextual type
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                                                                                                     ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:21: error: cannot find 'CTFramesetterCreateFrame' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                    ^~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:59: error: cannot find 'CFRangeMake' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                          ^~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:84: error: 'nil' requires a contextual type
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:21: error: cannot find 'CTFrameGetLines' in scope
        let lines = CTFrameGetLines(frame) as Array
                    ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: error: generic parameter 'Element' could not be inferred in cast to 'Array'
        let lines = CTFrameGetLines(frame) as Array
                                              ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: note: explicitly specify the generic arguments to fix this issue
        let lines = CTFrameGetLines(frame) as Array
                                              ^
                                                   <Any>
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:63:55: error: cannot find type 'CTLine' in scope
        if ignoreBlankLines, let ctLines = lines as? [CTLine] {
                                                      ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:66:33: error: cannot find 'CTLineGetStringRange' in scope
                let lineRange = CTLineGetStringRange(ctLine)
                                ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:70:66: error: cannot infer contextual base in reference to member 'whitespacesAndNewlines'
                let trimmed = lineString.trimmingCharacters(in: .whitespacesAndNewlines)
                                                                ~^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:25: error: value of type 'Base' has no member 'boundingRect'
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                   ~~~~ ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:64: error: reference to member 'usesLineFragmentOrigin' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                               ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:89: error: reference to member 'usesFontLeading' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                        ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:116: error: 'nil' requires a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:94:76: error: missing argument for parameter 'string' in call
        guard !base.string.isEmpty else { return NSMutableAttributedString() }
                                                                           ^
                                                                           string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:113:130: error: missing argument for parameter 'string' in call
        guard let pattern = try? NSRegularExpression(pattern: pattern, options: options) else { return NSMutableAttributedString() }
                                                                                                                                 ^
                                                                                                                                 string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:57:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'not'
        return rhs.re.not
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:67:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'and'
        return lhs.re.and(rhs)
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:77:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'or'
        return lhs.re.or(rhs)
               ~~~~~~ ^~
/host/spi-builder-workspace/Sources/Foundation/NSRegularExpression+REExtensions.swift:48:22: error: cannot find type 'MatchingFlags' in scope
            _ flags: MatchingFlags,
                     ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:32:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:50:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:82:6: error: Objective-C interoperability is disabled
    @objc
    ~^~~~

/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:36:35: error: extra arguments at positions #2, #3, #4 in call
        return Base.scheduledTimer(
                                  ^
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:38:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:16: error: constructing an object of class type 'Base' with a metatype value must use a 'required' initializer
        return Base(
               ^~~~
Foundation.Timer:3:24: note: selected non-required initializer 'init(timeInterval:repeats:block:)'
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:20: error: extra arguments at positions #2, #3, #4 in call
        return Base(
                   ^
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:56:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:40: error: cannot find 'AssociationKey' in scope
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
                                       ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:16: error: value of type 'ReerForEquatable<Timer>' has no member 'associatedValue'
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
            ~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:53: error: cannot find 'AssociationKey' in scope
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
                                                    ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:16: error: value of type 'ReerForEquatable<Timer>' has no member 'setAssociatedValue'
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
            ~~ ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/StandardLibrary/AnyObjectExtensions/AnyObjectExtensionable.swift:25:5: error: cannot find type 'Associatable' in scope
    Associatable
    ^~~~~~~~~~~~
[105/133] Compiling ReerKit NSRange+REExtensions.swift
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: warning: unknown operating system for build configuration 'os'
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'iOS'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          iOS
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'Windows'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          Windows
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:27: error: cannot find 'CTFramesetterCreateWithAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:76: error: cannot find type 'CFAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:20: error: cannot find 'CGPath' in scope
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                   ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:34: error: cannot infer contextual base in reference to member 'init'
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                ~^~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:118: error: 'nil' requires a contextual type
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                                                                                                     ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:21: error: cannot find 'CTFramesetterCreateFrame' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                    ^~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:59: error: cannot find 'CFRangeMake' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                          ^~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:84: error: 'nil' requires a contextual type
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:21: error: cannot find 'CTFrameGetLines' in scope
        let lines = CTFrameGetLines(frame) as Array
                    ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: error: generic parameter 'Element' could not be inferred in cast to 'Array'
        let lines = CTFrameGetLines(frame) as Array
                                              ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: note: explicitly specify the generic arguments to fix this issue
        let lines = CTFrameGetLines(frame) as Array
                                              ^
                                                   <Any>
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:63:55: error: cannot find type 'CTLine' in scope
        if ignoreBlankLines, let ctLines = lines as? [CTLine] {
                                                      ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:66:33: error: cannot find 'CTLineGetStringRange' in scope
                let lineRange = CTLineGetStringRange(ctLine)
                                ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:70:66: error: cannot infer contextual base in reference to member 'whitespacesAndNewlines'
                let trimmed = lineString.trimmingCharacters(in: .whitespacesAndNewlines)
                                                                ~^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:25: error: value of type 'Base' has no member 'boundingRect'
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                   ~~~~ ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:64: error: reference to member 'usesLineFragmentOrigin' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                               ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:89: error: reference to member 'usesFontLeading' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                        ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:116: error: 'nil' requires a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:94:76: error: missing argument for parameter 'string' in call
        guard !base.string.isEmpty else { return NSMutableAttributedString() }
                                                                           ^
                                                                           string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:113:130: error: missing argument for parameter 'string' in call
        guard let pattern = try? NSRegularExpression(pattern: pattern, options: options) else { return NSMutableAttributedString() }
                                                                                                                                 ^
                                                                                                                                 string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:57:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'not'
        return rhs.re.not
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:67:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'and'
        return lhs.re.and(rhs)
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:77:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'or'
        return lhs.re.or(rhs)
               ~~~~~~ ^~
/host/spi-builder-workspace/Sources/Foundation/NSRegularExpression+REExtensions.swift:48:22: error: cannot find type 'MatchingFlags' in scope
            _ flags: MatchingFlags,
                     ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:32:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:50:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:82:6: error: Objective-C interoperability is disabled
    @objc
    ~^~~~

/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:36:35: error: extra arguments at positions #2, #3, #4 in call
        return Base.scheduledTimer(
                                  ^
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:38:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:16: error: constructing an object of class type 'Base' with a metatype value must use a 'required' initializer
        return Base(
               ^~~~
Foundation.Timer:3:24: note: selected non-required initializer 'init(timeInterval:repeats:block:)'
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:20: error: extra arguments at positions #2, #3, #4 in call
        return Base(
                   ^
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:56:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:40: error: cannot find 'AssociationKey' in scope
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
                                       ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:16: error: value of type 'ReerForEquatable<Timer>' has no member 'associatedValue'
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
            ~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:53: error: cannot find 'AssociationKey' in scope
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
                                                    ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:16: error: value of type 'ReerForEquatable<Timer>' has no member 'setAssociatedValue'
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
            ~~ ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/StandardLibrary/AnyObjectExtensions/AnyObjectExtensionable.swift:25:5: error: cannot find type 'Associatable' in scope
    Associatable
    ^~~~~~~~~~~~
[106/133] Compiling ReerKit NSRegularExpression+REExtensions.swift
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: warning: unknown operating system for build configuration 'os'
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'iOS'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          iOS
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'Windows'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          Windows
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:27: error: cannot find 'CTFramesetterCreateWithAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:76: error: cannot find type 'CFAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:20: error: cannot find 'CGPath' in scope
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                   ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:34: error: cannot infer contextual base in reference to member 'init'
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                ~^~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:118: error: 'nil' requires a contextual type
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                                                                                                     ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:21: error: cannot find 'CTFramesetterCreateFrame' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                    ^~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:59: error: cannot find 'CFRangeMake' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                          ^~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:84: error: 'nil' requires a contextual type
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:21: error: cannot find 'CTFrameGetLines' in scope
        let lines = CTFrameGetLines(frame) as Array
                    ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: error: generic parameter 'Element' could not be inferred in cast to 'Array'
        let lines = CTFrameGetLines(frame) as Array
                                              ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: note: explicitly specify the generic arguments to fix this issue
        let lines = CTFrameGetLines(frame) as Array
                                              ^
                                                   <Any>
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:63:55: error: cannot find type 'CTLine' in scope
        if ignoreBlankLines, let ctLines = lines as? [CTLine] {
                                                      ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:66:33: error: cannot find 'CTLineGetStringRange' in scope
                let lineRange = CTLineGetStringRange(ctLine)
                                ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:70:66: error: cannot infer contextual base in reference to member 'whitespacesAndNewlines'
                let trimmed = lineString.trimmingCharacters(in: .whitespacesAndNewlines)
                                                                ~^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:25: error: value of type 'Base' has no member 'boundingRect'
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                   ~~~~ ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:64: error: reference to member 'usesLineFragmentOrigin' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                               ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:89: error: reference to member 'usesFontLeading' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                        ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:116: error: 'nil' requires a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:94:76: error: missing argument for parameter 'string' in call
        guard !base.string.isEmpty else { return NSMutableAttributedString() }
                                                                           ^
                                                                           string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:113:130: error: missing argument for parameter 'string' in call
        guard let pattern = try? NSRegularExpression(pattern: pattern, options: options) else { return NSMutableAttributedString() }
                                                                                                                                 ^
                                                                                                                                 string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:57:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'not'
        return rhs.re.not
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:67:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'and'
        return lhs.re.and(rhs)
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:77:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'or'
        return lhs.re.or(rhs)
               ~~~~~~ ^~
/host/spi-builder-workspace/Sources/Foundation/NSRegularExpression+REExtensions.swift:48:22: error: cannot find type 'MatchingFlags' in scope
            _ flags: MatchingFlags,
                     ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:32:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:50:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:82:6: error: Objective-C interoperability is disabled
    @objc
    ~^~~~

/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:36:35: error: extra arguments at positions #2, #3, #4 in call
        return Base.scheduledTimer(
                                  ^
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:38:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:16: error: constructing an object of class type 'Base' with a metatype value must use a 'required' initializer
        return Base(
               ^~~~
Foundation.Timer:3:24: note: selected non-required initializer 'init(timeInterval:repeats:block:)'
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:20: error: extra arguments at positions #2, #3, #4 in call
        return Base(
                   ^
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:56:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:40: error: cannot find 'AssociationKey' in scope
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
                                       ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:16: error: value of type 'ReerForEquatable<Timer>' has no member 'associatedValue'
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
            ~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:53: error: cannot find 'AssociationKey' in scope
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
                                                    ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:16: error: value of type 'ReerForEquatable<Timer>' has no member 'setAssociatedValue'
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
            ~~ ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/StandardLibrary/AnyObjectExtensions/AnyObjectExtensionable.swift:25:5: error: cannot find type 'Associatable' in scope
    Associatable
    ^~~~~~~~~~~~
[107/133] Compiling ReerKit NotificationCenter+REExtensions.swift
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: warning: unknown operating system for build configuration 'os'
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'iOS'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          iOS
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'Windows'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          Windows
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:27: error: cannot find 'CTFramesetterCreateWithAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:76: error: cannot find type 'CFAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:20: error: cannot find 'CGPath' in scope
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                   ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:34: error: cannot infer contextual base in reference to member 'init'
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                ~^~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:118: error: 'nil' requires a contextual type
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                                                                                                     ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:21: error: cannot find 'CTFramesetterCreateFrame' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                    ^~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:59: error: cannot find 'CFRangeMake' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                          ^~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:84: error: 'nil' requires a contextual type
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:21: error: cannot find 'CTFrameGetLines' in scope
        let lines = CTFrameGetLines(frame) as Array
                    ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: error: generic parameter 'Element' could not be inferred in cast to 'Array'
        let lines = CTFrameGetLines(frame) as Array
                                              ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: note: explicitly specify the generic arguments to fix this issue
        let lines = CTFrameGetLines(frame) as Array
                                              ^
                                                   <Any>
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:63:55: error: cannot find type 'CTLine' in scope
        if ignoreBlankLines, let ctLines = lines as? [CTLine] {
                                                      ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:66:33: error: cannot find 'CTLineGetStringRange' in scope
                let lineRange = CTLineGetStringRange(ctLine)
                                ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:70:66: error: cannot infer contextual base in reference to member 'whitespacesAndNewlines'
                let trimmed = lineString.trimmingCharacters(in: .whitespacesAndNewlines)
                                                                ~^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:25: error: value of type 'Base' has no member 'boundingRect'
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                   ~~~~ ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:64: error: reference to member 'usesLineFragmentOrigin' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                               ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:89: error: reference to member 'usesFontLeading' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                        ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:116: error: 'nil' requires a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:94:76: error: missing argument for parameter 'string' in call
        guard !base.string.isEmpty else { return NSMutableAttributedString() }
                                                                           ^
                                                                           string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:113:130: error: missing argument for parameter 'string' in call
        guard let pattern = try? NSRegularExpression(pattern: pattern, options: options) else { return NSMutableAttributedString() }
                                                                                                                                 ^
                                                                                                                                 string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:57:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'not'
        return rhs.re.not
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:67:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'and'
        return lhs.re.and(rhs)
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:77:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'or'
        return lhs.re.or(rhs)
               ~~~~~~ ^~
/host/spi-builder-workspace/Sources/Foundation/NSRegularExpression+REExtensions.swift:48:22: error: cannot find type 'MatchingFlags' in scope
            _ flags: MatchingFlags,
                     ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:32:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:50:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:82:6: error: Objective-C interoperability is disabled
    @objc
    ~^~~~

/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:36:35: error: extra arguments at positions #2, #3, #4 in call
        return Base.scheduledTimer(
                                  ^
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:38:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:16: error: constructing an object of class type 'Base' with a metatype value must use a 'required' initializer
        return Base(
               ^~~~
Foundation.Timer:3:24: note: selected non-required initializer 'init(timeInterval:repeats:block:)'
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:20: error: extra arguments at positions #2, #3, #4 in call
        return Base(
                   ^
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:56:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:40: error: cannot find 'AssociationKey' in scope
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
                                       ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:16: error: value of type 'ReerForEquatable<Timer>' has no member 'associatedValue'
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
            ~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:53: error: cannot find 'AssociationKey' in scope
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
                                                    ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:16: error: value of type 'ReerForEquatable<Timer>' has no member 'setAssociatedValue'
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
            ~~ ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/StandardLibrary/AnyObjectExtensions/AnyObjectExtensionable.swift:25:5: error: cannot find type 'Associatable' in scope
    Associatable
    ^~~~~~~~~~~~
[108/133] Compiling ReerKit Timer+REExtensions.swift
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: warning: unknown operating system for build configuration 'os'
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'iOS'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          iOS
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'Windows'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          Windows
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:27: error: cannot find 'CTFramesetterCreateWithAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:76: error: cannot find type 'CFAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:20: error: cannot find 'CGPath' in scope
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                   ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:34: error: cannot infer contextual base in reference to member 'init'
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                ~^~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:118: error: 'nil' requires a contextual type
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                                                                                                     ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:21: error: cannot find 'CTFramesetterCreateFrame' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                    ^~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:59: error: cannot find 'CFRangeMake' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                          ^~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:84: error: 'nil' requires a contextual type
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:21: error: cannot find 'CTFrameGetLines' in scope
        let lines = CTFrameGetLines(frame) as Array
                    ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: error: generic parameter 'Element' could not be inferred in cast to 'Array'
        let lines = CTFrameGetLines(frame) as Array
                                              ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: note: explicitly specify the generic arguments to fix this issue
        let lines = CTFrameGetLines(frame) as Array
                                              ^
                                                   <Any>
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:63:55: error: cannot find type 'CTLine' in scope
        if ignoreBlankLines, let ctLines = lines as? [CTLine] {
                                                      ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:66:33: error: cannot find 'CTLineGetStringRange' in scope
                let lineRange = CTLineGetStringRange(ctLine)
                                ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:70:66: error: cannot infer contextual base in reference to member 'whitespacesAndNewlines'
                let trimmed = lineString.trimmingCharacters(in: .whitespacesAndNewlines)
                                                                ~^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:25: error: value of type 'Base' has no member 'boundingRect'
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                   ~~~~ ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:64: error: reference to member 'usesLineFragmentOrigin' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                               ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:89: error: reference to member 'usesFontLeading' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                        ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:116: error: 'nil' requires a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:94:76: error: missing argument for parameter 'string' in call
        guard !base.string.isEmpty else { return NSMutableAttributedString() }
                                                                           ^
                                                                           string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:113:130: error: missing argument for parameter 'string' in call
        guard let pattern = try? NSRegularExpression(pattern: pattern, options: options) else { return NSMutableAttributedString() }
                                                                                                                                 ^
                                                                                                                                 string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:57:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'not'
        return rhs.re.not
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:67:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'and'
        return lhs.re.and(rhs)
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:77:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'or'
        return lhs.re.or(rhs)
               ~~~~~~ ^~
/host/spi-builder-workspace/Sources/Foundation/NSRegularExpression+REExtensions.swift:48:22: error: cannot find type 'MatchingFlags' in scope
            _ flags: MatchingFlags,
                     ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:32:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:50:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:82:6: error: Objective-C interoperability is disabled
    @objc
    ~^~~~

/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:36:35: error: extra arguments at positions #2, #3, #4 in call
        return Base.scheduledTimer(
                                  ^
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:38:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:16: error: constructing an object of class type 'Base' with a metatype value must use a 'required' initializer
        return Base(
               ^~~~
Foundation.Timer:3:24: note: selected non-required initializer 'init(timeInterval:repeats:block:)'
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:20: error: extra arguments at positions #2, #3, #4 in call
        return Base(
                   ^
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:56:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:40: error: cannot find 'AssociationKey' in scope
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
                                       ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:16: error: value of type 'ReerForEquatable<Timer>' has no member 'associatedValue'
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
            ~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:53: error: cannot find 'AssociationKey' in scope
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
                                                    ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:16: error: value of type 'ReerForEquatable<Timer>' has no member 'setAssociatedValue'
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
            ~~ ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/StandardLibrary/AnyObjectExtensions/AnyObjectExtensionable.swift:25:5: error: cannot find type 'Associatable' in scope
    Associatable
    ^~~~~~~~~~~~
[109/133] Compiling ReerKit URL+REExtensions.swift
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: warning: unknown operating system for build configuration 'os'
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'iOS'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          iOS
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'Windows'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          Windows
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:27: error: cannot find 'CTFramesetterCreateWithAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:76: error: cannot find type 'CFAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:20: error: cannot find 'CGPath' in scope
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                   ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:34: error: cannot infer contextual base in reference to member 'init'
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                ~^~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:118: error: 'nil' requires a contextual type
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                                                                                                     ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:21: error: cannot find 'CTFramesetterCreateFrame' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                    ^~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:59: error: cannot find 'CFRangeMake' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                          ^~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:84: error: 'nil' requires a contextual type
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:21: error: cannot find 'CTFrameGetLines' in scope
        let lines = CTFrameGetLines(frame) as Array
                    ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: error: generic parameter 'Element' could not be inferred in cast to 'Array'
        let lines = CTFrameGetLines(frame) as Array
                                              ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: note: explicitly specify the generic arguments to fix this issue
        let lines = CTFrameGetLines(frame) as Array
                                              ^
                                                   <Any>
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:63:55: error: cannot find type 'CTLine' in scope
        if ignoreBlankLines, let ctLines = lines as? [CTLine] {
                                                      ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:66:33: error: cannot find 'CTLineGetStringRange' in scope
                let lineRange = CTLineGetStringRange(ctLine)
                                ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:70:66: error: cannot infer contextual base in reference to member 'whitespacesAndNewlines'
                let trimmed = lineString.trimmingCharacters(in: .whitespacesAndNewlines)
                                                                ~^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:25: error: value of type 'Base' has no member 'boundingRect'
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                   ~~~~ ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:64: error: reference to member 'usesLineFragmentOrigin' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                               ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:89: error: reference to member 'usesFontLeading' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                        ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:116: error: 'nil' requires a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:94:76: error: missing argument for parameter 'string' in call
        guard !base.string.isEmpty else { return NSMutableAttributedString() }
                                                                           ^
                                                                           string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:113:130: error: missing argument for parameter 'string' in call
        guard let pattern = try? NSRegularExpression(pattern: pattern, options: options) else { return NSMutableAttributedString() }
                                                                                                                                 ^
                                                                                                                                 string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:57:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'not'
        return rhs.re.not
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:67:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'and'
        return lhs.re.and(rhs)
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:77:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'or'
        return lhs.re.or(rhs)
               ~~~~~~ ^~
/host/spi-builder-workspace/Sources/Foundation/NSRegularExpression+REExtensions.swift:48:22: error: cannot find type 'MatchingFlags' in scope
            _ flags: MatchingFlags,
                     ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:32:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:50:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:82:6: error: Objective-C interoperability is disabled
    @objc
    ~^~~~

/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:36:35: error: extra arguments at positions #2, #3, #4 in call
        return Base.scheduledTimer(
                                  ^
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:38:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:16: error: constructing an object of class type 'Base' with a metatype value must use a 'required' initializer
        return Base(
               ^~~~
Foundation.Timer:3:24: note: selected non-required initializer 'init(timeInterval:repeats:block:)'
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:20: error: extra arguments at positions #2, #3, #4 in call
        return Base(
                   ^
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:56:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:40: error: cannot find 'AssociationKey' in scope
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
                                       ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:16: error: value of type 'ReerForEquatable<Timer>' has no member 'associatedValue'
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
            ~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:53: error: cannot find 'AssociationKey' in scope
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
                                                    ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:16: error: value of type 'ReerForEquatable<Timer>' has no member 'setAssociatedValue'
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
            ~~ ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/StandardLibrary/AnyObjectExtensions/AnyObjectExtensionable.swift:25:5: error: cannot find type 'Associatable' in scope
    Associatable
    ^~~~~~~~~~~~
[110/133] Compiling ReerKit URLRequest+REExtensions.swift
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: warning: unknown operating system for build configuration 'os'
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'iOS'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          iOS
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'Windows'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          Windows
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:27: error: cannot find 'CTFramesetterCreateWithAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:76: error: cannot find type 'CFAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:20: error: cannot find 'CGPath' in scope
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                   ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:34: error: cannot infer contextual base in reference to member 'init'
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                ~^~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:118: error: 'nil' requires a contextual type
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                                                                                                     ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:21: error: cannot find 'CTFramesetterCreateFrame' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                    ^~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:59: error: cannot find 'CFRangeMake' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                          ^~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:84: error: 'nil' requires a contextual type
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:21: error: cannot find 'CTFrameGetLines' in scope
        let lines = CTFrameGetLines(frame) as Array
                    ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: error: generic parameter 'Element' could not be inferred in cast to 'Array'
        let lines = CTFrameGetLines(frame) as Array
                                              ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: note: explicitly specify the generic arguments to fix this issue
        let lines = CTFrameGetLines(frame) as Array
                                              ^
                                                   <Any>
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:63:55: error: cannot find type 'CTLine' in scope
        if ignoreBlankLines, let ctLines = lines as? [CTLine] {
                                                      ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:66:33: error: cannot find 'CTLineGetStringRange' in scope
                let lineRange = CTLineGetStringRange(ctLine)
                                ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:70:66: error: cannot infer contextual base in reference to member 'whitespacesAndNewlines'
                let trimmed = lineString.trimmingCharacters(in: .whitespacesAndNewlines)
                                                                ~^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:25: error: value of type 'Base' has no member 'boundingRect'
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                   ~~~~ ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:64: error: reference to member 'usesLineFragmentOrigin' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                               ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:89: error: reference to member 'usesFontLeading' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                        ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:116: error: 'nil' requires a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:94:76: error: missing argument for parameter 'string' in call
        guard !base.string.isEmpty else { return NSMutableAttributedString() }
                                                                           ^
                                                                           string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:113:130: error: missing argument for parameter 'string' in call
        guard let pattern = try? NSRegularExpression(pattern: pattern, options: options) else { return NSMutableAttributedString() }
                                                                                                                                 ^
                                                                                                                                 string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:57:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'not'
        return rhs.re.not
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:67:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'and'
        return lhs.re.and(rhs)
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:77:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'or'
        return lhs.re.or(rhs)
               ~~~~~~ ^~
/host/spi-builder-workspace/Sources/Foundation/NSRegularExpression+REExtensions.swift:48:22: error: cannot find type 'MatchingFlags' in scope
            _ flags: MatchingFlags,
                     ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:32:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:50:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:82:6: error: Objective-C interoperability is disabled
    @objc
    ~^~~~

/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:36:35: error: extra arguments at positions #2, #3, #4 in call
        return Base.scheduledTimer(
                                  ^
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:38:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:16: error: constructing an object of class type 'Base' with a metatype value must use a 'required' initializer
        return Base(
               ^~~~
Foundation.Timer:3:24: note: selected non-required initializer 'init(timeInterval:repeats:block:)'
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:20: error: extra arguments at positions #2, #3, #4 in call
        return Base(
                   ^
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:56:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:40: error: cannot find 'AssociationKey' in scope
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
                                       ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:16: error: value of type 'ReerForEquatable<Timer>' has no member 'associatedValue'
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
            ~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:53: error: cannot find 'AssociationKey' in scope
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
                                                    ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:16: error: value of type 'ReerForEquatable<Timer>' has no member 'setAssociatedValue'
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
            ~~ ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/StandardLibrary/AnyObjectExtensions/AnyObjectExtensionable.swift:25:5: error: cannot find type 'Associatable' in scope
    Associatable
    ^~~~~~~~~~~~
[111/133] Compiling ReerKit ReerKit.swift
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: warning: unknown operating system for build configuration 'os'
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'iOS'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          iOS
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'Windows'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          Windows
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:27: error: cannot find 'CTFramesetterCreateWithAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:76: error: cannot find type 'CFAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:20: error: cannot find 'CGPath' in scope
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                   ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:34: error: cannot infer contextual base in reference to member 'init'
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                ~^~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:118: error: 'nil' requires a contextual type
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                                                                                                     ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:21: error: cannot find 'CTFramesetterCreateFrame' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                    ^~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:59: error: cannot find 'CFRangeMake' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                          ^~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:84: error: 'nil' requires a contextual type
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:21: error: cannot find 'CTFrameGetLines' in scope
        let lines = CTFrameGetLines(frame) as Array
                    ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: error: generic parameter 'Element' could not be inferred in cast to 'Array'
        let lines = CTFrameGetLines(frame) as Array
                                              ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: note: explicitly specify the generic arguments to fix this issue
        let lines = CTFrameGetLines(frame) as Array
                                              ^
                                                   <Any>
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:63:55: error: cannot find type 'CTLine' in scope
        if ignoreBlankLines, let ctLines = lines as? [CTLine] {
                                                      ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:66:33: error: cannot find 'CTLineGetStringRange' in scope
                let lineRange = CTLineGetStringRange(ctLine)
                                ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:70:66: error: cannot infer contextual base in reference to member 'whitespacesAndNewlines'
                let trimmed = lineString.trimmingCharacters(in: .whitespacesAndNewlines)
                                                                ~^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:25: error: value of type 'Base' has no member 'boundingRect'
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                   ~~~~ ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:64: error: reference to member 'usesLineFragmentOrigin' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                               ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:89: error: reference to member 'usesFontLeading' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                        ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:116: error: 'nil' requires a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:94:76: error: missing argument for parameter 'string' in call
        guard !base.string.isEmpty else { return NSMutableAttributedString() }
                                                                           ^
                                                                           string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:113:130: error: missing argument for parameter 'string' in call
        guard let pattern = try? NSRegularExpression(pattern: pattern, options: options) else { return NSMutableAttributedString() }
                                                                                                                                 ^
                                                                                                                                 string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:57:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'not'
        return rhs.re.not
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:67:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'and'
        return lhs.re.and(rhs)
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:77:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'or'
        return lhs.re.or(rhs)
               ~~~~~~ ^~
/host/spi-builder-workspace/Sources/Foundation/NSRegularExpression+REExtensions.swift:48:22: error: cannot find type 'MatchingFlags' in scope
            _ flags: MatchingFlags,
                     ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:32:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:50:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:82:6: error: Objective-C interoperability is disabled
    @objc
    ~^~~~

/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:36:35: error: extra arguments at positions #2, #3, #4 in call
        return Base.scheduledTimer(
                                  ^
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:38:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:16: error: constructing an object of class type 'Base' with a metatype value must use a 'required' initializer
        return Base(
               ^~~~
Foundation.Timer:3:24: note: selected non-required initializer 'init(timeInterval:repeats:block:)'
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:20: error: extra arguments at positions #2, #3, #4 in call
        return Base(
                   ^
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:56:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:40: error: cannot find 'AssociationKey' in scope
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
                                       ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:16: error: value of type 'ReerForEquatable<Timer>' has no member 'associatedValue'
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
            ~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:53: error: cannot find 'AssociationKey' in scope
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
                                                    ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:16: error: value of type 'ReerForEquatable<Timer>' has no member 'setAssociatedValue'
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
            ~~ ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/StandardLibrary/AnyObjectExtensions/AnyObjectExtensionable.swift:25:5: error: cannot find type 'Associatable' in scope
    Associatable
    ^~~~~~~~~~~~
[112/133] Compiling ReerKit Punycode.swift
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: warning: unknown operating system for build configuration 'os'
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'iOS'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          iOS
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'Windows'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          Windows
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:27: error: cannot find 'CTFramesetterCreateWithAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:76: error: cannot find type 'CFAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:20: error: cannot find 'CGPath' in scope
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                   ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:34: error: cannot infer contextual base in reference to member 'init'
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                ~^~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:118: error: 'nil' requires a contextual type
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                                                                                                     ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:21: error: cannot find 'CTFramesetterCreateFrame' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                    ^~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:59: error: cannot find 'CFRangeMake' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                          ^~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:84: error: 'nil' requires a contextual type
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:21: error: cannot find 'CTFrameGetLines' in scope
        let lines = CTFrameGetLines(frame) as Array
                    ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: error: generic parameter 'Element' could not be inferred in cast to 'Array'
        let lines = CTFrameGetLines(frame) as Array
                                              ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: note: explicitly specify the generic arguments to fix this issue
        let lines = CTFrameGetLines(frame) as Array
                                              ^
                                                   <Any>
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:63:55: error: cannot find type 'CTLine' in scope
        if ignoreBlankLines, let ctLines = lines as? [CTLine] {
                                                      ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:66:33: error: cannot find 'CTLineGetStringRange' in scope
                let lineRange = CTLineGetStringRange(ctLine)
                                ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:70:66: error: cannot infer contextual base in reference to member 'whitespacesAndNewlines'
                let trimmed = lineString.trimmingCharacters(in: .whitespacesAndNewlines)
                                                                ~^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:25: error: value of type 'Base' has no member 'boundingRect'
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                   ~~~~ ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:64: error: reference to member 'usesLineFragmentOrigin' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                               ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:89: error: reference to member 'usesFontLeading' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                        ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:116: error: 'nil' requires a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:94:76: error: missing argument for parameter 'string' in call
        guard !base.string.isEmpty else { return NSMutableAttributedString() }
                                                                           ^
                                                                           string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:113:130: error: missing argument for parameter 'string' in call
        guard let pattern = try? NSRegularExpression(pattern: pattern, options: options) else { return NSMutableAttributedString() }
                                                                                                                                 ^
                                                                                                                                 string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:57:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'not'
        return rhs.re.not
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:67:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'and'
        return lhs.re.and(rhs)
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:77:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'or'
        return lhs.re.or(rhs)
               ~~~~~~ ^~
/host/spi-builder-workspace/Sources/Foundation/NSRegularExpression+REExtensions.swift:48:22: error: cannot find type 'MatchingFlags' in scope
            _ flags: MatchingFlags,
                     ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:32:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:50:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:82:6: error: Objective-C interoperability is disabled
    @objc
    ~^~~~

/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:36:35: error: extra arguments at positions #2, #3, #4 in call
        return Base.scheduledTimer(
                                  ^
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:38:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:16: error: constructing an object of class type 'Base' with a metatype value must use a 'required' initializer
        return Base(
               ^~~~
Foundation.Timer:3:24: note: selected non-required initializer 'init(timeInterval:repeats:block:)'
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:20: error: extra arguments at positions #2, #3, #4 in call
        return Base(
                   ^
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:56:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:40: error: cannot find 'AssociationKey' in scope
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
                                       ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:16: error: value of type 'ReerForEquatable<Timer>' has no member 'associatedValue'
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
            ~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:53: error: cannot find 'AssociationKey' in scope
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
                                                    ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:16: error: value of type 'ReerForEquatable<Timer>' has no member 'setAssociatedValue'
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
            ~~ ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/StandardLibrary/AnyObjectExtensions/AnyObjectExtensionable.swift:25:5: error: cannot find type 'Associatable' in scope
    Associatable
    ^~~~~~~~~~~~
[113/133] Compiling ReerKit RSA.swift
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: warning: unknown operating system for build configuration 'os'
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'iOS'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          iOS
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'Windows'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          Windows
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:27: error: cannot find 'CTFramesetterCreateWithAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:76: error: cannot find type 'CFAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:20: error: cannot find 'CGPath' in scope
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                   ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:34: error: cannot infer contextual base in reference to member 'init'
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                ~^~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:118: error: 'nil' requires a contextual type
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                                                                                                     ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:21: error: cannot find 'CTFramesetterCreateFrame' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                    ^~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:59: error: cannot find 'CFRangeMake' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                          ^~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:84: error: 'nil' requires a contextual type
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:21: error: cannot find 'CTFrameGetLines' in scope
        let lines = CTFrameGetLines(frame) as Array
                    ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: error: generic parameter 'Element' could not be inferred in cast to 'Array'
        let lines = CTFrameGetLines(frame) as Array
                                              ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: note: explicitly specify the generic arguments to fix this issue
        let lines = CTFrameGetLines(frame) as Array
                                              ^
                                                   <Any>
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:63:55: error: cannot find type 'CTLine' in scope
        if ignoreBlankLines, let ctLines = lines as? [CTLine] {
                                                      ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:66:33: error: cannot find 'CTLineGetStringRange' in scope
                let lineRange = CTLineGetStringRange(ctLine)
                                ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:70:66: error: cannot infer contextual base in reference to member 'whitespacesAndNewlines'
                let trimmed = lineString.trimmingCharacters(in: .whitespacesAndNewlines)
                                                                ~^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:25: error: value of type 'Base' has no member 'boundingRect'
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                   ~~~~ ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:64: error: reference to member 'usesLineFragmentOrigin' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                               ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:89: error: reference to member 'usesFontLeading' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                        ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:116: error: 'nil' requires a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:94:76: error: missing argument for parameter 'string' in call
        guard !base.string.isEmpty else { return NSMutableAttributedString() }
                                                                           ^
                                                                           string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:113:130: error: missing argument for parameter 'string' in call
        guard let pattern = try? NSRegularExpression(pattern: pattern, options: options) else { return NSMutableAttributedString() }
                                                                                                                                 ^
                                                                                                                                 string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:57:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'not'
        return rhs.re.not
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:67:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'and'
        return lhs.re.and(rhs)
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:77:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'or'
        return lhs.re.or(rhs)
               ~~~~~~ ^~
/host/spi-builder-workspace/Sources/Foundation/NSRegularExpression+REExtensions.swift:48:22: error: cannot find type 'MatchingFlags' in scope
            _ flags: MatchingFlags,
                     ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:32:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:50:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:82:6: error: Objective-C interoperability is disabled
    @objc
    ~^~~~

/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:36:35: error: extra arguments at positions #2, #3, #4 in call
        return Base.scheduledTimer(
                                  ^
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:38:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:16: error: constructing an object of class type 'Base' with a metatype value must use a 'required' initializer
        return Base(
               ^~~~
Foundation.Timer:3:24: note: selected non-required initializer 'init(timeInterval:repeats:block:)'
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:20: error: extra arguments at positions #2, #3, #4 in call
        return Base(
                   ^
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:56:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:40: error: cannot find 'AssociationKey' in scope
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
                                       ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:16: error: value of type 'ReerForEquatable<Timer>' has no member 'associatedValue'
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
            ~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:53: error: cannot find 'AssociationKey' in scope
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
                                                    ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:16: error: value of type 'ReerForEquatable<Timer>' has no member 'setAssociatedValue'
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
            ~~ ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/StandardLibrary/AnyObjectExtensions/AnyObjectExtensionable.swift:25:5: error: cannot find type 'Associatable' in scope
    Associatable
    ^~~~~~~~~~~~
[114/133] Compiling ReerKit Color+REExtensions.swift
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: warning: unknown operating system for build configuration 'os'
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'iOS'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          iOS
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'Windows'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          Windows
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:27: error: cannot find 'CTFramesetterCreateWithAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:76: error: cannot find type 'CFAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:20: error: cannot find 'CGPath' in scope
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                   ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:34: error: cannot infer contextual base in reference to member 'init'
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                ~^~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:118: error: 'nil' requires a contextual type
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                                                                                                     ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:21: error: cannot find 'CTFramesetterCreateFrame' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                    ^~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:59: error: cannot find 'CFRangeMake' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                          ^~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:84: error: 'nil' requires a contextual type
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:21: error: cannot find 'CTFrameGetLines' in scope
        let lines = CTFrameGetLines(frame) as Array
                    ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: error: generic parameter 'Element' could not be inferred in cast to 'Array'
        let lines = CTFrameGetLines(frame) as Array
                                              ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: note: explicitly specify the generic arguments to fix this issue
        let lines = CTFrameGetLines(frame) as Array
                                              ^
                                                   <Any>
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:63:55: error: cannot find type 'CTLine' in scope
        if ignoreBlankLines, let ctLines = lines as? [CTLine] {
                                                      ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:66:33: error: cannot find 'CTLineGetStringRange' in scope
                let lineRange = CTLineGetStringRange(ctLine)
                                ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:70:66: error: cannot infer contextual base in reference to member 'whitespacesAndNewlines'
                let trimmed = lineString.trimmingCharacters(in: .whitespacesAndNewlines)
                                                                ~^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:25: error: value of type 'Base' has no member 'boundingRect'
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                   ~~~~ ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:64: error: reference to member 'usesLineFragmentOrigin' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                               ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:89: error: reference to member 'usesFontLeading' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                        ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:116: error: 'nil' requires a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:94:76: error: missing argument for parameter 'string' in call
        guard !base.string.isEmpty else { return NSMutableAttributedString() }
                                                                           ^
                                                                           string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:113:130: error: missing argument for parameter 'string' in call
        guard let pattern = try? NSRegularExpression(pattern: pattern, options: options) else { return NSMutableAttributedString() }
                                                                                                                                 ^
                                                                                                                                 string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:57:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'not'
        return rhs.re.not
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:67:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'and'
        return lhs.re.and(rhs)
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:77:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'or'
        return lhs.re.or(rhs)
               ~~~~~~ ^~
/host/spi-builder-workspace/Sources/Foundation/NSRegularExpression+REExtensions.swift:48:22: error: cannot find type 'MatchingFlags' in scope
            _ flags: MatchingFlags,
                     ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:32:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:50:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:82:6: error: Objective-C interoperability is disabled
    @objc
    ~^~~~

/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:36:35: error: extra arguments at positions #2, #3, #4 in call
        return Base.scheduledTimer(
                                  ^
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:38:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:16: error: constructing an object of class type 'Base' with a metatype value must use a 'required' initializer
        return Base(
               ^~~~
Foundation.Timer:3:24: note: selected non-required initializer 'init(timeInterval:repeats:block:)'
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:20: error: extra arguments at positions #2, #3, #4 in call
        return Base(
                   ^
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:56:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:40: error: cannot find 'AssociationKey' in scope
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
                                       ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:16: error: value of type 'ReerForEquatable<Timer>' has no member 'associatedValue'
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
            ~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:53: error: cannot find 'AssociationKey' in scope
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
                                                    ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:16: error: value of type 'ReerForEquatable<Timer>' has no member 'setAssociatedValue'
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
            ~~ ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/StandardLibrary/AnyObjectExtensions/AnyObjectExtensionable.swift:25:5: error: cannot find type 'Associatable' in scope
    Associatable
    ^~~~~~~~~~~~
[115/133] Compiling ReerKit EdgeInsets+REExtensions.swift
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: warning: unknown operating system for build configuration 'os'
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'iOS'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          iOS
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'Windows'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          Windows
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:27: error: cannot find 'CTFramesetterCreateWithAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:76: error: cannot find type 'CFAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:20: error: cannot find 'CGPath' in scope
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                   ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:34: error: cannot infer contextual base in reference to member 'init'
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                ~^~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:118: error: 'nil' requires a contextual type
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                                                                                                     ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:21: error: cannot find 'CTFramesetterCreateFrame' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                    ^~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:59: error: cannot find 'CFRangeMake' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                          ^~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:84: error: 'nil' requires a contextual type
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:21: error: cannot find 'CTFrameGetLines' in scope
        let lines = CTFrameGetLines(frame) as Array
                    ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: error: generic parameter 'Element' could not be inferred in cast to 'Array'
        let lines = CTFrameGetLines(frame) as Array
                                              ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: note: explicitly specify the generic arguments to fix this issue
        let lines = CTFrameGetLines(frame) as Array
                                              ^
                                                   <Any>
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:63:55: error: cannot find type 'CTLine' in scope
        if ignoreBlankLines, let ctLines = lines as? [CTLine] {
                                                      ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:66:33: error: cannot find 'CTLineGetStringRange' in scope
                let lineRange = CTLineGetStringRange(ctLine)
                                ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:70:66: error: cannot infer contextual base in reference to member 'whitespacesAndNewlines'
                let trimmed = lineString.trimmingCharacters(in: .whitespacesAndNewlines)
                                                                ~^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:25: error: value of type 'Base' has no member 'boundingRect'
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                   ~~~~ ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:64: error: reference to member 'usesLineFragmentOrigin' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                               ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:89: error: reference to member 'usesFontLeading' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                        ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:116: error: 'nil' requires a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:94:76: error: missing argument for parameter 'string' in call
        guard !base.string.isEmpty else { return NSMutableAttributedString() }
                                                                           ^
                                                                           string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:113:130: error: missing argument for parameter 'string' in call
        guard let pattern = try? NSRegularExpression(pattern: pattern, options: options) else { return NSMutableAttributedString() }
                                                                                                                                 ^
                                                                                                                                 string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:57:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'not'
        return rhs.re.not
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:67:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'and'
        return lhs.re.and(rhs)
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:77:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'or'
        return lhs.re.or(rhs)
               ~~~~~~ ^~
/host/spi-builder-workspace/Sources/Foundation/NSRegularExpression+REExtensions.swift:48:22: error: cannot find type 'MatchingFlags' in scope
            _ flags: MatchingFlags,
                     ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:32:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:50:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:82:6: error: Objective-C interoperability is disabled
    @objc
    ~^~~~

/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:36:35: error: extra arguments at positions #2, #3, #4 in call
        return Base.scheduledTimer(
                                  ^
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:38:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:16: error: constructing an object of class type 'Base' with a metatype value must use a 'required' initializer
        return Base(
               ^~~~
Foundation.Timer:3:24: note: selected non-required initializer 'init(timeInterval:repeats:block:)'
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:20: error: extra arguments at positions #2, #3, #4 in call
        return Base(
                   ^
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:56:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:40: error: cannot find 'AssociationKey' in scope
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
                                       ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:16: error: value of type 'ReerForEquatable<Timer>' has no member 'associatedValue'
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
            ~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:53: error: cannot find 'AssociationKey' in scope
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
                                                    ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:16: error: value of type 'ReerForEquatable<Timer>' has no member 'setAssociatedValue'
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
            ~~ ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/StandardLibrary/AnyObjectExtensions/AnyObjectExtensionable.swift:25:5: error: cannot find type 'Associatable' in scope
    Associatable
    ^~~~~~~~~~~~
[116/133] Compiling ReerKit Font+REExtensions.swift
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: warning: unknown operating system for build configuration 'os'
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'iOS'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          iOS
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'Windows'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          Windows
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:27: error: cannot find 'CTFramesetterCreateWithAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:76: error: cannot find type 'CFAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:20: error: cannot find 'CGPath' in scope
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                   ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:34: error: cannot infer contextual base in reference to member 'init'
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                ~^~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:118: error: 'nil' requires a contextual type
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                                                                                                     ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:21: error: cannot find 'CTFramesetterCreateFrame' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                    ^~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:59: error: cannot find 'CFRangeMake' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                          ^~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:84: error: 'nil' requires a contextual type
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:21: error: cannot find 'CTFrameGetLines' in scope
        let lines = CTFrameGetLines(frame) as Array
                    ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: error: generic parameter 'Element' could not be inferred in cast to 'Array'
        let lines = CTFrameGetLines(frame) as Array
                                              ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: note: explicitly specify the generic arguments to fix this issue
        let lines = CTFrameGetLines(frame) as Array
                                              ^
                                                   <Any>
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:63:55: error: cannot find type 'CTLine' in scope
        if ignoreBlankLines, let ctLines = lines as? [CTLine] {
                                                      ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:66:33: error: cannot find 'CTLineGetStringRange' in scope
                let lineRange = CTLineGetStringRange(ctLine)
                                ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:70:66: error: cannot infer contextual base in reference to member 'whitespacesAndNewlines'
                let trimmed = lineString.trimmingCharacters(in: .whitespacesAndNewlines)
                                                                ~^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:25: error: value of type 'Base' has no member 'boundingRect'
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                   ~~~~ ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:64: error: reference to member 'usesLineFragmentOrigin' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                               ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:89: error: reference to member 'usesFontLeading' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                        ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:116: error: 'nil' requires a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:94:76: error: missing argument for parameter 'string' in call
        guard !base.string.isEmpty else { return NSMutableAttributedString() }
                                                                           ^
                                                                           string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:113:130: error: missing argument for parameter 'string' in call
        guard let pattern = try? NSRegularExpression(pattern: pattern, options: options) else { return NSMutableAttributedString() }
                                                                                                                                 ^
                                                                                                                                 string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:57:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'not'
        return rhs.re.not
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:67:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'and'
        return lhs.re.and(rhs)
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:77:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'or'
        return lhs.re.or(rhs)
               ~~~~~~ ^~
/host/spi-builder-workspace/Sources/Foundation/NSRegularExpression+REExtensions.swift:48:22: error: cannot find type 'MatchingFlags' in scope
            _ flags: MatchingFlags,
                     ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:32:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:50:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:82:6: error: Objective-C interoperability is disabled
    @objc
    ~^~~~

/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:36:35: error: extra arguments at positions #2, #3, #4 in call
        return Base.scheduledTimer(
                                  ^
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:38:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:16: error: constructing an object of class type 'Base' with a metatype value must use a 'required' initializer
        return Base(
               ^~~~
Foundation.Timer:3:24: note: selected non-required initializer 'init(timeInterval:repeats:block:)'
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:20: error: extra arguments at positions #2, #3, #4 in call
        return Base(
                   ^
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:56:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:40: error: cannot find 'AssociationKey' in scope
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
                                       ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:16: error: value of type 'ReerForEquatable<Timer>' has no member 'associatedValue'
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
            ~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:53: error: cannot find 'AssociationKey' in scope
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
                                                    ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:16: error: value of type 'ReerForEquatable<Timer>' has no member 'setAssociatedValue'
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
            ~~ ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/StandardLibrary/AnyObjectExtensions/AnyObjectExtensionable.swift:25:5: error: cannot find type 'Associatable' in scope
    Associatable
    ^~~~~~~~~~~~
[117/133] Compiling ReerKit AnyObjectExtensionable.swift
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: warning: unknown operating system for build configuration 'os'
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'iOS'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          iOS
/host/spi-builder-workspace/Sources/Shared/Color+REExtensions.swift:188:43: note: did you mean 'Windows'?
        #elseif os(iOS) || os(tvOS) || os(visionOS)
                                          ^~~~~~~~
                                          Windows
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:27: error: cannot find 'CTFramesetterCreateWithAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:53:76: error: cannot find type 'CFAttributedString' in scope
        let framesetter = CTFramesetterCreateWithAttributedString(base as! CFAttributedString)
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:20: error: cannot find 'CGPath' in scope
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                   ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:34: error: cannot infer contextual base in reference to member 'init'
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                ~^~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:54:118: error: 'nil' requires a contextual type
        let path = CGPath(rect: .init(x: 0, y: 0, width: width, height: CGFloat.greatestFiniteMagnitude), transform: nil)
                                                                                                                     ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:21: error: cannot find 'CTFramesetterCreateFrame' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                    ^~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:59: error: cannot find 'CFRangeMake' in scope
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                          ^~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:55:84: error: 'nil' requires a contextual type
        let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, nil)
                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:21: error: cannot find 'CTFrameGetLines' in scope
        let lines = CTFrameGetLines(frame) as Array
                    ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: error: generic parameter 'Element' could not be inferred in cast to 'Array'
        let lines = CTFrameGetLines(frame) as Array
                                              ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:56:47: note: explicitly specify the generic arguments to fix this issue
        let lines = CTFrameGetLines(frame) as Array
                                              ^
                                                   <Any>
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:63:55: error: cannot find type 'CTLine' in scope
        if ignoreBlankLines, let ctLines = lines as? [CTLine] {
                                                      ^~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:66:33: error: cannot find 'CTLineGetStringRange' in scope
                let lineRange = CTLineGetStringRange(ctLine)
                                ^~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:70:66: error: cannot infer contextual base in reference to member 'whitespacesAndNewlines'
                let trimmed = lineString.trimmingCharacters(in: .whitespacesAndNewlines)
                                                                ~^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:25: error: value of type 'Base' has no member 'boundingRect'
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                   ~~~~ ^~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:64: error: reference to member 'usesLineFragmentOrigin' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                               ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:89: error: reference to member 'usesFontLeading' cannot be resolved without a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                        ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:85:116: error: 'nil' requires a contextual type
        let rect = base.boundingRect(with: maxSize, options: [.usesLineFragmentOrigin, .usesFontLeading], context: nil)
                                                                                                                   ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:94:76: error: missing argument for parameter 'string' in call
        guard !base.string.isEmpty else { return NSMutableAttributedString() }
                                                                           ^
                                                                           string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSAttributedString+REExtensions.swift:113:130: error: missing argument for parameter 'string' in call
        guard let pattern = try? NSRegularExpression(pattern: pattern, options: options) else { return NSMutableAttributedString() }
                                                                                                                                 ^
                                                                                                                                 string: <#String#>
Foundation.NSMutableAttributedString:16:21: note: 'init(string:)' declared here
    override public init(string: String)
                    ^
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:57:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'not'
        return rhs.re.not
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:67:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'and'
        return lhs.re.and(rhs)
               ~~~~~~ ^~~
/host/spi-builder-workspace/Sources/Foundation/NSPredicate+REExtensions.swift:77:23: error: value of type 'ReerForEquatable<NSPredicate>' has no member 'or'
        return lhs.re.or(rhs)
               ~~~~~~ ^~
/host/spi-builder-workspace/Sources/Foundation/NSRegularExpression+REExtensions.swift:48:22: error: cannot find type 'MatchingFlags' in scope
            _ flags: MatchingFlags,
                     ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:32:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:50:19: error: cannot find type 'Selector' in scope
        selector: Selector,
                  ^~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:82:6: error: Objective-C interoperability is disabled
    @objc
    ~^~~~

/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:36:35: error: extra arguments at positions #2, #3, #4 in call
        return Base.scheduledTimer(
                                  ^
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:38:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:4:21: note: 'scheduledTimer(withTimeInterval:repeats:block:)' declared here
    open class func scheduledTimer(withTimeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void) -> Timer
                    ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:16: error: constructing an object of class type 'Base' with a metatype value must use a 'required' initializer
        return Base(
               ^~~~
Foundation.Timer:3:24: note: selected non-required initializer 'init(timeInterval:repeats:block:)'
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:54:20: error: extra arguments at positions #2, #3, #4 in call
        return Base(
                   ^
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:56:50: error: missing argument for parameter 'block' in call
            target: WeakProxy(target: weakTarget),
                                                 ^
                                                 , block: <#(Timer) -> Void#>
Foundation.Timer:3:24: note: 'init(timeInterval:repeats:block:)' declared here
    public convenience init(timeInterval interval: TimeInterval, repeats: Bool, block: @escaping (Timer) -> Void)
                       ^
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:40: error: cannot find 'AssociationKey' in scope
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
                                       ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:85:16: error: value of type 'ReerForEquatable<Timer>' has no member 'associatedValue'
            re.associatedValue(forKey: AssociationKey(#function as StaticString), default: 0)
            ~~ ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:53: error: cannot find 'AssociationKey' in scope
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
                                                    ^~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/Foundation/Timer+REExtensions.swift:88:16: error: value of type 'ReerForEquatable<Timer>' has no member 'setAssociatedValue'
            re.setAssociatedValue(newValue, forKey: AssociationKey(#function as StaticString))
            ~~ ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/StandardLibrary/AnyObjectExtensions/AnyObjectExtensionable.swift:25:5: error: cannot find type 'Associatable' in scope
    Associatable
    ^~~~~~~~~~~~
[118/133] Compiling ReerKit UISegmentedControl+REExtensions.swift
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: warning: unknown operating system for build configuration 'os'
        #if !os(visionOS)
                ^
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'iOS'?
        #if !os(visionOS)
                ^~~~~~~~
                iOS
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'Windows'?
        #if !os(visionOS)
                ^~~~~~~~
                Windows
[119/133] Compiling ReerKit UISlider+REExtensions.swift
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: warning: unknown operating system for build configuration 'os'
        #if !os(visionOS)
                ^
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'iOS'?
        #if !os(visionOS)
                ^~~~~~~~
                iOS
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'Windows'?
        #if !os(visionOS)
                ^~~~~~~~
                Windows
[120/133] Compiling ReerKit UIStackView+REExtensions.swift
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: warning: unknown operating system for build configuration 'os'
        #if !os(visionOS)
                ^
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'iOS'?
        #if !os(visionOS)
                ^~~~~~~~
                iOS
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'Windows'?
        #if !os(visionOS)
                ^~~~~~~~
                Windows
[121/133] Compiling ReerKit UIStoryboard+REExtensions.swift
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: warning: unknown operating system for build configuration 'os'
        #if !os(visionOS)
                ^
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'iOS'?
        #if !os(visionOS)
                ^~~~~~~~
                iOS
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'Windows'?
        #if !os(visionOS)
                ^~~~~~~~
                Windows
[122/133] Compiling ReerKit UISwitch+REExtensions.swift
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: warning: unknown operating system for build configuration 'os'
        #if !os(visionOS)
                ^
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'iOS'?
        #if !os(visionOS)
                ^~~~~~~~
                iOS
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'Windows'?
        #if !os(visionOS)
                ^~~~~~~~
                Windows
[123/133] Compiling ReerKit UITabBar+REExtensions.swift
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: warning: unknown operating system for build configuration 'os'
        #if !os(visionOS)
                ^
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'iOS'?
        #if !os(visionOS)
                ^~~~~~~~
                iOS
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'Windows'?
        #if !os(visionOS)
                ^~~~~~~~
                Windows
[124/133] Compiling ReerKit UITableView+REExtensions.swift
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: warning: unknown operating system for build configuration 'os'
        #if !os(visionOS)
                ^
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'iOS'?
        #if !os(visionOS)
                ^~~~~~~~
                iOS
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'Windows'?
        #if !os(visionOS)
                ^~~~~~~~
                Windows
[125/133] Compiling ReerKit UITextField+REExtensions.swift
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: warning: unknown operating system for build configuration 'os'
        #if !os(visionOS)
                ^
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'iOS'?
        #if !os(visionOS)
                ^~~~~~~~
                iOS
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'Windows'?
        #if !os(visionOS)
                ^~~~~~~~
                Windows
[126/133] Compiling ReerKit UITextView+REExtensions.swift
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: warning: unknown operating system for build configuration 'os'
        #if !os(visionOS)
                ^
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'iOS'?
        #if !os(visionOS)
                ^~~~~~~~
                iOS
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'Windows'?
        #if !os(visionOS)
                ^~~~~~~~
                Windows
[127/133] Compiling ReerKit UIView+REExtensions.swift
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: warning: unknown operating system for build configuration 'os'
        #if !os(visionOS)
                ^
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'iOS'?
        #if !os(visionOS)
                ^~~~~~~~
                iOS
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'Windows'?
        #if !os(visionOS)
                ^~~~~~~~
                Windows
[128/133] Compiling ReerKit UIViewController+REExtensions.swift
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: warning: unknown operating system for build configuration 'os'
        #if !os(visionOS)
                ^
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'iOS'?
        #if !os(visionOS)
                ^~~~~~~~
                iOS
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'Windows'?
        #if !os(visionOS)
                ^~~~~~~~
                Windows
[129/133] Compiling ReerKit UIWindow+REExtensions.swift
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: warning: unknown operating system for build configuration 'os'
        #if !os(visionOS)
                ^
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'iOS'?
        #if !os(visionOS)
                ^~~~~~~~
                iOS
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'Windows'?
        #if !os(visionOS)
                ^~~~~~~~
                Windows
[130/133] Compiling ReerKit CountdownTimer.swift
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: warning: unknown operating system for build configuration 'os'
        #if !os(visionOS)
                ^
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'iOS'?
        #if !os(visionOS)
                ^~~~~~~~
                iOS
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'Windows'?
        #if !os(visionOS)
                ^~~~~~~~
                Windows
[131/133] Compiling ReerKit BoundedQueue.swift
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: warning: unknown operating system for build configuration 'os'
        #if !os(visionOS)
                ^
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'iOS'?
        #if !os(visionOS)
                ^~~~~~~~
                iOS
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'Windows'?
        #if !os(visionOS)
                ^~~~~~~~
                Windows
[132/133] Compiling ReerKit LinkedList.swift
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: warning: unknown operating system for build configuration 'os'
        #if !os(visionOS)
                ^
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'iOS'?
        #if !os(visionOS)
                ^~~~~~~~
                iOS
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'Windows'?
        #if !os(visionOS)
                ^~~~~~~~
                Windows
[133/133] Compiling ReerKit OrderedDictionary.swift
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: warning: unknown operating system for build configuration 'os'
        #if !os(visionOS)
                ^
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'iOS'?
        #if !os(visionOS)
                ^~~~~~~~
                iOS
/host/spi-builder-workspace/Sources/UIKit/UITabBar+REExtensions.swift:49:17: note: did you mean 'Windows'?
        #if !os(visionOS)
                ^~~~~~~~
                Windows
error: fatalError
BUILD FAILURE 5.9 linux