The Swift Package Index logo.Swift Package Index

Build Information

Failed to build FHConstraints with Swift 5.10 for Linux.

Build Command

bash -c docker run --rm -v "checkouts-4606859-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.29.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/FelixHerrmann/FHConstraints.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/FelixHerrmann/FHConstraints
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 72febbb fixed macOS destination
Cloned https://github.com/FelixHerrmann/FHConstraints.git
Revision (git rev-parse @):
72febbbe2f8042414cfec30e4fbdcdc454616606
SUCCESS checkout https://github.com/FelixHerrmann/FHConstraints.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             5.10
Building package at path:  $workDir
https://github.com/FelixHerrmann/FHConstraints.git
Running build ...
bash -c docker run --rm -v "checkouts-4606859-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build 2>&1
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/7] Compiling FHConstraints FHLayoutConstantType.swift
[4/7] Compiling FHConstraints FHLayoutItem.swift
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:35:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var leadingAnchor: NSLayoutXAxisAnchor { get }
                       ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:36:25: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var trailingAnchor: NSLayoutXAxisAnchor { get }
                        ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:37:21: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var leftAnchor: NSLayoutXAxisAnchor { get }
                    ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:38:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var rightAnchor: NSLayoutXAxisAnchor { get }
                     ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:39:20: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    var topAnchor: NSLayoutYAxisAnchor { get }
                   ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:40:23: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    var bottomAnchor: NSLayoutYAxisAnchor { get }
                      ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:41:22: error: cannot find type 'NSLayoutDimension' in scope
    var widthAnchor: NSLayoutDimension { get }
                     ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:42:23: error: cannot find type 'NSLayoutDimension' in scope
    var heightAnchor: NSLayoutDimension { get }
                      ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:43:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var centerXAnchor: NSLayoutXAxisAnchor { get }
                       ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:44:24: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    var centerYAnchor: NSLayoutYAxisAnchor { get }
                       ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:55:76: error: cannot find type 'NSLayoutConstraint' in scope
    @discardableResult public func constraint(_ anchor: FHLayoutAnchor) -> NSLayoutConstraint {
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:65:80: error: cannot find type 'NSLayoutConstraint' in scope
    @discardableResult public func constraint(_ anchors: [FHLayoutAnchor]) -> [NSLayoutConstraint] {
                                                                               ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:72:95: error: cannot find type 'NSLayoutConstraint' in scope
    @discardableResult public func constraint(_ convenienceAnchors: FHConvenienceAnchors) -> [NSLayoutConstraint] {
                                                                                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:81:66: error: cannot find type 'NSLayoutConstraint' in scope
    public func createConstraint(from anchor: FHLayoutAnchor) -> NSLayoutConstraint {
                                                                 ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:89:74: error: cannot find type 'NSLayoutConstraint' in scope
    private func _createConstraint(fromAnchor anchor: FHLayoutAnchor) -> NSLayoutConstraint {
                                                                         ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:9:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    case leading(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                     ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:9:80: error: cannot find type 'CGFloat' in scope
    case leading(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                               ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:10:23: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    case trailing(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                      ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:10:81: error: cannot find type 'CGFloat' in scope
    case trailing(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                                ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:11:19: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    case left(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                  ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:11:77: error: cannot find type 'CGFloat' in scope
    case left(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                            ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:12:20: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    case right(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                   ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:12:78: error: cannot find type 'CGFloat' in scope
    case right(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                             ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:13:18: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    case top(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                 ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:13:76: error: cannot find type 'CGFloat' in scope
    case top(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                           ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:14:21: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    case bottom(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                    ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:14:79: error: cannot find type 'CGFloat' in scope
    case bottom(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                              ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:15:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    case centerX(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                     ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:15:80: error: cannot find type 'CGFloat' in scope
    case centerX(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                               ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:16:22: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    case centerY(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                     ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:16:80: error: cannot find type 'CGFloat' in scope
    case centerY(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                               ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:17:20: error: cannot find type 'NSLayoutDimension' in scope
    case width(to: NSLayoutDimension, _ constantType: FHLayoutConstantType<DimensionConstant> = .equal(to: DimensionConstant()))
                   ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:18:61: error: cannot find type 'CGFloat' in scope
    case widthConstant(_ constantType: FHLayoutConstantType<CGFloat>)
                                                            ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:19:21: error: cannot find type 'NSLayoutDimension' in scope
    case height(to: NSLayoutDimension, _ constantType: FHLayoutConstantType<DimensionConstant> = .equal(to: DimensionConstant()))
                    ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:20:62: error: cannot find type 'CGFloat' in scope
    case heightConstant(_ constantType: FHLayoutConstantType<CGFloat>)
                                                             ^~~~~~~
error: emit-module command failed with exit code 1 (use -v to see invocation)
error: compile command failed due to signal 6 (use -v to see invocation)
error: compile command failed due to signal 6 (use -v to see invocation)
[5/7] Emitting module FHConstraints
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:13:64: error: cannot find type 'EdgeInsets' in scope
    case inside(of: FHLayoutItem, insets: FHLayoutConstantType<EdgeInsets> = .equal(to: EdgeInsets()))
                                                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:33:33: error: cannot find type 'CGFloat' in scope
        public init(horizontal: CGFloat = 0, vertical: CGFloat = 0) {
                                ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:33:56: error: cannot find type 'CGFloat' in scope
        public init(horizontal: CGFloat = 0, vertical: CGFloat = 0) {
                                                       ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:35:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var leadingAnchor: NSLayoutXAxisAnchor { get }
                       ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:36:25: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var trailingAnchor: NSLayoutXAxisAnchor { get }
                        ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:37:21: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var leftAnchor: NSLayoutXAxisAnchor { get }
                    ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:38:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var rightAnchor: NSLayoutXAxisAnchor { get }
                     ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:39:20: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    var topAnchor: NSLayoutYAxisAnchor { get }
                   ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:40:23: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    var bottomAnchor: NSLayoutYAxisAnchor { get }
                      ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:41:22: error: cannot find type 'NSLayoutDimension' in scope
    var widthAnchor: NSLayoutDimension { get }
                     ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:42:23: error: cannot find type 'NSLayoutDimension' in scope
    var heightAnchor: NSLayoutDimension { get }
                      ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:43:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var centerXAnchor: NSLayoutXAxisAnchor { get }
                       ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:44:24: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    var centerYAnchor: NSLayoutYAxisAnchor { get }
                       ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:23:44: error: cannot find type 'CGSize' in scope
    case size(_ size: FHLayoutConstantType<CGSize>)
                                           ^~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:30:32: error: cannot find type 'CGFloat' in scope
        public var horizontal: CGFloat
                               ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:31:30: error: cannot find type 'CGFloat' in scope
        public var vertical: CGFloat
                             ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:42:61: error: cannot find type 'NSLayoutConstraint' in scope
    internal func _constraint(layoutItem: FHLayoutItem) -> [NSLayoutConstraint] {
                                                            ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:9:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    case leading(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                     ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:9:80: error: cannot find type 'CGFloat' in scope
    case leading(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                               ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:10:23: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    case trailing(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                      ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:10:81: error: cannot find type 'CGFloat' in scope
    case trailing(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                                ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:11:19: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    case left(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                  ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:11:77: error: cannot find type 'CGFloat' in scope
    case left(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                            ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:12:20: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    case right(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                   ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:12:78: error: cannot find type 'CGFloat' in scope
    case right(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                             ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:13:18: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    case top(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                 ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:13:76: error: cannot find type 'CGFloat' in scope
    case top(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                           ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:14:21: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    case bottom(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                    ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:14:79: error: cannot find type 'CGFloat' in scope
    case bottom(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                              ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:15:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    case centerX(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                     ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:15:80: error: cannot find type 'CGFloat' in scope
    case centerX(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                               ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:16:22: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    case centerY(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                     ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:16:80: error: cannot find type 'CGFloat' in scope
    case centerY(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                               ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:17:20: error: cannot find type 'NSLayoutDimension' in scope
    case width(to: NSLayoutDimension, _ constantType: FHLayoutConstantType<DimensionConstant> = .equal(to: DimensionConstant()))
                   ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:30:33: error: cannot find type 'CGFloat' in scope
        public init(multiplier: CGFloat = 1, constant: CGFloat = 0) {
                                ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:30:56: error: cannot find type 'CGFloat' in scope
        public init(multiplier: CGFloat = 1, constant: CGFloat = 0) {
                                                       ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:18:61: error: cannot find type 'CGFloat' in scope
    case widthConstant(_ constantType: FHLayoutConstantType<CGFloat>)
                                                            ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:19:21: error: cannot find type 'NSLayoutDimension' in scope
    case height(to: NSLayoutDimension, _ constantType: FHLayoutConstantType<DimensionConstant> = .equal(to: DimensionConstant()))
                    ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:20:62: error: cannot find type 'CGFloat' in scope
    case heightConstant(_ constantType: FHLayoutConstantType<CGFloat>)
                                                             ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:27:32: error: cannot find type 'CGFloat' in scope
        public var multiplier: CGFloat
                               ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:28:30: error: cannot find type 'CGFloat' in scope
        public var constant: CGFloat
                             ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:55:76: error: cannot find type 'NSLayoutConstraint' in scope
    @discardableResult public func constraint(_ anchor: FHLayoutAnchor) -> NSLayoutConstraint {
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:65:80: error: cannot find type 'NSLayoutConstraint' in scope
    @discardableResult public func constraint(_ anchors: [FHLayoutAnchor]) -> [NSLayoutConstraint] {
                                                                               ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:72:95: error: cannot find type 'NSLayoutConstraint' in scope
    @discardableResult public func constraint(_ convenienceAnchors: FHConvenienceAnchors) -> [NSLayoutConstraint] {
                                                                                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:81:66: error: cannot find type 'NSLayoutConstraint' in scope
    public func createConstraint(from anchor: FHLayoutAnchor) -> NSLayoutConstraint {
                                                                 ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:89:74: error: cannot find type 'NSLayoutConstraint' in scope
    private func _createConstraint(fromAnchor anchor: FHLayoutAnchor) -> NSLayoutConstraint {
                                                                         ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:13:64: error: cannot find type 'EdgeInsets' in scope
    case inside(of: FHLayoutItem, insets: FHLayoutConstantType<EdgeInsets> = .equal(to: EdgeInsets()))
                                                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:33:33: error: cannot find type 'CGFloat' in scope
        public init(horizontal: CGFloat = 0, vertical: CGFloat = 0) {
                                ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:33:56: error: cannot find type 'CGFloat' in scope
        public init(horizontal: CGFloat = 0, vertical: CGFloat = 0) {
                                                       ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:35:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var leadingAnchor: NSLayoutXAxisAnchor { get }
                       ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:36:25: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var trailingAnchor: NSLayoutXAxisAnchor { get }
                        ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:37:21: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var leftAnchor: NSLayoutXAxisAnchor { get }
                    ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:38:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var rightAnchor: NSLayoutXAxisAnchor { get }
                     ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:39:20: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    var topAnchor: NSLayoutYAxisAnchor { get }
                   ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:40:23: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    var bottomAnchor: NSLayoutYAxisAnchor { get }
                      ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:41:22: error: cannot find type 'NSLayoutDimension' in scope
    var widthAnchor: NSLayoutDimension { get }
                     ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:42:23: error: cannot find type 'NSLayoutDimension' in scope
    var heightAnchor: NSLayoutDimension { get }
                      ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:43:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var centerXAnchor: NSLayoutXAxisAnchor { get }
                       ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:44:24: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    var centerYAnchor: NSLayoutYAxisAnchor { get }
                       ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:23:44: error: cannot find type 'CGSize' in scope
    case size(_ size: FHLayoutConstantType<CGSize>)
                                           ^~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:30:32: error: cannot find type 'CGFloat' in scope
        public var horizontal: CGFloat
                               ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:31:30: error: cannot find type 'CGFloat' in scope
        public var vertical: CGFloat
                             ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:42:61: error: cannot find type 'NSLayoutConstraint' in scope
    internal func _constraint(layoutItem: FHLayoutItem) -> [NSLayoutConstraint] {
                                                            ^~~~~~~~~~~~~~~~~~
Can't demangle: $s13FHConstraints20FHConvenienceAnchorsO6inside33_6E682840BAE3D4F5105A6AC170DA1026LLXeF2ofL_AA12FHLayoutItem_pvp
Please submit a bug report (https://swift.org/contributing/#reporting-bugs) and include the crash backtrace.
Stack dump:
0.	Program arguments: /usr/bin/swift-frontend -frontend -c -primary-file /host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift /host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift /host/spi-builder-workspace/Sources/FHConstraints/FHLayoutConstantType.swift /host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift -emit-dependencies-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/FHConstraints.build/FHConvenienceAnchors.d -emit-reference-dependencies-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/FHConstraints.build/FHConvenienceAnchors.swiftdeps -target x86_64-unknown-linux-gnu -disable-objc-interop -I /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug -enable-testing -g -module-cache-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/ModuleCache -swift-version 5 -Onone -D SWIFT_PACKAGE -D DEBUG -new-driver-path /usr/bin/swift-driver -empty-abi-descriptor -resource-dir /usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fPIC -Xcc -g -Xcc -fno-omit-frame-pointer -module-name FHConstraints -plugin-path /usr/lib/swift/host/plugins -plugin-path /usr/local/lib/swift/host/plugins -parse-as-library -o /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/FHConstraints.build/FHConvenienceAnchors.swift.o -index-store-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/index/store -index-system-modules
1.	Swift version 5.10-dev (LLVM dbfaba0078e9380, Swift 63c8b551eb2f613)
2.	Compiling with the current language version
3.	While walking into 'FHConvenienceAnchors' (at /host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:8:8)
4.	While evaluating request USRGenerationRequest(FHConstraints.(file).FHConvenienceAnchors.inside(of:insets:).of@/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:13:17)
Stack dump without symbol names (ensure you have llvm-symbolizer in your PATH or set the environment var `LLVM_SYMBOLIZER_PATH` to point to it):
/usr/bin/swift-frontend(+0x7307d73)[0x5599cbbacd73]
/usr/bin/swift-frontend(+0x7305abe)[0x5599cbbaaabe]
/usr/bin/swift-frontend(+0x73080ea)[0x5599cbbad0ea]
/lib/x86_64-linux-gnu/libc.so.6(+0x42520)[0x7f7a780c9520]
/lib/x86_64-linux-gnu/libc.so.6(pthread_kill+0x12c)[0x7f7a7811d9fc]
/lib/x86_64-linux-gnu/libc.so.6(raise+0x16)[0x7f7a780c9476]
/lib/x86_64-linux-gnu/libc.so.6(abort+0xd3)[0x7f7a780af7f3]
/usr/bin/swift-frontend(+0x2af4275)[0x5599c7399275]
/usr/bin/swift-frontend(+0x2755c54)[0x5599c6ffac54]
/usr/bin/swift-frontend(+0x2ab869b)[0x5599c735d69b]
/usr/bin/swift-frontend(+0x2347a0c)[0x5599c6beca0c]
/usr/bin/swift-frontend(+0x106859c)[0x5599c590d59c]
/usr/bin/swift-frontend(+0x1068102)[0x5599c590d102]
/usr/bin/swift-frontend(+0x106716b)[0x5599c590c16b]
/usr/bin/swift-frontend(+0x2ab91aa)[0x5599c735e1aa]
/usr/bin/swift-frontend(+0x1036d5b)[0x5599c58dbd5b]
/usr/bin/swift-frontend(+0x10362a7)[0x5599c58db2a7]
/usr/bin/swift-frontend(+0x1033c59)[0x5599c58d8c59]
/usr/bin/swift-frontend(+0x1cb4cd1)[0x5599c6559cd1]
/usr/bin/swift-frontend(+0x27ad05c)[0x5599c705205c]
/usr/bin/swift-frontend(+0x27aeb3c)[0x5599c7053b3c]
/usr/bin/swift-frontend(+0x27b10e7)[0x5599c70560e7]
/usr/bin/swift-frontend(+0x27ad07c)[0x5599c705207c]
/usr/bin/swift-frontend(+0x27b1c1f)[0x5599c7056c1f]
/usr/bin/swift-frontend(+0x27b086b)[0x5599c705586b]
/usr/bin/swift-frontend(+0x27ad07c)[0x5599c705207c]
/usr/bin/swift-frontend(+0x27acf73)[0x5599c7051f73]
/usr/bin/swift-frontend(+0x298b1e2)[0x5599c72301e2]
/usr/bin/swift-frontend(+0x1cb26a6)[0x5599c65576a6]
/usr/bin/swift-frontend(+0x1032c84)[0x5599c58d7c84]
/usr/bin/swift-frontend(+0x1032b2a)[0x5599c58d7b2a]
/usr/bin/swift-frontend(+0x1027f82)[0x5599c58ccf82]
/usr/bin/swift-frontend(+0x1027978)[0x5599c58cc978]
/usr/bin/swift-frontend(+0xe3f242)[0x5599c56e4242]
/usr/bin/swift-frontend(+0xe3d09c)[0x5599c56e209c]
/usr/bin/swift-frontend(+0xe382cd)[0x5599c56dd2cd]
/usr/bin/swift-frontend(+0xe369db)[0x5599c56db9db]
/usr/bin/swift-frontend(+0xcc3315)[0x5599c5568315]
/lib/x86_64-linux-gnu/libc.so.6(+0x29d90)[0x7f7a780b0d90]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x80)[0x7f7a780b0e40]
/usr/bin/swift-frontend(+0xcc2375)[0x5599c5567375]
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
error: compile command failed due to signal 6 (use -v to see invocation)
error: compile command failed due to signal 6 (use -v to see invocation)
[2/5] Emitting module FHConstraints
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:13:64: error: cannot find type 'EdgeInsets' in scope
    case inside(of: FHLayoutItem, insets: FHLayoutConstantType<EdgeInsets> = .equal(to: EdgeInsets()))
                                                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:33:33: error: cannot find type 'CGFloat' in scope
        public init(horizontal: CGFloat = 0, vertical: CGFloat = 0) {
                                ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:33:56: error: cannot find type 'CGFloat' in scope
        public init(horizontal: CGFloat = 0, vertical: CGFloat = 0) {
                                                       ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:35:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var leadingAnchor: NSLayoutXAxisAnchor { get }
                       ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:36:25: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var trailingAnchor: NSLayoutXAxisAnchor { get }
                        ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:37:21: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var leftAnchor: NSLayoutXAxisAnchor { get }
                    ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:38:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var rightAnchor: NSLayoutXAxisAnchor { get }
                     ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:39:20: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    var topAnchor: NSLayoutYAxisAnchor { get }
                   ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:40:23: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    var bottomAnchor: NSLayoutYAxisAnchor { get }
                      ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:41:22: error: cannot find type 'NSLayoutDimension' in scope
    var widthAnchor: NSLayoutDimension { get }
                     ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:42:23: error: cannot find type 'NSLayoutDimension' in scope
    var heightAnchor: NSLayoutDimension { get }
                      ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:43:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var centerXAnchor: NSLayoutXAxisAnchor { get }
                       ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:44:24: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    var centerYAnchor: NSLayoutYAxisAnchor { get }
                       ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:23:44: error: cannot find type 'CGSize' in scope
    case size(_ size: FHLayoutConstantType<CGSize>)
                                           ^~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:30:32: error: cannot find type 'CGFloat' in scope
        public var horizontal: CGFloat
                               ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:31:30: error: cannot find type 'CGFloat' in scope
        public var vertical: CGFloat
                             ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:42:61: error: cannot find type 'NSLayoutConstraint' in scope
    internal func _constraint(layoutItem: FHLayoutItem) -> [NSLayoutConstraint] {
                                                            ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:9:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    case leading(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                     ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:9:80: error: cannot find type 'CGFloat' in scope
    case leading(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                               ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:10:23: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    case trailing(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                      ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:10:81: error: cannot find type 'CGFloat' in scope
    case trailing(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                                ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:11:19: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    case left(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                  ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:11:77: error: cannot find type 'CGFloat' in scope
    case left(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                            ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:12:20: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    case right(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                   ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:12:78: error: cannot find type 'CGFloat' in scope
    case right(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                             ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:13:18: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    case top(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                 ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:13:76: error: cannot find type 'CGFloat' in scope
    case top(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                           ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:14:21: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    case bottom(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                    ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:14:79: error: cannot find type 'CGFloat' in scope
    case bottom(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                              ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:15:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    case centerX(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                     ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:15:80: error: cannot find type 'CGFloat' in scope
    case centerX(to: NSLayoutXAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                               ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:16:22: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    case centerY(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                     ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:16:80: error: cannot find type 'CGFloat' in scope
    case centerY(to: NSLayoutYAxisAnchor, _ constantType: FHLayoutConstantType<CGFloat> = .equal(to: 0))
                                                                               ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:17:20: error: cannot find type 'NSLayoutDimension' in scope
    case width(to: NSLayoutDimension, _ constantType: FHLayoutConstantType<DimensionConstant> = .equal(to: DimensionConstant()))
                   ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:30:33: error: cannot find type 'CGFloat' in scope
        public init(multiplier: CGFloat = 1, constant: CGFloat = 0) {
                                ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:30:56: error: cannot find type 'CGFloat' in scope
        public init(multiplier: CGFloat = 1, constant: CGFloat = 0) {
                                                       ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:18:61: error: cannot find type 'CGFloat' in scope
    case widthConstant(_ constantType: FHLayoutConstantType<CGFloat>)
                                                            ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:19:21: error: cannot find type 'NSLayoutDimension' in scope
    case height(to: NSLayoutDimension, _ constantType: FHLayoutConstantType<DimensionConstant> = .equal(to: DimensionConstant()))
                    ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:20:62: error: cannot find type 'CGFloat' in scope
    case heightConstant(_ constantType: FHLayoutConstantType<CGFloat>)
                                                             ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:27:32: error: cannot find type 'CGFloat' in scope
        public var multiplier: CGFloat
                               ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift:28:30: error: cannot find type 'CGFloat' in scope
        public var constant: CGFloat
                             ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:55:76: error: cannot find type 'NSLayoutConstraint' in scope
    @discardableResult public func constraint(_ anchor: FHLayoutAnchor) -> NSLayoutConstraint {
                                                                           ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:65:80: error: cannot find type 'NSLayoutConstraint' in scope
    @discardableResult public func constraint(_ anchors: [FHLayoutAnchor]) -> [NSLayoutConstraint] {
                                                                               ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:72:95: error: cannot find type 'NSLayoutConstraint' in scope
    @discardableResult public func constraint(_ convenienceAnchors: FHConvenienceAnchors) -> [NSLayoutConstraint] {
                                                                                              ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:81:66: error: cannot find type 'NSLayoutConstraint' in scope
    public func createConstraint(from anchor: FHLayoutAnchor) -> NSLayoutConstraint {
                                                                 ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:89:74: error: cannot find type 'NSLayoutConstraint' in scope
    private func _createConstraint(fromAnchor anchor: FHLayoutAnchor) -> NSLayoutConstraint {
                                                                         ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:13:64: error: cannot find type 'EdgeInsets' in scope
    case inside(of: FHLayoutItem, insets: FHLayoutConstantType<EdgeInsets> = .equal(to: EdgeInsets()))
                                                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:33:33: error: cannot find type 'CGFloat' in scope
        public init(horizontal: CGFloat = 0, vertical: CGFloat = 0) {
                                ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:33:56: error: cannot find type 'CGFloat' in scope
        public init(horizontal: CGFloat = 0, vertical: CGFloat = 0) {
                                                       ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:35:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var leadingAnchor: NSLayoutXAxisAnchor { get }
                       ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:36:25: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var trailingAnchor: NSLayoutXAxisAnchor { get }
                        ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:37:21: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var leftAnchor: NSLayoutXAxisAnchor { get }
                    ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:38:22: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var rightAnchor: NSLayoutXAxisAnchor { get }
                     ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:39:20: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    var topAnchor: NSLayoutYAxisAnchor { get }
                   ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:40:23: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    var bottomAnchor: NSLayoutYAxisAnchor { get }
                      ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:41:22: error: cannot find type 'NSLayoutDimension' in scope
    var widthAnchor: NSLayoutDimension { get }
                     ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:42:23: error: cannot find type 'NSLayoutDimension' in scope
    var heightAnchor: NSLayoutDimension { get }
                      ^~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:43:24: error: cannot find type 'NSLayoutXAxisAnchor' in scope
    var centerXAnchor: NSLayoutXAxisAnchor { get }
                       ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift:44:24: error: cannot find type 'NSLayoutYAxisAnchor' in scope
    var centerYAnchor: NSLayoutYAxisAnchor { get }
                       ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:23:44: error: cannot find type 'CGSize' in scope
    case size(_ size: FHLayoutConstantType<CGSize>)
                                           ^~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:30:32: error: cannot find type 'CGFloat' in scope
        public var horizontal: CGFloat
                               ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:31:30: error: cannot find type 'CGFloat' in scope
        public var vertical: CGFloat
                             ^~~~~~~
/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:42:61: error: cannot find type 'NSLayoutConstraint' in scope
    internal func _constraint(layoutItem: FHLayoutItem) -> [NSLayoutConstraint] {
                                                            ^~~~~~~~~~~~~~~~~~
Can't demangle: $s13FHConstraints20FHConvenienceAnchorsO6inside33_6E682840BAE3D4F5105A6AC170DA1026LLXeF2ofL_AA12FHLayoutItem_pvp
Please submit a bug report (https://swift.org/contributing/#reporting-bugs) and include the crash backtrace.
Stack dump:
0.	Program arguments: /usr/bin/swift-frontend -frontend -c -primary-file /host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift /host/spi-builder-workspace/Sources/FHConstraints/FHLayoutAnchor.swift /host/spi-builder-workspace/Sources/FHConstraints/FHLayoutConstantType.swift /host/spi-builder-workspace/Sources/FHConstraints/FHLayoutItem.swift -emit-dependencies-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/FHConstraints.build/FHConvenienceAnchors.d -emit-reference-dependencies-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/FHConstraints.build/FHConvenienceAnchors.swiftdeps -target x86_64-unknown-linux-gnu -disable-objc-interop -I /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug -enable-testing -g -module-cache-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/ModuleCache -swift-version 5 -Onone -D SWIFT_PACKAGE -D DEBUG -new-driver-path /usr/bin/swift-driver -empty-abi-descriptor -resource-dir /usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fPIC -Xcc -g -Xcc -fno-omit-frame-pointer -module-name FHConstraints -plugin-path /usr/lib/swift/host/plugins -plugin-path /usr/local/lib/swift/host/plugins -parse-as-library -o /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/FHConstraints.build/FHConvenienceAnchors.swift.o -index-store-path /host/spi-builder-workspace/.build/x86_64-unknown-linux-gnu/debug/index/store -index-system-modules
1.	Swift version 5.10-dev (LLVM dbfaba0078e9380, Swift 63c8b551eb2f613)
2.	Compiling with the current language version
3.	While walking into 'FHConvenienceAnchors' (at /host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:8:8)
4.	While evaluating request USRGenerationRequest(FHConstraints.(file).FHConvenienceAnchors.inside(of:insets:).of@/host/spi-builder-workspace/Sources/FHConstraints/FHConvenienceAnchors.swift:13:17)
Stack dump without symbol names (ensure you have llvm-symbolizer in your PATH or set the environment var `LLVM_SYMBOLIZER_PATH` to point to it):
/usr/bin/swift-frontend(+0x7307d73)[0x559f6f9b1d73]
/usr/bin/swift-frontend(+0x7305abe)[0x559f6f9afabe]
/usr/bin/swift-frontend(+0x73080ea)[0x559f6f9b20ea]
/lib/x86_64-linux-gnu/libc.so.6(+0x42520)[0x7ffbe3dd8520]
/lib/x86_64-linux-gnu/libc.so.6(pthread_kill+0x12c)[0x7ffbe3e2c9fc]
/lib/x86_64-linux-gnu/libc.so.6(raise+0x16)[0x7ffbe3dd8476]
/lib/x86_64-linux-gnu/libc.so.6(abort+0xd3)[0x7ffbe3dbe7f3]
/usr/bin/swift-frontend(+0x2af4275)[0x559f6b19e275]
/usr/bin/swift-frontend(+0x2755c54)[0x559f6adffc54]
/usr/bin/swift-frontend(+0x2ab869b)[0x559f6b16269b]
/usr/bin/swift-frontend(+0x2347a0c)[0x559f6a9f1a0c]
/usr/bin/swift-frontend(+0x106859c)[0x559f6971259c]
/usr/bin/swift-frontend(+0x1068102)[0x559f69712102]
/usr/bin/swift-frontend(+0x106716b)[0x559f6971116b]
/usr/bin/swift-frontend(+0x2ab91aa)[0x559f6b1631aa]
/usr/bin/swift-frontend(+0x1036d5b)[0x559f696e0d5b]
/usr/bin/swift-frontend(+0x10362a7)[0x559f696e02a7]
/usr/bin/swift-frontend(+0x1033c59)[0x559f696ddc59]
/usr/bin/swift-frontend(+0x1cb4cd1)[0x559f6a35ecd1]
/usr/bin/swift-frontend(+0x27ad05c)[0x559f6ae5705c]
/usr/bin/swift-frontend(+0x27aeb3c)[0x559f6ae58b3c]
/usr/bin/swift-frontend(+0x27b10e7)[0x559f6ae5b0e7]
/usr/bin/swift-frontend(+0x27ad07c)[0x559f6ae5707c]
/usr/bin/swift-frontend(+0x27b1c1f)[0x559f6ae5bc1f]
/usr/bin/swift-frontend(+0x27b086b)[0x559f6ae5a86b]
/usr/bin/swift-frontend(+0x27ad07c)[0x559f6ae5707c]
/usr/bin/swift-frontend(+0x27acf73)[0x559f6ae56f73]
/usr/bin/swift-frontend(+0x298b1e2)[0x559f6b0351e2]
/usr/bin/swift-frontend(+0x1cb26a6)[0x559f6a35c6a6]
/usr/bin/swift-frontend(+0x1032c84)[0x559f696dcc84]
/usr/bin/swift-frontend(+0x1032b2a)[0x559f696dcb2a]
/usr/bin/swift-frontend(+0x1027f82)[0x559f696d1f82]
/usr/bin/swift-frontend(+0x1027978)[0x559f696d1978]
/usr/bin/swift-frontend(+0xe3f242)[0x559f694e9242]
/usr/bin/swift-frontend(+0xe3d09c)[0x559f694e709c]
/usr/bin/swift-frontend(+0xe382cd)[0x559f694e22cd]
/usr/bin/swift-frontend(+0xe369db)[0x559f694e09db]
/usr/bin/swift-frontend(+0xcc3315)[0x559f6936d315]
/lib/x86_64-linux-gnu/libc.so.6(+0x29d90)[0x7ffbe3dbfd90]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x80)[0x7ffbe3dbfe40]
/usr/bin/swift-frontend(+0xcc2375)[0x559f6936c375]
BUILD FAILURE 5.10 linux

Build Machine: Linux 1