The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build MathParser, reference master (2e067f), with Swift 5.9 for Linux on 29 Jun 2024 11:03:49 UTC.

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.44.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/davedelong/DDMathParser.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/davedelong/DDMathParser
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 2e067fc Correct factorial implementation for integers > 20
Cloned https://github.com/davedelong/DDMathParser.git
Revision (git rev-parse @):
2e067fc17c36f4298649b6681d52286fe4ca388e
SUCCESS checkout https://github.com/davedelong/DDMathParser.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             5.9
Building package at path:  $workDir
https://github.com/davedelong/DDMathParser.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-5.9-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-5.9-latest: Pulling from finestructure/spi-images
Digest: sha256:bf2706fb3ad57f47449cad6c85f40e5d27f055fda5f2d8da4d3c25f3a5524d1a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-5.9-latest
Building for debugging...
error: emit-module command failed with exit code 1 (use -v to see invocation)
[1/38] Emitting module MathParser
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:111:23: error: cannot find 'Darwin' in scope
        guard arg1 == Darwin.floor(arg1) else { throw MathParserError(kind: .invalidArguments, range: state.expressionRange) }
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:115:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(2, k) * k.factorial()
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:120:31: error: cannot find 'Darwin' in scope
            let denominator = Darwin.pow(2, k) * k.factorial()
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:133:16: error: cannot find 'Darwin' in scope
        return Darwin.pow(arg1, arg2)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:141:16: error: cannot find 'Darwin' in scope
        return Darwin.sqrt(value)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:150:24: error: cannot find 'Darwin' in scope
            let root = Darwin.pow(-arg1, 1.0/3.0)
                       ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:153:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(arg1, 1.0/3.0)
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:167:24: error: cannot find 'Darwin' in scope
            let root = Darwin.pow(-arg1, 1/arg2)
                       ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:170:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(arg1, 1/arg2)
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:205:16: error: cannot find 'Darwin' in scope
        return Darwin.log10(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:212:16: error: cannot find 'Darwin' in scope
        return Darwin.log(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:219:16: error: cannot find 'Darwin' in scope
        return Darwin.log2(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:226:16: error: cannot find 'Darwin' in scope
        return Darwin.exp(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:401:16: error: cannot find 'Darwin' in scope
        return Darwin.sqrt(stddev / Double(state.arguments.count))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:408:16: error: cannot find 'Darwin' in scope
        return Darwin.ceil(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:415:16: error: cannot find 'Darwin' in scope
        return Darwin.floor(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:424:16: error: cannot find 'Darwin' in scope
        return Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:431:16: error: cannot find 'Darwin' in scope
        return Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:438:16: error: cannot find 'Darwin' in scope
        return Darwin.tan(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:445:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.asin(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:452:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.acos(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:459:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:467:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan2(arg1, arg2), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:474:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:483:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:492:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.tan(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:502:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.asin(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:510:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.acos(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:518:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:527:16: error: cannot find 'Darwin' in scope
        return Darwin.sinh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:534:16: error: cannot find 'Darwin' in scope
        return Darwin.cosh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:541:16: error: cannot find 'Darwin' in scope
        return Darwin.tanh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:548:16: error: cannot find 'Darwin' in scope
        return Darwin.asinh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:555:16: error: cannot find 'Darwin' in scope
        return Darwin.acosh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:562:16: error: cannot find 'Darwin' in scope
        return Darwin.atanh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:569:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.sinh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:578:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.cosh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:587:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.tanh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:597:16: error: cannot find 'Darwin' in scope
        return Darwin.asinh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:605:16: error: cannot find 'Darwin' in scope
        return Darwin.acosh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:613:16: error: cannot find 'Darwin' in scope
        return Darwin.atanh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:622:22: error: cannot find 'Darwin' in scope
        return 1.0 - Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:629:22: error: cannot find 'Darwin' in scope
        return 1.0 + Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:636:22: error: cannot find 'Darwin' in scope
        return 1.0 - Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:643:22: error: cannot find 'Darwin' in scope
        return 1.0 + Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:666:23: error: cannot find 'Darwin' in scope
        let cosArg1 = Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:675:23: error: cannot find 'Darwin' in scope
        let sinArg1 = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:684:23: error: cannot find 'Darwin' in scope
        let sinArg1 = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator) / 2.0)
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:55:26: warning: 'NSExpression' is deprecated: NSExpression is not available in swift-corelibs-foundation
        let expression = NSExpression(format: "2 ** 3 ** 2")
                         ^
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:55:26: error: 'init(format:_:)' is unavailable: NSExpression is not available in swift-corelibs-foundation
        let expression = NSExpression(format: "2 ** 3 ** 2")
                         ^~~~~~~~~~~~
Foundation.NSExpression:72:24: note: 'init(format:_:)' has been explicitly marked unavailable here
    public convenience init(format expressionFormat: String, _ args: CVarArg...)
                       ^
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:56:33: error: 'expressionValue(with:context:)' is unavailable: NSExpression is not available in swift-corelibs-foundation
        let result = expression.expressionValue(with: nil, context: nil) as? NSNumber
                                ^~~~~~~~~~~~~~~
Foundation.NSExpression:68:15: note: 'expressionValue(with:context:)' has been explicitly marked unavailable here
    open func expressionValue(with object: Any?, context: NSMutableDictionary?) -> Any?
              ^
[2/43] Compiling MathParser TokenExtractor.swift
[3/43] Compiling MathParser TokenGrouper.swift
[4/43] Compiling MathParser TokenResolver.swift
[5/43] Compiling MathParser Tokenizer.swift
[6/43] Compiling MathParser VariableExtractor.swift
[7/43] Compiling MathParser Character.swift
/host/spi-builder-workspace/MathParser/Sources/MathParser/Double.swift:28:12: error: cannot find 'Darwin' in scope
        if Darwin.floor(self) == self && self > 1 {
           ^~~~~~
[8/43] Compiling MathParser Configuration.swift
/host/spi-builder-workspace/MathParser/Sources/MathParser/Double.swift:28:12: error: cannot find 'Darwin' in scope
        if Darwin.floor(self) == self && self > 1 {
           ^~~~~~
[9/43] Compiling MathParser DecimalNumberExtractor.swift
/host/spi-builder-workspace/MathParser/Sources/MathParser/Double.swift:28:12: error: cannot find 'Darwin' in scope
        if Darwin.floor(self) == self && self > 1 {
           ^~~~~~
[10/43] Compiling MathParser Deprecations.swift
/host/spi-builder-workspace/MathParser/Sources/MathParser/Double.swift:28:12: error: cannot find 'Darwin' in scope
        if Darwin.floor(self) == self && self > 1 {
           ^~~~~~
[11/43] Compiling MathParser Double.swift
/host/spi-builder-workspace/MathParser/Sources/MathParser/Double.swift:28:12: error: cannot find 'Darwin' in scope
        if Darwin.floor(self) == self && self > 1 {
           ^~~~~~
[12/43] Compiling MathParser DynamicResolution.swift
/host/spi-builder-workspace/MathParser/Sources/MathParser/Double.swift:28:12: error: cannot find 'Darwin' in scope
        if Darwin.floor(self) == self && self > 1 {
           ^~~~~~
[13/43] Compiling MathParser Either.swift
[14/43] Compiling MathParser Evaluator.swift
[15/43] Compiling MathParser ExponentExtractor.swift
[16/43] Compiling MathParser Expression+Matching.swift
[17/43] Compiling MathParser Expression.swift
[18/43] Compiling MathParser ExpressionRewriter.swift
[19/43] Compiling MathParser GroupedToken.swift
[20/43] Compiling MathParser HexNumberExtractor.swift
[21/43] Compiling MathParser IdentifierExtractor.swift
[22/43] Compiling MathParser LocalizedNumberExtractor.swift
[23/43] Compiling MathParser MathParserErrors.swift
[24/43] Compiling MathParser OperatorTokenSet.swift
[25/43] Compiling MathParser PeekingIterator.swift
[26/43] Compiling MathParser QuotedVariableExtractor.swift
[27/43] Compiling MathParser RawToken.swift
[28/43] Compiling MathParser ResolvedToken.swift
[29/43] Compiling MathParser Expressionizer.swift
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:111:23: error: cannot find 'Darwin' in scope
        guard arg1 == Darwin.floor(arg1) else { throw MathParserError(kind: .invalidArguments, range: state.expressionRange) }
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:115:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(2, k) * k.factorial()
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:120:31: error: cannot find 'Darwin' in scope
            let denominator = Darwin.pow(2, k) * k.factorial()
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:133:16: error: cannot find 'Darwin' in scope
        return Darwin.pow(arg1, arg2)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:141:16: error: cannot find 'Darwin' in scope
        return Darwin.sqrt(value)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:150:24: error: cannot find 'Darwin' in scope
            let root = Darwin.pow(-arg1, 1.0/3.0)
                       ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:153:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(arg1, 1.0/3.0)
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:167:24: error: cannot find 'Darwin' in scope
            let root = Darwin.pow(-arg1, 1/arg2)
                       ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:170:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(arg1, 1/arg2)
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:205:16: error: cannot find 'Darwin' in scope
        return Darwin.log10(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:212:16: error: cannot find 'Darwin' in scope
        return Darwin.log(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:219:16: error: cannot find 'Darwin' in scope
        return Darwin.log2(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:226:16: error: cannot find 'Darwin' in scope
        return Darwin.exp(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:401:16: error: cannot find 'Darwin' in scope
        return Darwin.sqrt(stddev / Double(state.arguments.count))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:408:16: error: cannot find 'Darwin' in scope
        return Darwin.ceil(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:415:16: error: cannot find 'Darwin' in scope
        return Darwin.floor(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:424:16: error: cannot find 'Darwin' in scope
        return Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:431:16: error: cannot find 'Darwin' in scope
        return Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:438:16: error: cannot find 'Darwin' in scope
        return Darwin.tan(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:445:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.asin(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:452:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.acos(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:459:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:467:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan2(arg1, arg2), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:474:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:483:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:492:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.tan(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:502:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.asin(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:510:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.acos(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:518:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:527:16: error: cannot find 'Darwin' in scope
        return Darwin.sinh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:534:16: error: cannot find 'Darwin' in scope
        return Darwin.cosh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:541:16: error: cannot find 'Darwin' in scope
        return Darwin.tanh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:548:16: error: cannot find 'Darwin' in scope
        return Darwin.asinh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:555:16: error: cannot find 'Darwin' in scope
        return Darwin.acosh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:562:16: error: cannot find 'Darwin' in scope
        return Darwin.atanh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:569:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.sinh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:578:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.cosh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:587:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.tanh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:597:16: error: cannot find 'Darwin' in scope
        return Darwin.asinh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:605:16: error: cannot find 'Darwin' in scope
        return Darwin.acosh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:613:16: error: cannot find 'Darwin' in scope
        return Darwin.atanh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:622:22: error: cannot find 'Darwin' in scope
        return 1.0 - Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:629:22: error: cannot find 'Darwin' in scope
        return 1.0 + Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:636:22: error: cannot find 'Darwin' in scope
        return 1.0 - Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:643:22: error: cannot find 'Darwin' in scope
        return 1.0 + Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:666:23: error: cannot find 'Darwin' in scope
        let cosArg1 = Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:675:23: error: cannot find 'Darwin' in scope
        let sinArg1 = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:684:23: error: cannot find 'Darwin' in scope
        let sinArg1 = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator) / 2.0)
                      ^~~~~~
[30/43] Compiling MathParser FractionNumberExtractor.swift
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:111:23: error: cannot find 'Darwin' in scope
        guard arg1 == Darwin.floor(arg1) else { throw MathParserError(kind: .invalidArguments, range: state.expressionRange) }
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:115:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(2, k) * k.factorial()
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:120:31: error: cannot find 'Darwin' in scope
            let denominator = Darwin.pow(2, k) * k.factorial()
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:133:16: error: cannot find 'Darwin' in scope
        return Darwin.pow(arg1, arg2)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:141:16: error: cannot find 'Darwin' in scope
        return Darwin.sqrt(value)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:150:24: error: cannot find 'Darwin' in scope
            let root = Darwin.pow(-arg1, 1.0/3.0)
                       ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:153:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(arg1, 1.0/3.0)
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:167:24: error: cannot find 'Darwin' in scope
            let root = Darwin.pow(-arg1, 1/arg2)
                       ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:170:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(arg1, 1/arg2)
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:205:16: error: cannot find 'Darwin' in scope
        return Darwin.log10(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:212:16: error: cannot find 'Darwin' in scope
        return Darwin.log(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:219:16: error: cannot find 'Darwin' in scope
        return Darwin.log2(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:226:16: error: cannot find 'Darwin' in scope
        return Darwin.exp(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:401:16: error: cannot find 'Darwin' in scope
        return Darwin.sqrt(stddev / Double(state.arguments.count))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:408:16: error: cannot find 'Darwin' in scope
        return Darwin.ceil(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:415:16: error: cannot find 'Darwin' in scope
        return Darwin.floor(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:424:16: error: cannot find 'Darwin' in scope
        return Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:431:16: error: cannot find 'Darwin' in scope
        return Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:438:16: error: cannot find 'Darwin' in scope
        return Darwin.tan(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:445:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.asin(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:452:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.acos(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:459:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:467:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan2(arg1, arg2), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:474:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:483:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:492:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.tan(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:502:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.asin(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:510:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.acos(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:518:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:527:16: error: cannot find 'Darwin' in scope
        return Darwin.sinh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:534:16: error: cannot find 'Darwin' in scope
        return Darwin.cosh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:541:16: error: cannot find 'Darwin' in scope
        return Darwin.tanh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:548:16: error: cannot find 'Darwin' in scope
        return Darwin.asinh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:555:16: error: cannot find 'Darwin' in scope
        return Darwin.acosh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:562:16: error: cannot find 'Darwin' in scope
        return Darwin.atanh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:569:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.sinh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:578:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.cosh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:587:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.tanh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:597:16: error: cannot find 'Darwin' in scope
        return Darwin.asinh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:605:16: error: cannot find 'Darwin' in scope
        return Darwin.acosh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:613:16: error: cannot find 'Darwin' in scope
        return Darwin.atanh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:622:22: error: cannot find 'Darwin' in scope
        return 1.0 - Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:629:22: error: cannot find 'Darwin' in scope
        return 1.0 + Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:636:22: error: cannot find 'Darwin' in scope
        return 1.0 - Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:643:22: error: cannot find 'Darwin' in scope
        return 1.0 + Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:666:23: error: cannot find 'Darwin' in scope
        let cosArg1 = Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:675:23: error: cannot find 'Darwin' in scope
        let sinArg1 = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:684:23: error: cannot find 'Darwin' in scope
        let sinArg1 = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator) / 2.0)
                      ^~~~~~
[31/43] Compiling MathParser Function.swift
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:111:23: error: cannot find 'Darwin' in scope
        guard arg1 == Darwin.floor(arg1) else { throw MathParserError(kind: .invalidArguments, range: state.expressionRange) }
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:115:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(2, k) * k.factorial()
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:120:31: error: cannot find 'Darwin' in scope
            let denominator = Darwin.pow(2, k) * k.factorial()
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:133:16: error: cannot find 'Darwin' in scope
        return Darwin.pow(arg1, arg2)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:141:16: error: cannot find 'Darwin' in scope
        return Darwin.sqrt(value)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:150:24: error: cannot find 'Darwin' in scope
            let root = Darwin.pow(-arg1, 1.0/3.0)
                       ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:153:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(arg1, 1.0/3.0)
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:167:24: error: cannot find 'Darwin' in scope
            let root = Darwin.pow(-arg1, 1/arg2)
                       ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:170:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(arg1, 1/arg2)
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:205:16: error: cannot find 'Darwin' in scope
        return Darwin.log10(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:212:16: error: cannot find 'Darwin' in scope
        return Darwin.log(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:219:16: error: cannot find 'Darwin' in scope
        return Darwin.log2(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:226:16: error: cannot find 'Darwin' in scope
        return Darwin.exp(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:401:16: error: cannot find 'Darwin' in scope
        return Darwin.sqrt(stddev / Double(state.arguments.count))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:408:16: error: cannot find 'Darwin' in scope
        return Darwin.ceil(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:415:16: error: cannot find 'Darwin' in scope
        return Darwin.floor(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:424:16: error: cannot find 'Darwin' in scope
        return Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:431:16: error: cannot find 'Darwin' in scope
        return Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:438:16: error: cannot find 'Darwin' in scope
        return Darwin.tan(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:445:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.asin(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:452:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.acos(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:459:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:467:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan2(arg1, arg2), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:474:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:483:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:492:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.tan(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:502:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.asin(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:510:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.acos(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:518:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:527:16: error: cannot find 'Darwin' in scope
        return Darwin.sinh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:534:16: error: cannot find 'Darwin' in scope
        return Darwin.cosh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:541:16: error: cannot find 'Darwin' in scope
        return Darwin.tanh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:548:16: error: cannot find 'Darwin' in scope
        return Darwin.asinh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:555:16: error: cannot find 'Darwin' in scope
        return Darwin.acosh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:562:16: error: cannot find 'Darwin' in scope
        return Darwin.atanh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:569:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.sinh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:578:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.cosh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:587:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.tanh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:597:16: error: cannot find 'Darwin' in scope
        return Darwin.asinh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:605:16: error: cannot find 'Darwin' in scope
        return Darwin.acosh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:613:16: error: cannot find 'Darwin' in scope
        return Darwin.atanh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:622:22: error: cannot find 'Darwin' in scope
        return 1.0 - Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:629:22: error: cannot find 'Darwin' in scope
        return 1.0 + Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:636:22: error: cannot find 'Darwin' in scope
        return 1.0 - Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:643:22: error: cannot find 'Darwin' in scope
        return 1.0 + Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:666:23: error: cannot find 'Darwin' in scope
        let cosArg1 = Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:675:23: error: cannot find 'Darwin' in scope
        let sinArg1 = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:684:23: error: cannot find 'Darwin' in scope
        let sinArg1 = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator) / 2.0)
                      ^~~~~~
[32/43] Compiling MathParser FunctionSet.swift
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:111:23: error: cannot find 'Darwin' in scope
        guard arg1 == Darwin.floor(arg1) else { throw MathParserError(kind: .invalidArguments, range: state.expressionRange) }
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:115:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(2, k) * k.factorial()
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:120:31: error: cannot find 'Darwin' in scope
            let denominator = Darwin.pow(2, k) * k.factorial()
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:133:16: error: cannot find 'Darwin' in scope
        return Darwin.pow(arg1, arg2)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:141:16: error: cannot find 'Darwin' in scope
        return Darwin.sqrt(value)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:150:24: error: cannot find 'Darwin' in scope
            let root = Darwin.pow(-arg1, 1.0/3.0)
                       ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:153:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(arg1, 1.0/3.0)
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:167:24: error: cannot find 'Darwin' in scope
            let root = Darwin.pow(-arg1, 1/arg2)
                       ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:170:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(arg1, 1/arg2)
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:205:16: error: cannot find 'Darwin' in scope
        return Darwin.log10(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:212:16: error: cannot find 'Darwin' in scope
        return Darwin.log(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:219:16: error: cannot find 'Darwin' in scope
        return Darwin.log2(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:226:16: error: cannot find 'Darwin' in scope
        return Darwin.exp(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:401:16: error: cannot find 'Darwin' in scope
        return Darwin.sqrt(stddev / Double(state.arguments.count))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:408:16: error: cannot find 'Darwin' in scope
        return Darwin.ceil(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:415:16: error: cannot find 'Darwin' in scope
        return Darwin.floor(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:424:16: error: cannot find 'Darwin' in scope
        return Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:431:16: error: cannot find 'Darwin' in scope
        return Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:438:16: error: cannot find 'Darwin' in scope
        return Darwin.tan(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:445:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.asin(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:452:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.acos(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:459:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:467:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan2(arg1, arg2), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:474:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:483:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:492:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.tan(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:502:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.asin(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:510:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.acos(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:518:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:527:16: error: cannot find 'Darwin' in scope
        return Darwin.sinh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:534:16: error: cannot find 'Darwin' in scope
        return Darwin.cosh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:541:16: error: cannot find 'Darwin' in scope
        return Darwin.tanh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:548:16: error: cannot find 'Darwin' in scope
        return Darwin.asinh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:555:16: error: cannot find 'Darwin' in scope
        return Darwin.acosh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:562:16: error: cannot find 'Darwin' in scope
        return Darwin.atanh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:569:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.sinh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:578:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.cosh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:587:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.tanh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:597:16: error: cannot find 'Darwin' in scope
        return Darwin.asinh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:605:16: error: cannot find 'Darwin' in scope
        return Darwin.acosh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:613:16: error: cannot find 'Darwin' in scope
        return Darwin.atanh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:622:22: error: cannot find 'Darwin' in scope
        return 1.0 - Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:629:22: error: cannot find 'Darwin' in scope
        return 1.0 + Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:636:22: error: cannot find 'Darwin' in scope
        return 1.0 - Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:643:22: error: cannot find 'Darwin' in scope
        return 1.0 + Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:666:23: error: cannot find 'Darwin' in scope
        let cosArg1 = Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:675:23: error: cannot find 'Darwin' in scope
        let sinArg1 = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:684:23: error: cannot find 'Darwin' in scope
        let sinArg1 = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator) / 2.0)
                      ^~~~~~
[33/43] Compiling MathParser Functions+Defaults.swift
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:111:23: error: cannot find 'Darwin' in scope
        guard arg1 == Darwin.floor(arg1) else { throw MathParserError(kind: .invalidArguments, range: state.expressionRange) }
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:115:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(2, k) * k.factorial()
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:120:31: error: cannot find 'Darwin' in scope
            let denominator = Darwin.pow(2, k) * k.factorial()
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:133:16: error: cannot find 'Darwin' in scope
        return Darwin.pow(arg1, arg2)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:141:16: error: cannot find 'Darwin' in scope
        return Darwin.sqrt(value)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:150:24: error: cannot find 'Darwin' in scope
            let root = Darwin.pow(-arg1, 1.0/3.0)
                       ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:153:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(arg1, 1.0/3.0)
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:167:24: error: cannot find 'Darwin' in scope
            let root = Darwin.pow(-arg1, 1/arg2)
                       ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:170:20: error: cannot find 'Darwin' in scope
            return Darwin.pow(arg1, 1/arg2)
                   ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:205:16: error: cannot find 'Darwin' in scope
        return Darwin.log10(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:212:16: error: cannot find 'Darwin' in scope
        return Darwin.log(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:219:16: error: cannot find 'Darwin' in scope
        return Darwin.log2(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:226:16: error: cannot find 'Darwin' in scope
        return Darwin.exp(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:401:16: error: cannot find 'Darwin' in scope
        return Darwin.sqrt(stddev / Double(state.arguments.count))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:408:16: error: cannot find 'Darwin' in scope
        return Darwin.ceil(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:415:16: error: cannot find 'Darwin' in scope
        return Darwin.floor(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:424:16: error: cannot find 'Darwin' in scope
        return Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:431:16: error: cannot find 'Darwin' in scope
        return Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:438:16: error: cannot find 'Darwin' in scope
        return Darwin.tan(Function._dtor(arg1, evaluator: state.evaluator))
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:445:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.asin(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:452:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.acos(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:459:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan(arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:467:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan2(arg1, arg2), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:474:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:483:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:492:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.tan(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:502:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.asin(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:510:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.acos(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:518:31: error: cannot find 'Darwin' in scope
        return Function._rtod(Darwin.atan(1.0 / arg1), evaluator: state.evaluator)
                              ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:527:16: error: cannot find 'Darwin' in scope
        return Darwin.sinh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:534:16: error: cannot find 'Darwin' in scope
        return Darwin.cosh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:541:16: error: cannot find 'Darwin' in scope
        return Darwin.tanh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:548:16: error: cannot find 'Darwin' in scope
        return Darwin.asinh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:555:16: error: cannot find 'Darwin' in scope
        return Darwin.acosh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:562:16: error: cannot find 'Darwin' in scope
        return Darwin.atanh(arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:569:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.sinh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:578:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.cosh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:587:22: error: cannot find 'Darwin' in scope
        let sinArg = Darwin.tanh(arg1)
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:597:16: error: cannot find 'Darwin' in scope
        return Darwin.asinh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:605:16: error: cannot find 'Darwin' in scope
        return Darwin.acosh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:613:16: error: cannot find 'Darwin' in scope
        return Darwin.atanh(1.0 / arg1)
               ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:622:22: error: cannot find 'Darwin' in scope
        return 1.0 - Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:629:22: error: cannot find 'Darwin' in scope
        return 1.0 + Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:636:22: error: cannot find 'Darwin' in scope
        return 1.0 - Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:643:22: error: cannot find 'Darwin' in scope
        return 1.0 + Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                     ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:666:23: error: cannot find 'Darwin' in scope
        let cosArg1 = Darwin.cos(Function._dtor(arg1, evaluator: state.evaluator))
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:675:23: error: cannot find 'Darwin' in scope
        let sinArg1 = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator))
                      ^~~~~~
/host/spi-builder-workspace/MathParser/Sources/MathParser/Functions+Defaults.swift:684:23: error: cannot find 'Darwin' in scope
        let sinArg1 = Darwin.sin(Function._dtor(arg1, evaluator: state.evaluator) / 2.0)
                      ^~~~~~
[34/43] Compiling MathParser OctalNumberExtractor.swift
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:55:26: warning: 'NSExpression' is deprecated: NSExpression is not available in swift-corelibs-foundation
        let expression = NSExpression(format: "2 ** 3 ** 2")
                         ^
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:55:26: error: 'init(format:_:)' is unavailable: NSExpression is not available in swift-corelibs-foundation
        let expression = NSExpression(format: "2 ** 3 ** 2")
                         ^~~~~~~~~~~~
Foundation.NSExpression:72:24: note: 'init(format:_:)' has been explicitly marked unavailable here
    public convenience init(format expressionFormat: String, _ args: CVarArg...)
                       ^
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:56:33: error: 'expressionValue(with:context:)' is unavailable: NSExpression is not available in swift-corelibs-foundation
        let result = expression.expressionValue(with: nil, context: nil) as? NSNumber
                                ^~~~~~~~~~~~~~~
Foundation.NSExpression:68:15: note: 'expressionValue(with:context:)' has been explicitly marked unavailable here
    open func expressionValue(with object: Any?, context: NSMutableDictionary?) -> Any?
              ^
[35/43] Compiling MathParser Operator+Defaults.swift
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:55:26: warning: 'NSExpression' is deprecated: NSExpression is not available in swift-corelibs-foundation
        let expression = NSExpression(format: "2 ** 3 ** 2")
                         ^
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:55:26: error: 'init(format:_:)' is unavailable: NSExpression is not available in swift-corelibs-foundation
        let expression = NSExpression(format: "2 ** 3 ** 2")
                         ^~~~~~~~~~~~
Foundation.NSExpression:72:24: note: 'init(format:_:)' has been explicitly marked unavailable here
    public convenience init(format expressionFormat: String, _ args: CVarArg...)
                       ^
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:56:33: error: 'expressionValue(with:context:)' is unavailable: NSExpression is not available in swift-corelibs-foundation
        let result = expression.expressionValue(with: nil, context: nil) as? NSNumber
                                ^~~~~~~~~~~~~~~
Foundation.NSExpression:68:15: note: 'expressionValue(with:context:)' has been explicitly marked unavailable here
    open func expressionValue(with object: Any?, context: NSMutableDictionary?) -> Any?
              ^
[36/43] Compiling MathParser Operator.swift
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:55:26: warning: 'NSExpression' is deprecated: NSExpression is not available in swift-corelibs-foundation
        let expression = NSExpression(format: "2 ** 3 ** 2")
                         ^
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:55:26: error: 'init(format:_:)' is unavailable: NSExpression is not available in swift-corelibs-foundation
        let expression = NSExpression(format: "2 ** 3 ** 2")
                         ^~~~~~~~~~~~
Foundation.NSExpression:72:24: note: 'init(format:_:)' has been explicitly marked unavailable here
    public convenience init(format expressionFormat: String, _ args: CVarArg...)
                       ^
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:56:33: error: 'expressionValue(with:context:)' is unavailable: NSExpression is not available in swift-corelibs-foundation
        let result = expression.expressionValue(with: nil, context: nil) as? NSNumber
                                ^~~~~~~~~~~~~~~
Foundation.NSExpression:68:15: note: 'expressionValue(with:context:)' has been explicitly marked unavailable here
    open func expressionValue(with object: Any?, context: NSMutableDictionary?) -> Any?
              ^
[37/43] Compiling MathParser OperatorExtractor.swift
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:55:26: warning: 'NSExpression' is deprecated: NSExpression is not available in swift-corelibs-foundation
        let expression = NSExpression(format: "2 ** 3 ** 2")
                         ^
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:55:26: error: 'init(format:_:)' is unavailable: NSExpression is not available in swift-corelibs-foundation
        let expression = NSExpression(format: "2 ** 3 ** 2")
                         ^~~~~~~~~~~~
Foundation.NSExpression:72:24: note: 'init(format:_:)' has been explicitly marked unavailable here
    public convenience init(format expressionFormat: String, _ args: CVarArg...)
                       ^
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:56:33: error: 'expressionValue(with:context:)' is unavailable: NSExpression is not available in swift-corelibs-foundation
        let result = expression.expressionValue(with: nil, context: nil) as? NSNumber
                                ^~~~~~~~~~~~~~~
Foundation.NSExpression:68:15: note: 'expressionValue(with:context:)' has been explicitly marked unavailable here
    open func expressionValue(with object: Any?, context: NSMutableDictionary?) -> Any?
              ^
[38/43] Compiling MathParser OperatorSet.swift
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:55:26: warning: 'NSExpression' is deprecated: NSExpression is not available in swift-corelibs-foundation
        let expression = NSExpression(format: "2 ** 3 ** 2")
                         ^
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:55:26: error: 'init(format:_:)' is unavailable: NSExpression is not available in swift-corelibs-foundation
        let expression = NSExpression(format: "2 ** 3 ** 2")
                         ^~~~~~~~~~~~
Foundation.NSExpression:72:24: note: 'init(format:_:)' has been explicitly marked unavailable here
    public convenience init(format expressionFormat: String, _ args: CVarArg...)
                       ^
/host/spi-builder-workspace/MathParser/Sources/MathParser/Operator+Defaults.swift:56:33: error: 'expressionValue(with:context:)' is unavailable: NSExpression is not available in swift-corelibs-foundation
        let result = expression.expressionValue(with: nil, context: nil) as? NSNumber
                                ^~~~~~~~~~~~~~~
Foundation.NSExpression:68:15: note: 'expressionValue(with:context:)' has been explicitly marked unavailable here
    open func expressionValue(with object: Any?, context: NSMutableDictionary?) -> Any?
              ^
[39/43] Compiling MathParser RewriteRule+Defaults.swift
[40/43] Compiling MathParser RewriteRule.swift
[41/43] Compiling MathParser String.swift
[42/43] Compiling MathParser SubstitutionExtensions.swift
[43/43] Compiling MathParser TokenCharacterBuffer.swift
error: fatalError
BUILD FAILURE 5.9 linux