The Swift Package Index logo.Swift Package Index

Build Information

Failed to build RLayoutKit, reference master (8ce1b7), with Swift 6.2 for Linux on 20 Jun 2025 00:41:50 UTC.

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/roy-ren/RLayoutKit.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/roy-ren/RLayoutKit
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 8ce1b73 Add version available
Cloned https://github.com/roy-ren/RLayoutKit.git
Revision (git rev-parse @):
8ce1b7331e94fba6197fa0cb1e6f6df644b94850
SUCCESS checkout https://github.com/roy-ren/RLayoutKit.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/roy-ren/RLayoutKit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/12] Compiling RLayoutKit ScrollViewLayoutGuideAnchors.swift
[4/13] Compiling RLayoutKit RLayoutKit.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:38:41: error: cannot find type 'View' in scope
 36 | }
 37 |
 38 | extension RLayoutKitWrapper where Base: View {
    |                                         `- error: cannot find type 'View' in scope
 39 |
 40 | 	/// An instance self's superView wrapped with an `RLayoutKitWapper` container
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:41:40: error: cannot find type 'View' in scope
 39 |
 40 | 	/// An instance self's superView wrapped with an `RLayoutKitWapper` container
 41 | 	public var `super`: RLayoutKitWrapper<View>? {
    |                                        `- error: cannot find type 'View' in scope
 42 | 		guard let superview = base.superView else {
 43 | 			return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:63:11: error: cannot find type 'View' in scope
 61 | public protocol RLayoutCompatible {}
 62 |
 63 | extension View: RLayoutCompatible {
    |           `- error: cannot find type 'View' in scope
 64 | 	var superView: View? {
 65 | 		#if os(macOS)
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:90:41: error: cannot find type 'View' in scope
 88 | }
 89 |
 90 | extension RLayoutKitWrapper where Base: View {
    |                                         `- error: cannot find type 'View' in scope
 91 |
 92 | 	/// Method of adding constraints to package base(View) of RLayoutKitWapper
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:107:21: error: cannot find type 'View' in scope
105 | 		to view: T,
106 | 		andLayout handler: (RLayoutKitWrapper<Base>, RLayoutKitWrapper<T>) -> Void
107 | 	) -> Base where T: View {
    |                     `- error: cannot find type 'View' in scope
108 | 		base.addedTo(view)
109 | 		base.translatesAutoresizingMaskIntoConstraints = false
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:42:30: error: value of type 'Base' has no member 'superView'
 40 | 	/// An instance self's superView wrapped with an `RLayoutKitWapper` container
 41 | 	public var `super`: RLayoutKitWrapper<View>? {
 42 | 		guard let superview = base.superView else {
    |                              `- error: value of type 'Base' has no member 'superView'
 43 | 			return nil
 44 | 		}
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:98:8: error: value of type 'Base' has no member 'translatesAutoresizingMaskIntoConstraints'
 96 | 	@discardableResult
 97 | 	public func layout(_ constrainHandler: (RLayoutKitWrapper) -> Void) -> Base {
 98 | 		base.translatesAutoresizingMaskIntoConstraints = false
    |        `- error: value of type 'Base' has no member 'translatesAutoresizingMaskIntoConstraints'
 99 | 		constrainHandler(base.rl)
100 | 		return base
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:99:25: error: value of type 'Base' has no member 'rl'
 97 | 	public func layout(_ constrainHandler: (RLayoutKitWrapper) -> Void) -> Base {
 98 | 		base.translatesAutoresizingMaskIntoConstraints = false
 99 | 		constrainHandler(base.rl)
    |                         `- error: value of type 'Base' has no member 'rl'
100 | 		return base
101 | 	}
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:108:8: error: value of type 'Base' has no member 'addedTo'
106 | 		andLayout handler: (RLayoutKitWrapper<Base>, RLayoutKitWrapper<T>) -> Void
107 | 	) -> Base where T: View {
108 | 		base.addedTo(view)
    |        `- error: value of type 'Base' has no member 'addedTo'
109 | 		base.translatesAutoresizingMaskIntoConstraints = false
110 | 		handler(base.rl, view.rl)
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:109:8: error: value of type 'Base' has no member 'translatesAutoresizingMaskIntoConstraints'
107 | 	) -> Base where T: View {
108 | 		base.addedTo(view)
109 | 		base.translatesAutoresizingMaskIntoConstraints = false
    |        `- error: value of type 'Base' has no member 'translatesAutoresizingMaskIntoConstraints'
110 | 		handler(base.rl, view.rl)
111 | 		return base
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:110:16: error: value of type 'Base' has no member 'rl'
108 | 		base.addedTo(view)
109 | 		base.translatesAutoresizingMaskIntoConstraints = false
110 | 		handler(base.rl, view.rl)
    |                `- error: value of type 'Base' has no member 'rl'
111 | 		return base
112 | 	}
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:110:25: error: value of type 'T' has no member 'rl'
108 | 		base.addedTo(view)
109 | 		base.translatesAutoresizingMaskIntoConstraints = false
110 | 		handler(base.rl, view.rl)
    |                         `- error: value of type 'T' has no member 'rl'
111 | 		return base
112 | 	}
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:64:17: error: cannot find type 'View' in scope
 62 |
 63 | extension View: RLayoutCompatible {
 64 | 	var superView: View? {
    |                 `- error: cannot find type 'View' in scope
 65 | 		#if os(macOS)
 66 | 		return self.superview
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:72:23: error: cannot find type 'View' in scope
 70 | 	}
 71 |
 72 | 	func addedTo(_ view: View) {
    |                       `- error: cannot find type 'View' in scope
 73 | 		#if os(macOS)
 74 | 		return view.addSubview(self)
[5/13] Compiling RLayoutKit SafeAreaGuideAnchors.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:38:41: error: cannot find type 'View' in scope
 36 | }
 37 |
 38 | extension RLayoutKitWrapper where Base: View {
    |                                         `- error: cannot find type 'View' in scope
 39 |
 40 | 	/// An instance self's superView wrapped with an `RLayoutKitWapper` container
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:41:40: error: cannot find type 'View' in scope
 39 |
 40 | 	/// An instance self's superView wrapped with an `RLayoutKitWapper` container
 41 | 	public var `super`: RLayoutKitWrapper<View>? {
    |                                        `- error: cannot find type 'View' in scope
 42 | 		guard let superview = base.superView else {
 43 | 			return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:63:11: error: cannot find type 'View' in scope
 61 | public protocol RLayoutCompatible {}
 62 |
 63 | extension View: RLayoutCompatible {
    |           `- error: cannot find type 'View' in scope
 64 | 	var superView: View? {
 65 | 		#if os(macOS)
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:90:41: error: cannot find type 'View' in scope
 88 | }
 89 |
 90 | extension RLayoutKitWrapper where Base: View {
    |                                         `- error: cannot find type 'View' in scope
 91 |
 92 | 	/// Method of adding constraints to package base(View) of RLayoutKitWapper
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:107:21: error: cannot find type 'View' in scope
105 | 		to view: T,
106 | 		andLayout handler: (RLayoutKitWrapper<Base>, RLayoutKitWrapper<T>) -> Void
107 | 	) -> Base where T: View {
    |                     `- error: cannot find type 'View' in scope
108 | 		base.addedTo(view)
109 | 		base.translatesAutoresizingMaskIntoConstraints = false
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:42:30: error: value of type 'Base' has no member 'superView'
 40 | 	/// An instance self's superView wrapped with an `RLayoutKitWapper` container
 41 | 	public var `super`: RLayoutKitWrapper<View>? {
 42 | 		guard let superview = base.superView else {
    |                              `- error: value of type 'Base' has no member 'superView'
 43 | 			return nil
 44 | 		}
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:98:8: error: value of type 'Base' has no member 'translatesAutoresizingMaskIntoConstraints'
 96 | 	@discardableResult
 97 | 	public func layout(_ constrainHandler: (RLayoutKitWrapper) -> Void) -> Base {
 98 | 		base.translatesAutoresizingMaskIntoConstraints = false
    |        `- error: value of type 'Base' has no member 'translatesAutoresizingMaskIntoConstraints'
 99 | 		constrainHandler(base.rl)
100 | 		return base
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:99:25: error: value of type 'Base' has no member 'rl'
 97 | 	public func layout(_ constrainHandler: (RLayoutKitWrapper) -> Void) -> Base {
 98 | 		base.translatesAutoresizingMaskIntoConstraints = false
 99 | 		constrainHandler(base.rl)
    |                         `- error: value of type 'Base' has no member 'rl'
100 | 		return base
101 | 	}
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:108:8: error: value of type 'Base' has no member 'addedTo'
106 | 		andLayout handler: (RLayoutKitWrapper<Base>, RLayoutKitWrapper<T>) -> Void
107 | 	) -> Base where T: View {
108 | 		base.addedTo(view)
    |        `- error: value of type 'Base' has no member 'addedTo'
109 | 		base.translatesAutoresizingMaskIntoConstraints = false
110 | 		handler(base.rl, view.rl)
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:109:8: error: value of type 'Base' has no member 'translatesAutoresizingMaskIntoConstraints'
107 | 	) -> Base where T: View {
108 | 		base.addedTo(view)
109 | 		base.translatesAutoresizingMaskIntoConstraints = false
    |        `- error: value of type 'Base' has no member 'translatesAutoresizingMaskIntoConstraints'
110 | 		handler(base.rl, view.rl)
111 | 		return base
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:110:16: error: value of type 'Base' has no member 'rl'
108 | 		base.addedTo(view)
109 | 		base.translatesAutoresizingMaskIntoConstraints = false
110 | 		handler(base.rl, view.rl)
    |                `- error: value of type 'Base' has no member 'rl'
111 | 		return base
112 | 	}
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:110:25: error: value of type 'T' has no member 'rl'
108 | 		base.addedTo(view)
109 | 		base.translatesAutoresizingMaskIntoConstraints = false
110 | 		handler(base.rl, view.rl)
    |                         `- error: value of type 'T' has no member 'rl'
111 | 		return base
112 | 	}
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:64:17: error: cannot find type 'View' in scope
 62 |
 63 | extension View: RLayoutCompatible {
 64 | 	var superView: View? {
    |                 `- error: cannot find type 'View' in scope
 65 | 		#if os(macOS)
 66 | 		return self.superview
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:72:23: error: cannot find type 'View' in scope
 70 | 	}
 71 |
 72 | 	func addedTo(_ view: View) {
    |                       `- error: cannot find type 'View' in scope
 73 | 		#if os(macOS)
 74 | 		return view.addSubview(self)
[6/13] Compiling RLayoutKit LayoutPoint.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:20:26: error: cannot find type 'NSLayoutXAxisAnchor' in scope
18 | public struct LayoutPoint {
19 |
20 |     let x: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
   |                          `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
21 |     let y: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
22 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:21:26: error: cannot find type 'NSLayoutYAxisAnchor' in scope
19 |
20 |     let x: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
21 |     let y: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
   |                          `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
22 | }
23 |
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:42:68: error: cannot find type 'NSLayoutConstraint' in scope
40 |
41 |     @discardableResult
42 |     public static func == (lsh: LayoutPoint, rsh: LayoutPoint) -> [NSLayoutConstraint] {
   |                                                                    `- error: cannot find type 'NSLayoutConstraint' in scope
43 |         return [lsh.x == rsh.x,
44 |                 lsh.y == rsh.y]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:49:41: error: cannot find type 'View' in scope
47 |
48 | @available(iOS 9.0, *)
49 | extension RLayoutKitWrapper where Base: View {
   |                                         `- error: cannot find type 'View' in scope
50 |
51 |     public var leadingTop: LayoutPoint {
/host/spi-builder-workspace/Sources/RLayoutKit/Core/LayoutAnchor.swift:29:40: error: cannot find type 'NSLayoutAnchor' in scope
27 | */
28 | @available(iOS 9.0, *)
29 | public struct AnchorWrapper<A, Anchor: NSLayoutAnchor<A>> {
   |                                        `- error: cannot find type 'NSLayoutAnchor' in scope
30 |
31 | 	public let anchor: Anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:47:49: error: cannot find type 'EdgeInsets' in scope
 45 | extension LayoutEdge {
 46 |
 47 |     public static func + (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                 `- error: cannot find type 'EdgeInsets' in scope
 48 |         return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
 49 |                                 trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:70:55: error: cannot find type 'EdgeInsets' in scope
 68 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 69 |
 70 |     public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                       `- error: cannot find type 'EdgeInsets' in scope
 71 |         return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
 72 |                                 trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
    |                                    `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:67: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
    |                                                                   `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
    |                                    `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:67: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
    |                                                                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:234:67: error: cannot find type 'NSLayoutDimension' in scope
232 |
233 | 	@available(iOS 10.0, *)
234 | 	public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
    |                                                                   `- error: cannot find type 'NSLayoutDimension' in scope
235 | 		return lsh
236 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:257:67: error: cannot find type 'NSLayoutDimension' in scope
255 |
256 | 	@available(iOS 10.0, *)
257 | 	public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
    |                                                                   `- error: cannot find type 'NSLayoutDimension' in scope
258 | 		return lsh
259 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:54:49: error: cannot find type 'EdgeInsets' in scope
 52 |     }
 53 |
 54 |     public static func - (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                 `- error: cannot find type 'EdgeInsets' in scope
 55 |         return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
 56 |                                 trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:77:55: error: cannot find type 'EdgeInsets' in scope
 75 |     }
 76 |
 77 |     public static func - (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                       `- error: cannot find type 'EdgeInsets' in scope
 78 |         return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
 79 |                                 trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:17:41: error: cannot find type 'View' in scope
 15 |
 16 | @available(iOS 9.0, *)
 17 | extension RLayoutKitWrapper where Base: View {
    |                                         `- error: cannot find type 'View' in scope
 18 | 	public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
 19 | 		return .init(
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:18:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 16 | @available(iOS 9.0, *)
 17 | extension RLayoutKitWrapper where Base: View {
 18 | 	public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
    |                                    `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 19 | 		return .init(
 20 | 			anchor: base.leadingAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:46:32: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 44 | 	}
 45 |
 46 | 	public var top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
    |                                `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 47 | 		return .init(
 48 | 			anchor: base.topAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:53:35: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 51 | 	}
 52 |
 53 | 	public var bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
    |                                   `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 54 | 		return .init(
 55 | 			anchor: base.bottomAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:25:37: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 23 | 	}
 24 |
 25 | 	public var trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
    |                                     `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 26 | 		return .init(
 27 | 			anchor: base.trailingAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:74:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 72 | 	}
 73 |
 74 | 	public var centerX: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
    |                                    `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 75 | 		return .init(
 76 | 			anchor: base.centerXAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:81:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 79 | 	}
 80 |
 81 | 	public var centerY: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
    |                                    `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 82 | 		return .init(
 83 | 			anchor: base.centerYAnchor,
[7/13] Compiling RLayoutKit LayoutAnchor.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Core/LayoutAnchor.swift:29:40: error: cannot find type 'NSLayoutAnchor' in scope
27 | */
28 | @available(iOS 9.0, *)
29 | public struct AnchorWrapper<A, Anchor: NSLayoutAnchor<A>> {
   |                                        `- error: cannot find type 'NSLayoutAnchor' in scope
30 |
31 | 	public let anchor: Anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
    |                                    `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:67: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
    |                                                                   `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:234:67: error: cannot find type 'NSLayoutDimension' in scope
232 |
233 | 	@available(iOS 10.0, *)
234 | 	public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
    |                                                                   `- error: cannot find type 'NSLayoutDimension' in scope
235 | 		return lsh
236 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
    |                                    `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:67: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
    |                                                                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:257:67: error: cannot find type 'NSLayoutDimension' in scope
255 |
256 | 	@available(iOS 10.0, *)
257 | 	public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
    |                                                                   `- error: cannot find type 'NSLayoutDimension' in scope
258 | 		return lsh
259 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:47:49: error: cannot find type 'EdgeInsets' in scope
 45 | extension LayoutEdge {
 46 |
 47 |     public static func + (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                 `- error: cannot find type 'EdgeInsets' in scope
 48 |         return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
 49 |                                 trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:70:55: error: cannot find type 'EdgeInsets' in scope
 68 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 69 |
 70 |     public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                       `- error: cannot find type 'EdgeInsets' in scope
 71 |         return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
 72 |                                 trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:54:49: error: cannot find type 'EdgeInsets' in scope
 52 |     }
 53 |
 54 |     public static func - (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                 `- error: cannot find type 'EdgeInsets' in scope
 55 |         return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
 56 |                                 trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:77:55: error: cannot find type 'EdgeInsets' in scope
 75 |     }
 76 |
 77 |     public static func - (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                       `- error: cannot find type 'EdgeInsets' in scope
 78 |         return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
 79 |                                 trailing: lsh.trailing + rsh.right,
[8/13] Compiling RLayoutKit LayoutMarginsGuideAnchors.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Core/LayoutAnchor.swift:29:40: error: cannot find type 'NSLayoutAnchor' in scope
27 | */
28 | @available(iOS 9.0, *)
29 | public struct AnchorWrapper<A, Anchor: NSLayoutAnchor<A>> {
   |                                        `- error: cannot find type 'NSLayoutAnchor' in scope
30 |
31 | 	public let anchor: Anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
    |                                    `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:67: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
    |                                                                   `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:234:67: error: cannot find type 'NSLayoutDimension' in scope
232 |
233 | 	@available(iOS 10.0, *)
234 | 	public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
    |                                                                   `- error: cannot find type 'NSLayoutDimension' in scope
235 | 		return lsh
236 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
    |                                    `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:67: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
    |                                                                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:257:67: error: cannot find type 'NSLayoutDimension' in scope
255 |
256 | 	@available(iOS 10.0, *)
257 | 	public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
    |                                                                   `- error: cannot find type 'NSLayoutDimension' in scope
258 | 		return lsh
259 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:47:49: error: cannot find type 'EdgeInsets' in scope
 45 | extension LayoutEdge {
 46 |
 47 |     public static func + (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                 `- error: cannot find type 'EdgeInsets' in scope
 48 |         return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
 49 |                                 trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:70:55: error: cannot find type 'EdgeInsets' in scope
 68 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 69 |
 70 |     public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                       `- error: cannot find type 'EdgeInsets' in scope
 71 |         return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
 72 |                                 trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:54:49: error: cannot find type 'EdgeInsets' in scope
 52 |     }
 53 |
 54 |     public static func - (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                 `- error: cannot find type 'EdgeInsets' in scope
 55 |         return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
 56 |                                 trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:77:55: error: cannot find type 'EdgeInsets' in scope
 75 |     }
 76 |
 77 |     public static func - (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                       `- error: cannot find type 'EdgeInsets' in scope
 78 |         return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
 79 |                                 trailing: lsh.trailing + rsh.right,
error: emit-module command failed with exit code 1 (use -v to see invocation)
[9/13] Emitting module RLayoutKit
/host/spi-builder-workspace/Sources/RLayoutKit/Core/LayoutAnchor.swift:29:40: error: cannot find type 'NSLayoutAnchor' in scope
27 | */
28 | @available(iOS 9.0, *)
29 | public struct AnchorWrapper<A, Anchor: NSLayoutAnchor<A>> {
   |                                        `- error: cannot find type 'NSLayoutAnchor' in scope
30 |
31 | 	public let anchor: Anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
    |                                    `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:67: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
    |                                                                   `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:234:67: error: cannot find type 'NSLayoutDimension' in scope
232 |
233 | 	@available(iOS 10.0, *)
234 | 	public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
    |                                                                   `- error: cannot find type 'NSLayoutDimension' in scope
235 | 		return lsh
236 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
    |                                    `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:67: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
    |                                                                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:257:67: error: cannot find type 'NSLayoutDimension' in scope
255 |
256 | 	@available(iOS 10.0, *)
257 | 	public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
    |                                                                   `- error: cannot find type 'NSLayoutDimension' in scope
258 | 		return lsh
259 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:38:41: error: cannot find type 'View' in scope
 36 | }
 37 |
 38 | extension RLayoutKitWrapper where Base: View {
    |                                         `- error: cannot find type 'View' in scope
 39 |
 40 | 	/// An instance self's superView wrapped with an `RLayoutKitWapper` container
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:41:40: error: cannot find type 'View' in scope
 39 |
 40 | 	/// An instance self's superView wrapped with an `RLayoutKitWapper` container
 41 | 	public var `super`: RLayoutKitWrapper<View>? {
    |                                        `- error: cannot find type 'View' in scope
 42 | 		guard let superview = base.superView else {
 43 | 			return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:63:11: error: cannot find type 'View' in scope
 61 | public protocol RLayoutCompatible {}
 62 |
 63 | extension View: RLayoutCompatible {
    |           `- error: cannot find type 'View' in scope
 64 | 	var superView: View? {
 65 | 		#if os(macOS)
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:90:41: error: cannot find type 'View' in scope
 88 | }
 89 |
 90 | extension RLayoutKitWrapper where Base: View {
    |                                         `- error: cannot find type 'View' in scope
 91 |
 92 | 	/// Method of adding constraints to package base(View) of RLayoutKitWapper
/host/spi-builder-workspace/Sources/RLayoutKit/Core/RLayoutKit.swift:107:21: error: cannot find type 'View' in scope
105 | 		to view: T,
106 | 		andLayout handler: (RLayoutKitWrapper<Base>, RLayoutKitWrapper<T>) -> Void
107 | 	) -> Base where T: View {
    |                     `- error: cannot find type 'View' in scope
108 | 		base.addedTo(view)
109 | 		base.translatesAutoresizingMaskIntoConstraints = false
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:17:41: error: cannot find type 'View' in scope
 15 |
 16 | @available(iOS 9.0, *)
 17 | extension RLayoutKitWrapper where Base: View {
    |                                         `- error: cannot find type 'View' in scope
 18 | 	public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
 19 | 		return .init(
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:18:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 16 | @available(iOS 9.0, *)
 17 | extension RLayoutKitWrapper where Base: View {
 18 | 	public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
    |                                    `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 19 | 		return .init(
 20 | 			anchor: base.leadingAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:25:37: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 23 | 	}
 24 |
 25 | 	public var trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
    |                                     `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 26 | 		return .init(
 27 | 			anchor: base.trailingAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:32:33: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 30 | 	}
 31 |
 32 | 	public var left: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
    |                                 `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 33 | 		return .init(
 34 | 			anchor: base.leftAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:39:34: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 37 | 	}
 38 |
 39 | 	public var right: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
    |                                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 40 | 		return .init(
 41 | 			anchor: base.rightAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:46:32: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 44 | 	}
 45 |
 46 | 	public var top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
    |                                `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 47 | 		return .init(
 48 | 			anchor: base.topAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:53:35: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 51 | 	}
 52 |
 53 | 	public var bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
    |                                   `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 54 | 		return .init(
 55 | 			anchor: base.bottomAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:60:34: error: cannot find type 'NSLayoutDimension' in scope
 58 | 	}
 59 |
 60 | 	public var width: AnchorWrapper<NSLayoutDimension, NSLayoutDimension> {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
 61 | 		return .init(
 62 | 			anchor: base.widthAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:67:35: error: cannot find type 'NSLayoutDimension' in scope
 65 | 	}
 66 |
 67 | 	public var height: AnchorWrapper<NSLayoutDimension, NSLayoutDimension> {
    |                                   `- error: cannot find type 'NSLayoutDimension' in scope
 68 | 		return .init(
 69 | 			anchor: base.heightAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:74:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 72 | 	}
 73 |
 74 | 	public var centerX: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
    |                                    `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 75 | 		return .init(
 76 | 			anchor: base.centerXAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:81:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 79 | 	}
 80 |
 81 | 	public var centerY: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
    |                                    `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 82 | 		return .init(
 83 | 			anchor: base.centerYAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:88:42: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 86 | 	}
 87 |
 88 | 	public var firstBaseline: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
    |                                          `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 89 | 		return .init(
 90 | 			anchor: base.firstBaselineAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:95:41: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 93 | 	}
 94 |
 95 | 	public var lastBaseline: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
    |                                         `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 96 | 		return .init(
 97 | 			anchor: base.lastBaselineAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:23:11: error: cannot find type 'NSLayoutConstraint' in scope
 21 | infix operator <=*: ComparisonPrecedence
 22 |
 23 | extension NSLayoutConstraint {
    |           `- error: cannot find type 'NSLayoutConstraint' in scope
 24 |
 25 | 	public var active: NSLayoutConstraint {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:42:68: error: cannot find type 'NSLayoutConstraint' in scope
 40 |
 41 | 	@discardableResult
 42 | 	public static func == (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
    |                                                                    `- error: cannot find type 'NSLayoutConstraint' in scope
 43 | 		#if os(iOS)
 44 | 		if #available(iOS 11.0, *) {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:62:62: error: cannot find type 'NSLayoutConstraint' in scope
 60 | 	}
 61 |
 62 | 	static func ==+ (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
 63 | 		return lsh
 64 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:107:68: error: cannot find type 'NSLayoutConstraint' in scope
105 |
106 | 	@discardableResult
107 | 	public static func >= (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
    |                                                                    `- error: cannot find type 'NSLayoutConstraint' in scope
108 | 		#if os(iOS)
109 | 		if #available(iOS 11.0, *) {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:127:62: error: cannot find type 'NSLayoutConstraint' in scope
125 | 	}
126 |
127 | 	static func >=+ (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
128 | 		return lsh
129 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:171:68: error: cannot find type 'NSLayoutConstraint' in scope
169 |
170 | 	@discardableResult
171 | 	public static func <= (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
    |                                                                    `- error: cannot find type 'NSLayoutConstraint' in scope
172 | 		#if os(iOS)
173 | 		if #available(iOS 11.0, *) {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:191:62: error: cannot find type 'NSLayoutConstraint' in scope
189 | 	}
190 |
191 | 	static func <=+ (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
192 | 		return lsh
193 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:241:62: error: cannot find type 'NSLayoutConstraint' in scope
239 |
240 | 	@discardableResult
241 | 	public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint? {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
242 | 		guard let superAnchor = lsh.superAnchor else {
243 | 			return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:264:62: error: cannot find type 'NSLayoutConstraint' in scope
262 |
263 | 	@discardableResult
264 | 	public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint? {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
265 | 		guard let superAnchor = lsh.superAnchor else {
266 | 			return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:277:36: error: cannot find type 'NSLayoutDimension' in scope
275 |
276 | @available(iOS 9.0, *)
277 | extension AnchorWrapper where A == NSLayoutDimension, Anchor == NSLayoutDimension {
    |                                    `- error: cannot find type 'NSLayoutDimension' in scope
278 |
279 | 	@discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:277:65: error: cannot find type 'NSLayoutDimension' in scope
275 |
276 | @available(iOS 9.0, *)
277 | extension AnchorWrapper where A == NSLayoutDimension, Anchor == NSLayoutDimension {
    |                                                                 `- error: cannot find type 'NSLayoutDimension' in scope
278 |
279 | 	@discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:280:62: error: cannot find type 'NSLayoutConstraint' in scope
278 |
279 | 	@discardableResult
280 | 	public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
281 | 		return lsh
282 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:288:62: error: cannot find type 'NSLayoutConstraint' in scope
286 |
287 | 	@discardableResult
288 | 	public static func >= (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
289 | 		return lsh
290 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:296:62: error: cannot find type 'NSLayoutConstraint' in scope
294 |
295 | 	@discardableResult
296 | 	public static func <= (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
297 | 		return lsh
298 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:21:32: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 19 | public struct LayoutEdge {
 20 |
 21 |     let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
    |                                `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 22 |     let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 23 |     let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:22:33: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 20 |
 21 |     let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 22 |     let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
    |                                 `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 23 |     let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 24 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:23:28: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 21 |     let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 22 |     let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 23 |     let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
    |                            `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 24 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 25 |
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:24:31: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 22 |     let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 23 |     let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 24 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
    |                               `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 25 |
 26 |     @discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:27:66: error: cannot find type 'NSLayoutConstraint' in scope
 25 |
 26 |     @discardableResult
 27 |     public static func == (lsh: LayoutEdge, rsh: LayoutEdge) -> [NSLayoutConstraint] {
    |                                                                  `- error: cannot find type 'NSLayoutConstraint' in scope
 28 |         return [lsh.leading == rsh.leading,
 29 |                 lsh.trailing == rsh.trailing,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:35:72: error: cannot find type 'NSLayoutConstraint' in scope
 33 |
 34 |     @discardableResult
 35 |     public static func == (lsh: LayoutEdge, rsh: LayoutInsetsEdge) -> [NSLayoutConstraint] {
    |                                                                        `- error: cannot find type 'NSLayoutConstraint' in scope
 36 |
 37 |         return [lsh.leading == rsh.leading,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:47:49: error: cannot find type 'EdgeInsets' in scope
 45 | extension LayoutEdge {
 46 |
 47 |     public static func + (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                 `- error: cannot find type 'EdgeInsets' in scope
 48 |         return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
 49 |                                 trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:54:49: error: cannot find type 'EdgeInsets' in scope
 52 |     }
 53 |
 54 |     public static func - (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                 `- error: cannot find type 'EdgeInsets' in scope
 55 |         return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
 56 |                                 trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:65:32: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 63 | public struct LayoutInsetsEdge {
 64 |
 65 |     let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
    |                                `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 66 |     let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 67 |     let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:66:33: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 64 |
 65 |     let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 66 |     let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
    |                                 `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 67 |     let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 68 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:67:28: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 65 |     let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 66 |     let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 67 |     let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
    |                            `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 68 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 69 |
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:68:31: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 66 |     let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 67 |     let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 68 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
    |                               `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 69 |
 70 |     public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:70:55: error: cannot find type 'EdgeInsets' in scope
 68 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 69 |
 70 |     public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                       `- error: cannot find type 'EdgeInsets' in scope
 71 |         return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
 72 |                                 trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:77:55: error: cannot find type 'EdgeInsets' in scope
 75 |     }
 76 |
 77 |     public static func - (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                       `- error: cannot find type 'EdgeInsets' in scope
 78 |         return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
 79 |                                 trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:86:41: error: cannot find type 'View' in scope
 84 |
 85 | @available(iOS 9.0, *)
 86 | extension RLayoutKitWrapper where Base: View {
    |                                         `- error: cannot find type 'View' in scope
 87 |
 88 |     public var edges: LayoutEdge {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:20:26: error: cannot find type 'NSLayoutXAxisAnchor' in scope
18 | public struct LayoutPoint {
19 |
20 |     let x: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
   |                          `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
21 |     let y: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
22 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:21:26: error: cannot find type 'NSLayoutYAxisAnchor' in scope
19 |
20 |     let x: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
21 |     let y: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
   |                          `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
22 | }
23 |
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:42:68: error: cannot find type 'NSLayoutConstraint' in scope
40 |
41 |     @discardableResult
42 |     public static func == (lsh: LayoutPoint, rsh: LayoutPoint) -> [NSLayoutConstraint] {
   |                                                                    `- error: cannot find type 'NSLayoutConstraint' in scope
43 |         return [lsh.x == rsh.x,
44 |                 lsh.y == rsh.y]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutPoint.swift:49:41: error: cannot find type 'View' in scope
47 |
48 | @available(iOS 9.0, *)
49 | extension RLayoutKitWrapper where Base: View {
   |                                         `- error: cannot find type 'View' in scope
50 |
51 |     public var leadingTop: LayoutPoint {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:19:30: error: cannot find type 'NSLayoutDimension' in scope
 17 | public struct LayoutSize {
 18 |
 19 |     let width: AnchorWrapper<NSLayoutDimension, NSLayoutDimension>
    |                              `- error: cannot find type 'NSLayoutDimension' in scope
 20 |     let height: AnchorWrapper<NSLayoutDimension, NSLayoutDimension>
 21 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:20:31: error: cannot find type 'NSLayoutDimension' in scope
 18 |
 19 |     let width: AnchorWrapper<NSLayoutDimension, NSLayoutDimension>
 20 |     let height: AnchorWrapper<NSLayoutDimension, NSLayoutDimension>
    |                               `- error: cannot find type 'NSLayoutDimension' in scope
 21 | }
 22 |
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:47:62: error: cannot find type 'NSLayoutConstraint' in scope
 45 |
 46 |     @discardableResult
 47 |     public static func == (lsh: LayoutSize, rsh: CGSize) -> [NSLayoutConstraint] {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
 48 |         return [lsh.width == rsh.width,
 49 |                 lsh.height == rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:53:62: error: cannot find type 'NSLayoutConstraint' in scope
 51 |
 52 |     @discardableResult
 53 |     public static func >= (lsh: LayoutSize, rsh: CGSize) -> [NSLayoutConstraint] {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
 54 |         return [lsh.width >= rsh.width,
 55 |                 lsh.height >= rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:59:62: error: cannot find type 'NSLayoutConstraint' in scope
 57 |
 58 |     @discardableResult
 59 |     public static func <= (lsh: LayoutSize, rsh: CGSize) -> [NSLayoutConstraint] {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
 60 |         return [lsh.width <= rsh.width,
 61 |                 lsh.height <= rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:69:66: error: cannot find type 'NSLayoutConstraint' in scope
 67 | extension LayoutSize {
 68 |     @discardableResult
 69 |     public static func == (lsh: LayoutSize, rsh: LayoutSize) -> [NSLayoutConstraint] {
    |                                                                  `- error: cannot find type 'NSLayoutConstraint' in scope
 70 |         return [lsh.width == rsh.width,
 71 |                 lsh.height == rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:75:66: error: cannot find type 'NSLayoutConstraint' in scope
 73 |
 74 |     @discardableResult
 75 |     public static func >= (lsh: LayoutSize, rsh: LayoutSize) -> [NSLayoutConstraint] {
    |                                                                  `- error: cannot find type 'NSLayoutConstraint' in scope
 76 |         return [lsh.width >= rsh.width,
 77 |                 lsh.height >= rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:81:66: error: cannot find type 'NSLayoutConstraint' in scope
 79 |
 80 |     @discardableResult
 81 |     public static func <= (lsh: LayoutSize, rsh: LayoutSize) -> [NSLayoutConstraint] {
    |                                                                  `- error: cannot find type 'NSLayoutConstraint' in scope
 82 |         return [lsh.width <= rsh.width,
 83 |                 lsh.height <= rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:88:41: error: cannot find type 'View' in scope
 86 |
 87 | @available(iOS 9.0, *)
 88 | extension RLayoutKitWrapper where Base: View {
    |                                         `- error: cannot find type 'View' in scope
 89 |
 90 |     public var size: LayoutSize {
[10/13] Compiling RLayoutKit LayoutSize.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:19:30: error: cannot find type 'NSLayoutDimension' in scope
 17 | public struct LayoutSize {
 18 |
 19 |     let width: AnchorWrapper<NSLayoutDimension, NSLayoutDimension>
    |                              `- error: cannot find type 'NSLayoutDimension' in scope
 20 |     let height: AnchorWrapper<NSLayoutDimension, NSLayoutDimension>
 21 | }
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:20:31: error: cannot find type 'NSLayoutDimension' in scope
 18 |
 19 |     let width: AnchorWrapper<NSLayoutDimension, NSLayoutDimension>
 20 |     let height: AnchorWrapper<NSLayoutDimension, NSLayoutDimension>
    |                               `- error: cannot find type 'NSLayoutDimension' in scope
 21 | }
 22 |
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:47:62: error: cannot find type 'NSLayoutConstraint' in scope
 45 |
 46 |     @discardableResult
 47 |     public static func == (lsh: LayoutSize, rsh: CGSize) -> [NSLayoutConstraint] {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
 48 |         return [lsh.width == rsh.width,
 49 |                 lsh.height == rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:53:62: error: cannot find type 'NSLayoutConstraint' in scope
 51 |
 52 |     @discardableResult
 53 |     public static func >= (lsh: LayoutSize, rsh: CGSize) -> [NSLayoutConstraint] {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
 54 |         return [lsh.width >= rsh.width,
 55 |                 lsh.height >= rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:59:62: error: cannot find type 'NSLayoutConstraint' in scope
 57 |
 58 |     @discardableResult
 59 |     public static func <= (lsh: LayoutSize, rsh: CGSize) -> [NSLayoutConstraint] {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
 60 |         return [lsh.width <= rsh.width,
 61 |                 lsh.height <= rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:69:66: error: cannot find type 'NSLayoutConstraint' in scope
 67 | extension LayoutSize {
 68 |     @discardableResult
 69 |     public static func == (lsh: LayoutSize, rsh: LayoutSize) -> [NSLayoutConstraint] {
    |                                                                  `- error: cannot find type 'NSLayoutConstraint' in scope
 70 |         return [lsh.width == rsh.width,
 71 |                 lsh.height == rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:75:66: error: cannot find type 'NSLayoutConstraint' in scope
 73 |
 74 |     @discardableResult
 75 |     public static func >= (lsh: LayoutSize, rsh: LayoutSize) -> [NSLayoutConstraint] {
    |                                                                  `- error: cannot find type 'NSLayoutConstraint' in scope
 76 |         return [lsh.width >= rsh.width,
 77 |                 lsh.height >= rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:81:66: error: cannot find type 'NSLayoutConstraint' in scope
 79 |
 80 |     @discardableResult
 81 |     public static func <= (lsh: LayoutSize, rsh: LayoutSize) -> [NSLayoutConstraint] {
    |                                                                  `- error: cannot find type 'NSLayoutConstraint' in scope
 82 |         return [lsh.width <= rsh.width,
 83 |                 lsh.height <= rsh.height]
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutSize.swift:88:41: error: cannot find type 'View' in scope
 86 |
 87 | @available(iOS 9.0, *)
 88 | extension RLayoutKitWrapper where Base: View {
    |                                         `- error: cannot find type 'View' in scope
 89 |
 90 |     public var size: LayoutSize {
/host/spi-builder-workspace/Sources/RLayoutKit/Core/LayoutAnchor.swift:29:40: error: cannot find type 'NSLayoutAnchor' in scope
27 | */
28 | @available(iOS 9.0, *)
29 | public struct AnchorWrapper<A, Anchor: NSLayoutAnchor<A>> {
   |                                        `- error: cannot find type 'NSLayoutAnchor' in scope
30 |
31 | 	public let anchor: Anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:47:49: error: cannot find type 'EdgeInsets' in scope
 45 | extension LayoutEdge {
 46 |
 47 |     public static func + (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                 `- error: cannot find type 'EdgeInsets' in scope
 48 |         return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
 49 |                                 trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:70:55: error: cannot find type 'EdgeInsets' in scope
 68 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 69 |
 70 |     public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                       `- error: cannot find type 'EdgeInsets' in scope
 71 |         return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
 72 |                                 trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
    |                                    `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:67: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
    |                                                                   `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
    |                                    `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:67: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
    |                                                                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:234:67: error: cannot find type 'NSLayoutDimension' in scope
232 |
233 | 	@available(iOS 10.0, *)
234 | 	public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
    |                                                                   `- error: cannot find type 'NSLayoutDimension' in scope
235 | 		return lsh
236 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:257:67: error: cannot find type 'NSLayoutDimension' in scope
255 |
256 | 	@available(iOS 10.0, *)
257 | 	public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
    |                                                                   `- error: cannot find type 'NSLayoutDimension' in scope
258 | 		return lsh
259 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:54:49: error: cannot find type 'EdgeInsets' in scope
 52 |     }
 53 |
 54 |     public static func - (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                 `- error: cannot find type 'EdgeInsets' in scope
 55 |         return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
 56 |                                 trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:77:55: error: cannot find type 'EdgeInsets' in scope
 75 |     }
 76 |
 77 |     public static func - (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                       `- error: cannot find type 'EdgeInsets' in scope
 78 |         return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
 79 |                                 trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:17:41: error: cannot find type 'View' in scope
 15 |
 16 | @available(iOS 9.0, *)
 17 | extension RLayoutKitWrapper where Base: View {
    |                                         `- error: cannot find type 'View' in scope
 18 | 	public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
 19 | 		return .init(
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:60:34: error: cannot find type 'NSLayoutDimension' in scope
 58 | 	}
 59 |
 60 | 	public var width: AnchorWrapper<NSLayoutDimension, NSLayoutDimension> {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
 61 | 		return .init(
 62 | 			anchor: base.widthAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:67:35: error: cannot find type 'NSLayoutDimension' in scope
 65 | 	}
 66 |
 67 | 	public var height: AnchorWrapper<NSLayoutDimension, NSLayoutDimension> {
    |                                   `- error: cannot find type 'NSLayoutDimension' in scope
 68 | 		return .init(
 69 | 			anchor: base.heightAnchor,
[11/13] Compiling RLayoutKit LayoutEdge.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:21:32: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 19 | public struct LayoutEdge {
 20 |
 21 |     let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
    |                                `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 22 |     let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 23 |     let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:22:33: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 20 |
 21 |     let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 22 |     let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
    |                                 `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 23 |     let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 24 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:23:28: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 21 |     let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 22 |     let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 23 |     let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
    |                            `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 24 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 25 |
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:24:31: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 22 |     let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 23 |     let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 24 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
    |                               `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 25 |
 26 |     @discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:27:66: error: cannot find type 'NSLayoutConstraint' in scope
 25 |
 26 |     @discardableResult
 27 |     public static func == (lsh: LayoutEdge, rsh: LayoutEdge) -> [NSLayoutConstraint] {
    |                                                                  `- error: cannot find type 'NSLayoutConstraint' in scope
 28 |         return [lsh.leading == rsh.leading,
 29 |                 lsh.trailing == rsh.trailing,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:35:72: error: cannot find type 'NSLayoutConstraint' in scope
 33 |
 34 |     @discardableResult
 35 |     public static func == (lsh: LayoutEdge, rsh: LayoutInsetsEdge) -> [NSLayoutConstraint] {
    |                                                                        `- error: cannot find type 'NSLayoutConstraint' in scope
 36 |
 37 |         return [lsh.leading == rsh.leading,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:47:49: error: cannot find type 'EdgeInsets' in scope
 45 | extension LayoutEdge {
 46 |
 47 |     public static func + (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                 `- error: cannot find type 'EdgeInsets' in scope
 48 |         return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
 49 |                                 trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:54:49: error: cannot find type 'EdgeInsets' in scope
 52 |     }
 53 |
 54 |     public static func - (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                 `- error: cannot find type 'EdgeInsets' in scope
 55 |         return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
 56 |                                 trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:65:32: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 63 | public struct LayoutInsetsEdge {
 64 |
 65 |     let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
    |                                `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 66 |     let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 67 |     let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:66:33: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 64 |
 65 |     let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 66 |     let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
    |                                 `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 67 |     let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 68 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:67:28: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 65 |     let leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 66 |     let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 67 |     let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
    |                            `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 68 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 69 |
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:68:31: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 66 |     let trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor>
 67 |     let top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 68 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
    |                               `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 69 |
 70 |     public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:70:55: error: cannot find type 'EdgeInsets' in scope
 68 |     let bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor>
 69 |
 70 |     public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                       `- error: cannot find type 'EdgeInsets' in scope
 71 |         return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
 72 |                                 trailing: lsh.trailing - rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:77:55: error: cannot find type 'EdgeInsets' in scope
 75 |     }
 76 |
 77 |     public static func - (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
    |                                                       `- error: cannot find type 'EdgeInsets' in scope
 78 |         return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
 79 |                                 trailing: lsh.trailing + rsh.right,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:86:41: error: cannot find type 'View' in scope
 84 |
 85 | @available(iOS 9.0, *)
 86 | extension RLayoutKitWrapper where Base: View {
    |                                         `- error: cannot find type 'View' in scope
 87 |
 88 |     public var edges: LayoutEdge {
/host/spi-builder-workspace/Sources/RLayoutKit/Core/LayoutAnchor.swift:29:40: error: cannot find type 'NSLayoutAnchor' in scope
27 | */
28 | @available(iOS 9.0, *)
29 | public struct AnchorWrapper<A, Anchor: NSLayoutAnchor<A>> {
   |                                        `- error: cannot find type 'NSLayoutAnchor' in scope
30 |
31 | 	public let anchor: Anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
    |                                    `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:67: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
    |                                                                   `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
    |                                    `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:67: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
    |                                                                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:234:67: error: cannot find type 'NSLayoutDimension' in scope
232 |
233 | 	@available(iOS 10.0, *)
234 | 	public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
    |                                                                   `- error: cannot find type 'NSLayoutDimension' in scope
235 | 		return lsh
236 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:257:67: error: cannot find type 'NSLayoutDimension' in scope
255 |
256 | 	@available(iOS 10.0, *)
257 | 	public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
    |                                                                   `- error: cannot find type 'NSLayoutDimension' in scope
258 | 		return lsh
259 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:48:16: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
 46 |
 47 |     public static func + (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
 48 |         return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
    |                `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
 49 |                                 trailing: lsh.trailing - rsh.right,
 50 |                                 top: lsh.top + rsh.top,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:55:16: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
 53 |
 54 |     public static func - (lsh: LayoutEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
 55 |         return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
    |                `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
 56 |                                 trailing: lsh.trailing + rsh.right,
 57 |                                 top: lsh.top - rsh.top,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:71:16: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
 69 |
 70 |     public static func + (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
 71 |         return LayoutInsetsEdge(leading: lsh.leading + rsh.left,
    |                `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
 72 |                                 trailing: lsh.trailing - rsh.right,
 73 |                                 top: lsh.top + rsh.top,
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutEdge.swift:78:16: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
 76 |
 77 |     public static func - (lsh: LayoutInsetsEdge, rsh: EdgeInsets) -> LayoutInsetsEdge {
 78 |         return LayoutInsetsEdge(leading: lsh.leading - rsh.left,
    |                `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
 79 |                                 trailing: lsh.trailing + rsh.right,
 80 |                                 top: lsh.top - rsh.top,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:17:41: error: cannot find type 'View' in scope
 15 |
 16 | @available(iOS 9.0, *)
 17 | extension RLayoutKitWrapper where Base: View {
    |                                         `- error: cannot find type 'View' in scope
 18 | 	public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
 19 | 		return .init(
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:18:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 16 | @available(iOS 9.0, *)
 17 | extension RLayoutKitWrapper where Base: View {
 18 | 	public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
    |                                    `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 19 | 		return .init(
 20 | 			anchor: base.leadingAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:25:37: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 23 | 	}
 24 |
 25 | 	public var trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
    |                                     `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 26 | 		return .init(
 27 | 			anchor: base.trailingAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:46:32: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 44 | 	}
 45 |
 46 | 	public var top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
    |                                `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 47 | 		return .init(
 48 | 			anchor: base.topAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:53:35: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 51 | 	}
 52 |
 53 | 	public var bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
    |                                   `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 54 | 		return .init(
 55 | 			anchor: base.bottomAnchor,
[12/13] Compiling RLayoutKit ViewAnchors.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:17:41: error: cannot find type 'View' in scope
 15 |
 16 | @available(iOS 9.0, *)
 17 | extension RLayoutKitWrapper where Base: View {
    |                                         `- error: cannot find type 'View' in scope
 18 | 	public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
 19 | 		return .init(
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:18:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 16 | @available(iOS 9.0, *)
 17 | extension RLayoutKitWrapper where Base: View {
 18 | 	public var leading: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
    |                                    `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 19 | 		return .init(
 20 | 			anchor: base.leadingAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:25:37: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 23 | 	}
 24 |
 25 | 	public var trailing: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
    |                                     `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 26 | 		return .init(
 27 | 			anchor: base.trailingAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:32:33: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 30 | 	}
 31 |
 32 | 	public var left: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
    |                                 `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 33 | 		return .init(
 34 | 			anchor: base.leftAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:39:34: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 37 | 	}
 38 |
 39 | 	public var right: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
    |                                  `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 40 | 		return .init(
 41 | 			anchor: base.rightAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:46:32: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 44 | 	}
 45 |
 46 | 	public var top: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
    |                                `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 47 | 		return .init(
 48 | 			anchor: base.topAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:53:35: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 51 | 	}
 52 |
 53 | 	public var bottom: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
    |                                   `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 54 | 		return .init(
 55 | 			anchor: base.bottomAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:60:34: error: cannot find type 'NSLayoutDimension' in scope
 58 | 	}
 59 |
 60 | 	public var width: AnchorWrapper<NSLayoutDimension, NSLayoutDimension> {
    |                                  `- error: cannot find type 'NSLayoutDimension' in scope
 61 | 		return .init(
 62 | 			anchor: base.widthAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:67:35: error: cannot find type 'NSLayoutDimension' in scope
 65 | 	}
 66 |
 67 | 	public var height: AnchorWrapper<NSLayoutDimension, NSLayoutDimension> {
    |                                   `- error: cannot find type 'NSLayoutDimension' in scope
 68 | 		return .init(
 69 | 			anchor: base.heightAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:74:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
 72 | 	}
 73 |
 74 | 	public var centerX: AnchorWrapper<NSLayoutXAxisAnchor, NSLayoutXAxisAnchor> {
    |                                    `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
 75 | 		return .init(
 76 | 			anchor: base.centerXAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:81:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 79 | 	}
 80 |
 81 | 	public var centerY: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
    |                                    `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 82 | 		return .init(
 83 | 			anchor: base.centerYAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:88:42: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 86 | 	}
 87 |
 88 | 	public var firstBaseline: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
    |                                          `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 89 | 		return .init(
 90 | 			anchor: base.firstBaselineAnchor,
/host/spi-builder-workspace/Sources/RLayoutKit/Core/ViewAnchors.swift:95:41: error: cannot find type 'NSLayoutYAxisAnchor' in scope
 93 | 	}
 94 |
 95 | 	public var lastBaseline: AnchorWrapper<NSLayoutYAxisAnchor, NSLayoutYAxisAnchor> {
    |                                         `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
 96 | 		return .init(
 97 | 			anchor: base.lastBaselineAnchor,
[13/13] Compiling RLayoutKit LayoutBase.swift
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:23:11: error: cannot find type 'NSLayoutConstraint' in scope
 21 | infix operator <=*: ComparisonPrecedence
 22 |
 23 | extension NSLayoutConstraint {
    |           `- error: cannot find type 'NSLayoutConstraint' in scope
 24 |
 25 | 	public var active: NSLayoutConstraint {
/host/spi-builder-workspace/Sources/RLayoutKit/Core/LayoutAnchor.swift:29:40: error: cannot find type 'NSLayoutAnchor' in scope
27 | */
28 | @available(iOS 9.0, *)
29 | public struct AnchorWrapper<A, Anchor: NSLayoutAnchor<A>> {
   |                                        `- error: cannot find type 'NSLayoutAnchor' in scope
30 |
31 | 	public let anchor: Anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:42:68: error: cannot find type 'NSLayoutConstraint' in scope
 40 |
 41 | 	@discardableResult
 42 | 	public static func == (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
    |                                                                    `- error: cannot find type 'NSLayoutConstraint' in scope
 43 | 		#if os(iOS)
 44 | 		if #available(iOS 11.0, *) {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:62:62: error: cannot find type 'NSLayoutConstraint' in scope
 60 | 	}
 61 |
 62 | 	static func ==+ (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
 63 | 		return lsh
 64 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:107:68: error: cannot find type 'NSLayoutConstraint' in scope
105 |
106 | 	@discardableResult
107 | 	public static func >= (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
    |                                                                    `- error: cannot find type 'NSLayoutConstraint' in scope
108 | 		#if os(iOS)
109 | 		if #available(iOS 11.0, *) {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:127:62: error: cannot find type 'NSLayoutConstraint' in scope
125 | 	}
126 |
127 | 	static func >=+ (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
128 | 		return lsh
129 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:171:68: error: cannot find type 'NSLayoutConstraint' in scope
169 |
170 | 	@discardableResult
171 | 	public static func <= (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
    |                                                                    `- error: cannot find type 'NSLayoutConstraint' in scope
172 | 		#if os(iOS)
173 | 		if #available(iOS 11.0, *) {
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:191:62: error: cannot find type 'NSLayoutConstraint' in scope
189 | 	}
190 |
191 | 	static func <=+ (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutConstraint {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
192 | 		return lsh
193 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:36: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
    |                                    `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:231:67: error: cannot find type 'NSLayoutYAxisAnchor' in scope
229 |
230 | @available(iOS 9.0, *)
231 | extension AnchorWrapper where A == NSLayoutYAxisAnchor, Anchor == NSLayoutYAxisAnchor {
    |                                                                   `- error: cannot find type 'NSLayoutYAxisAnchor' in scope
232 |
233 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:234:67: error: cannot find type 'NSLayoutDimension' in scope
232 |
233 | 	@available(iOS 10.0, *)
234 | 	public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
    |                                                                   `- error: cannot find type 'NSLayoutDimension' in scope
235 | 		return lsh
236 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:241:62: error: cannot find type 'NSLayoutConstraint' in scope
239 |
240 | 	@discardableResult
241 | 	public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint? {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
242 | 		guard let superAnchor = lsh.superAnchor else {
243 | 			return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:36: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
    |                                    `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:254:67: error: cannot find type 'NSLayoutXAxisAnchor' in scope
252 |
253 | @available(iOS 9.0, *)
254 | extension AnchorWrapper where A == NSLayoutXAxisAnchor, Anchor == NSLayoutXAxisAnchor {
    |                                                                   `- error: cannot find type 'NSLayoutXAxisAnchor' in scope
255 |
256 | 	@available(iOS 10.0, *)
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:257:67: error: cannot find type 'NSLayoutDimension' in scope
255 |
256 | 	@available(iOS 10.0, *)
257 | 	public static func - (lsh: AnchorWrapper, rsh: AnchorWrapper) -> NSLayoutDimension {
    |                                                                   `- error: cannot find type 'NSLayoutDimension' in scope
258 | 		return lsh
259 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:264:62: error: cannot find type 'NSLayoutConstraint' in scope
262 |
263 | 	@discardableResult
264 | 	public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint? {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
265 | 		guard let superAnchor = lsh.superAnchor else {
266 | 			return nil
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:277:36: error: cannot find type 'NSLayoutDimension' in scope
275 |
276 | @available(iOS 9.0, *)
277 | extension AnchorWrapper where A == NSLayoutDimension, Anchor == NSLayoutDimension {
    |                                    `- error: cannot find type 'NSLayoutDimension' in scope
278 |
279 | 	@discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:277:65: error: cannot find type 'NSLayoutDimension' in scope
275 |
276 | @available(iOS 9.0, *)
277 | extension AnchorWrapper where A == NSLayoutDimension, Anchor == NSLayoutDimension {
    |                                                                 `- error: cannot find type 'NSLayoutDimension' in scope
278 |
279 | 	@discardableResult
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:280:62: error: cannot find type 'NSLayoutConstraint' in scope
278 |
279 | 	@discardableResult
280 | 	public static func == (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
281 | 		return lsh
282 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:288:62: error: cannot find type 'NSLayoutConstraint' in scope
286 |
287 | 	@discardableResult
288 | 	public static func >= (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
289 | 		return lsh
290 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:296:62: error: cannot find type 'NSLayoutConstraint' in scope
294 |
295 | 	@discardableResult
296 | 	public static func <= (lsh: AnchorWrapper, rsh: CGFloat) -> NSLayoutConstraint {
    |                                                              `- error: cannot find type 'NSLayoutConstraint' in scope
297 | 		return lsh
298 | 			.anchor
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:25:21: error: cannot find type 'NSLayoutConstraint' in scope
 23 | extension NSLayoutConstraint {
 24 |
 25 | 	public var active: NSLayoutConstraint {
    |                     `- error: cannot find type 'NSLayoutConstraint' in scope
 26 | 		isActive = true
 27 | 		return self
/host/spi-builder-workspace/Sources/RLayoutKit/Layout/LayoutBase.swift:30:23: error: cannot find type 'NSLayoutConstraint' in scope
 28 | 	}
 29 |
 30 | 	public var inactive: NSLayoutConstraint {
    |                       `- error: cannot find type 'NSLayoutConstraint' in scope
 31 | 		isActive = false
 32 | 		return self
BUILD FAILURE 6.2 linux