Build Information
Failed to build MathParser, reference master (2e067f
), with Swift 5.10 for Linux on 29 Jun 2024 11:03:48 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-5.10-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.10
Building package at path: $workDir
https://github.com/davedelong/DDMathParser.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-5.10-latest: Pulling from finestructure/spi-images
Digest: sha256:25efef401ffd78342b231554234a436b1eb31bdd29046c1104fb984cc1b7d308
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-5.10-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/40] 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: any 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?
^
[4/45] 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 {
^~~~~~
[5/45] 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 {
^~~~~~
[6/45] 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 {
^~~~~~
[7/45] 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 {
^~~~~~
[8/45] 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 {
^~~~~~
[9/45] 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 {
^~~~~~
[10/45] Compiling MathParser RewriteRule+Defaults.swift
[11/45] Compiling MathParser RewriteRule.swift
[12/45] Compiling MathParser String.swift
[13/45] Compiling MathParser SubstitutionExtensions.swift
[14/45] Compiling MathParser TokenCharacterBuffer.swift
[15/45] Compiling MathParser TokenExtractor.swift
[16/45] Compiling MathParser TokenGrouper.swift
[17/45] Compiling MathParser TokenResolver.swift
[18/45] Compiling MathParser Tokenizer.swift
[19/45] Compiling MathParser VariableExtractor.swift
[20/45] Compiling MathParser GroupedToken.swift
[21/45] Compiling MathParser HexNumberExtractor.swift
[22/45] Compiling MathParser IdentifierExtractor.swift
[23/45] Compiling MathParser LocalizedNumberExtractor.swift
[24/45] Compiling MathParser MathParserErrors.swift
[25/45] Compiling MathParser OperatorTokenSet.swift
[26/45] Compiling MathParser PeekingIterator.swift
[27/45] Compiling MathParser QuotedVariableExtractor.swift
[28/45] Compiling MathParser RawToken.swift
[29/45] Compiling MathParser ResolvedToken.swift
[30/45] Compiling MathParser Either.swift
[31/45] Compiling MathParser Evaluator.swift
[32/45] Compiling MathParser ExponentExtractor.swift
[33/45] Compiling MathParser Expression+Matching.swift
[34/45] Compiling MathParser Expression.swift
[35/45] Compiling MathParser ExpressionRewriter.swift
[36/45] 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: any 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/45] 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: any 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/45] 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: any 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/45] 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: any 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?
^
[40/45] 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: any 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?
^
[41/45] 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)
^~~~~~
[42/45] 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)
^~~~~~
[43/45] 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)
^~~~~~
[44/45] 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)
^~~~~~
[45/45] 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)
^~~~~~
error: fatalError
BUILD FAILURE 5.10 linux