Build Information
Failed to build Euler, reference main (f54c76
), with Swift 6.2 (beta) for Android on 20 Jun 2025 14:21:42 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/arguiot/Euler.git
Reference: main
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/arguiot/Euler
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at f54c76e Releasing 0.3.12
Cloned https://github.com/arguiot/Euler.git
Revision (git rev-parse @):
f54c76e1ccd64e73623c2f44deb6ff78a03fcb24
SUCCESS checkout https://github.com/arguiot/Euler.git at main
========================================
Build
========================================
Selected platform: android
Swift version: 6.2
Building package at path: $PWD
https://github.com/arguiot/Euler.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-8C5A4AE7A8CE2BA.txt
[3/75] Compiling Euler Average.swift
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:45:17: error: cannot find 'Matrix' in scope
43 | /// - Returns: Polynomial
44 | static func polynomialRegression(points: [Point], deg: Int = 2) throws -> Polynomial {
45 | var z = Matrix(rows: points.count, columns: deg + 1, repeatedValue: 0)
| `- error: cannot find 'Matrix' in scope
46 |
47 | for i in 0..<points.count {
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:55:17: error: cannot find 'Matrix' in scope
53 | }
54 |
55 | let y = Matrix(rows: points.count, columns: 1, grid: points.map { $0.y.asDouble() ?? 0 })
| `- error: cannot find 'Matrix' in scope
56 |
57 | let z_transposed = z.transpose()
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:59:30: error: cannot find operator '<*>' in scope
57 | let z_transposed = z.transpose()
58 |
59 | let l = z_transposed <*> z
| `- error: cannot find operator '<*>' in scope
60 | let r = z_transposed <*> y
61 |
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:60:30: error: cannot find operator '<*>' in scope
58 |
59 | let l = z_transposed <*> z
60 | let r = z_transposed <*> y
| `- error: cannot find operator '<*>' in scope
61 |
62 |
[4/75] Compiling Euler Correlation.swift
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:45:17: error: cannot find 'Matrix' in scope
43 | /// - Returns: Polynomial
44 | static func polynomialRegression(points: [Point], deg: Int = 2) throws -> Polynomial {
45 | var z = Matrix(rows: points.count, columns: deg + 1, repeatedValue: 0)
| `- error: cannot find 'Matrix' in scope
46 |
47 | for i in 0..<points.count {
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:55:17: error: cannot find 'Matrix' in scope
53 | }
54 |
55 | let y = Matrix(rows: points.count, columns: 1, grid: points.map { $0.y.asDouble() ?? 0 })
| `- error: cannot find 'Matrix' in scope
56 |
57 | let z_transposed = z.transpose()
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:59:30: error: cannot find operator '<*>' in scope
57 | let z_transposed = z.transpose()
58 |
59 | let l = z_transposed <*> z
| `- error: cannot find operator '<*>' in scope
60 | let r = z_transposed <*> y
61 |
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:60:30: error: cannot find operator '<*>' in scope
58 |
59 | let l = z_transposed <*> z
60 | let r = z_transposed <*> y
| `- error: cannot find operator '<*>' in scope
61 |
62 |
[5/75] Compiling Euler Fisher.swift
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:45:17: error: cannot find 'Matrix' in scope
43 | /// - Returns: Polynomial
44 | static func polynomialRegression(points: [Point], deg: Int = 2) throws -> Polynomial {
45 | var z = Matrix(rows: points.count, columns: deg + 1, repeatedValue: 0)
| `- error: cannot find 'Matrix' in scope
46 |
47 | for i in 0..<points.count {
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:55:17: error: cannot find 'Matrix' in scope
53 | }
54 |
55 | let y = Matrix(rows: points.count, columns: 1, grid: points.map { $0.y.asDouble() ?? 0 })
| `- error: cannot find 'Matrix' in scope
56 |
57 | let z_transposed = z.transpose()
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:59:30: error: cannot find operator '<*>' in scope
57 | let z_transposed = z.transpose()
58 |
59 | let l = z_transposed <*> z
| `- error: cannot find operator '<*>' in scope
60 | let r = z_transposed <*> y
61 |
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:60:30: error: cannot find operator '<*>' in scope
58 |
59 | let l = z_transposed <*> z
60 | let r = z_transposed <*> y
| `- error: cannot find operator '<*>' in scope
61 |
62 |
[6/75] Compiling Euler Gauss.swift
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:45:17: error: cannot find 'Matrix' in scope
43 | /// - Returns: Polynomial
44 | static func polynomialRegression(points: [Point], deg: Int = 2) throws -> Polynomial {
45 | var z = Matrix(rows: points.count, columns: deg + 1, repeatedValue: 0)
| `- error: cannot find 'Matrix' in scope
46 |
47 | for i in 0..<points.count {
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:55:17: error: cannot find 'Matrix' in scope
53 | }
54 |
55 | let y = Matrix(rows: points.count, columns: 1, grid: points.map { $0.y.asDouble() ?? 0 })
| `- error: cannot find 'Matrix' in scope
56 |
57 | let z_transposed = z.transpose()
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:59:30: error: cannot find operator '<*>' in scope
57 | let z_transposed = z.transpose()
58 |
59 | let l = z_transposed <*> z
| `- error: cannot find operator '<*>' in scope
60 | let r = z_transposed <*> y
61 |
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:60:30: error: cannot find operator '<*>' in scope
58 |
59 | let l = z_transposed <*> z
60 | let r = z_transposed <*> y
| `- error: cannot find operator '<*>' in scope
61 |
62 |
[7/75] Compiling Euler Quantile.swift
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:45:17: error: cannot find 'Matrix' in scope
43 | /// - Returns: Polynomial
44 | static func polynomialRegression(points: [Point], deg: Int = 2) throws -> Polynomial {
45 | var z = Matrix(rows: points.count, columns: deg + 1, repeatedValue: 0)
| `- error: cannot find 'Matrix' in scope
46 |
47 | for i in 0..<points.count {
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:55:17: error: cannot find 'Matrix' in scope
53 | }
54 |
55 | let y = Matrix(rows: points.count, columns: 1, grid: points.map { $0.y.asDouble() ?? 0 })
| `- error: cannot find 'Matrix' in scope
56 |
57 | let z_transposed = z.transpose()
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:59:30: error: cannot find operator '<*>' in scope
57 | let z_transposed = z.transpose()
58 |
59 | let l = z_transposed <*> z
| `- error: cannot find operator '<*>' in scope
60 | let r = z_transposed <*> y
61 |
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:60:30: error: cannot find operator '<*>' in scope
58 |
59 | let l = z_transposed <*> z
60 | let r = z_transposed <*> y
| `- error: cannot find operator '<*>' in scope
61 |
62 |
[8/75] Compiling Euler Regression.swift
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:45:17: error: cannot find 'Matrix' in scope
43 | /// - Returns: Polynomial
44 | static func polynomialRegression(points: [Point], deg: Int = 2) throws -> Polynomial {
45 | var z = Matrix(rows: points.count, columns: deg + 1, repeatedValue: 0)
| `- error: cannot find 'Matrix' in scope
46 |
47 | for i in 0..<points.count {
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:55:17: error: cannot find 'Matrix' in scope
53 | }
54 |
55 | let y = Matrix(rows: points.count, columns: 1, grid: points.map { $0.y.asDouble() ?? 0 })
| `- error: cannot find 'Matrix' in scope
56 |
57 | let z_transposed = z.transpose()
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:59:30: error: cannot find operator '<*>' in scope
57 | let z_transposed = z.transpose()
58 |
59 | let l = z_transposed <*> z
| `- error: cannot find operator '<*>' in scope
60 | let r = z_transposed <*> y
61 |
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:60:30: error: cannot find operator '<*>' in scope
58 |
59 | let l = z_transposed <*> z
60 | let r = z_transposed <*> y
| `- error: cannot find operator '<*>' in scope
61 |
62 |
[9/75] Compiling Euler Statistics.swift
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:45:17: error: cannot find 'Matrix' in scope
43 | /// - Returns: Polynomial
44 | static func polynomialRegression(points: [Point], deg: Int = 2) throws -> Polynomial {
45 | var z = Matrix(rows: points.count, columns: deg + 1, repeatedValue: 0)
| `- error: cannot find 'Matrix' in scope
46 |
47 | for i in 0..<points.count {
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:55:17: error: cannot find 'Matrix' in scope
53 | }
54 |
55 | let y = Matrix(rows: points.count, columns: 1, grid: points.map { $0.y.asDouble() ?? 0 })
| `- error: cannot find 'Matrix' in scope
56 |
57 | let z_transposed = z.transpose()
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:59:30: error: cannot find operator '<*>' in scope
57 | let z_transposed = z.transpose()
58 |
59 | let l = z_transposed <*> z
| `- error: cannot find operator '<*>' in scope
60 | let r = z_transposed <*> y
61 |
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:60:30: error: cannot find operator '<*>' in scope
58 |
59 | let l = z_transposed <*> z
60 | let r = z_transposed <*> y
| `- error: cannot find operator '<*>' in scope
61 |
62 |
[10/75] Compiling Euler Variance.swift
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:45:17: error: cannot find 'Matrix' in scope
43 | /// - Returns: Polynomial
44 | static func polynomialRegression(points: [Point], deg: Int = 2) throws -> Polynomial {
45 | var z = Matrix(rows: points.count, columns: deg + 1, repeatedValue: 0)
| `- error: cannot find 'Matrix' in scope
46 |
47 | for i in 0..<points.count {
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:55:17: error: cannot find 'Matrix' in scope
53 | }
54 |
55 | let y = Matrix(rows: points.count, columns: 1, grid: points.map { $0.y.asDouble() ?? 0 })
| `- error: cannot find 'Matrix' in scope
56 |
57 | let z_transposed = z.transpose()
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:59:30: error: cannot find operator '<*>' in scope
57 | let z_transposed = z.transpose()
58 |
59 | let l = z_transposed <*> z
| `- error: cannot find operator '<*>' in scope
60 | let r = z_transposed <*> y
61 |
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:60:30: error: cannot find operator '<*>' in scope
58 |
59 | let l = z_transposed <*> z
60 | let r = z_transposed <*> y
| `- error: cannot find operator '<*>' in scope
61 |
62 |
[11/75] Compiling Euler CellValue.swift
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:45:17: error: cannot find 'Matrix' in scope
43 | /// - Returns: Polynomial
44 | static func polynomialRegression(points: [Point], deg: Int = 2) throws -> Polynomial {
45 | var z = Matrix(rows: points.count, columns: deg + 1, repeatedValue: 0)
| `- error: cannot find 'Matrix' in scope
46 |
47 | for i in 0..<points.count {
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:55:17: error: cannot find 'Matrix' in scope
53 | }
54 |
55 | let y = Matrix(rows: points.count, columns: 1, grid: points.map { $0.y.asDouble() ?? 0 })
| `- error: cannot find 'Matrix' in scope
56 |
57 | let z_transposed = z.transpose()
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:59:30: error: cannot find operator '<*>' in scope
57 | let z_transposed = z.transpose()
58 |
59 | let l = z_transposed <*> z
| `- error: cannot find operator '<*>' in scope
60 | let r = z_transposed <*> y
61 |
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:60:30: error: cannot find operator '<*>' in scope
58 |
59 | let l = z_transposed <*> z
60 | let r = z_transposed <*> y
| `- error: cannot find operator '<*>' in scope
61 |
62 |
[12/75] Compiling Euler CommonFormulas.swift
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:45:17: error: cannot find 'Matrix' in scope
43 | /// - Returns: Polynomial
44 | static func polynomialRegression(points: [Point], deg: Int = 2) throws -> Polynomial {
45 | var z = Matrix(rows: points.count, columns: deg + 1, repeatedValue: 0)
| `- error: cannot find 'Matrix' in scope
46 |
47 | for i in 0..<points.count {
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:55:17: error: cannot find 'Matrix' in scope
53 | }
54 |
55 | let y = Matrix(rows: points.count, columns: 1, grid: points.map { $0.y.asDouble() ?? 0 })
| `- error: cannot find 'Matrix' in scope
56 |
57 | let z_transposed = z.transpose()
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:59:30: error: cannot find operator '<*>' in scope
57 | let z_transposed = z.transpose()
58 |
59 | let l = z_transposed <*> z
| `- error: cannot find operator '<*>' in scope
60 | let r = z_transposed <*> y
61 |
/host/spi-builder-workspace/Sources/Euler/Statistics/Regression.swift:60:30: error: cannot find operator '<*>' in scope
58 |
59 | let l = z_transposed <*> z
60 | let r = z_transposed <*> y
| `- error: cannot find operator '<*>' in scope
61 |
62 |
[13/85] Compiling Euler DateTime.swift
[14/85] Compiling Euler Engineering.swift
[15/85] Compiling Euler Financial.swift
[16/85] Compiling Euler Logical.swift
[17/85] Compiling Euler Statistical.swift
[18/85] Compiling Euler Execute.swift
[19/85] Compiling Euler CommonLinker.swift
[20/85] Compiling Euler DateLinker.swift
[21/85] Compiling Euler EngineeringLinker.swift
[22/85] Compiling Euler FinancialLinker.swift
[23/85] Compiling Euler Logarithms.swift
[24/85] Compiling Euler combinations.swift
[25/85] Compiling Euler fibonacci.swift
[26/85] Compiling Euler gamma.swift
[27/85] Compiling Euler gcd.swift
[28/85] Compiling Euler isPrime.swift
[29/85] Compiling Euler leastFactor.swift
[30/85] Compiling Euler modulo.swift
[31/85] Compiling Euler random.swift
[32/85] Compiling Euler sum.swift
[33/85] Compiling Euler Collatz.swift
/host/spi-builder-workspace/Sources/Euler/Geometry/Vector.swift:53:24: error: cannot find type 'Matrix' in scope
51 | #if !os(Linux)
52 | /// Converts a Vector into a Matrix
53 | public var matrix: Matrix {
| `- error: cannot find type 'Matrix' in scope
54 | return Matrix(self.dims.map { $0.asDouble() ?? Double.infinity }, isColumnVector: true)
55 | }
[34/85] Compiling Euler Fibonacci.swift
/host/spi-builder-workspace/Sources/Euler/Geometry/Vector.swift:53:24: error: cannot find type 'Matrix' in scope
51 | #if !os(Linux)
52 | /// Converts a Vector into a Matrix
53 | public var matrix: Matrix {
| `- error: cannot find type 'Matrix' in scope
54 | return Matrix(self.dims.map { $0.asDouble() ?? Double.infinity }, isColumnVector: true)
55 | }
[35/85] Compiling Euler Sieve.swift
/host/spi-builder-workspace/Sources/Euler/Geometry/Vector.swift:53:24: error: cannot find type 'Matrix' in scope
51 | #if !os(Linux)
52 | /// Converts a Vector into a Matrix
53 | public var matrix: Matrix {
| `- error: cannot find type 'Matrix' in scope
54 | return Matrix(self.dims.map { $0.asDouble() ?? Double.infinity }, isColumnVector: true)
55 | }
[36/85] Compiling Euler Graph.swift
/host/spi-builder-workspace/Sources/Euler/Geometry/Vector.swift:53:24: error: cannot find type 'Matrix' in scope
51 | #if !os(Linux)
52 | /// Converts a Vector into a Matrix
53 | public var matrix: Matrix {
| `- error: cannot find type 'Matrix' in scope
54 | return Matrix(self.dims.map { $0.asDouble() ?? Double.infinity }, isColumnVector: true)
55 | }
[37/85] Compiling Euler Point.swift
/host/spi-builder-workspace/Sources/Euler/Geometry/Vector.swift:53:24: error: cannot find type 'Matrix' in scope
51 | #if !os(Linux)
52 | /// Converts a Vector into a Matrix
53 | public var matrix: Matrix {
| `- error: cannot find type 'Matrix' in scope
54 | return Matrix(self.dims.map { $0.asDouble() ?? Double.infinity }, isColumnVector: true)
55 | }
[38/85] Compiling Euler Vector.swift
/host/spi-builder-workspace/Sources/Euler/Geometry/Vector.swift:53:24: error: cannot find type 'Matrix' in scope
51 | #if !os(Linux)
52 | /// Converts a Vector into a Matrix
53 | public var matrix: Matrix {
| `- error: cannot find type 'Matrix' in scope
54 | return Matrix(self.dims.map { $0.asDouble() ?? Double.infinity }, isColumnVector: true)
55 | }
[39/85] Compiling Euler MOperations.swift
/host/spi-builder-workspace/Sources/Euler/Geometry/Vector.swift:53:24: error: cannot find type 'Matrix' in scope
51 | #if !os(Linux)
52 | /// Converts a Vector into a Matrix
53 | public var matrix: Matrix {
| `- error: cannot find type 'Matrix' in scope
54 | return Matrix(self.dims.map { $0.asDouble() ?? Double.infinity }, isColumnVector: true)
55 | }
[40/85] Compiling Euler MProperties.swift
/host/spi-builder-workspace/Sources/Euler/Geometry/Vector.swift:53:24: error: cannot find type 'Matrix' in scope
51 | #if !os(Linux)
52 | /// Converts a Vector into a Matrix
53 | public var matrix: Matrix {
| `- error: cannot find type 'Matrix' in scope
54 | return Matrix(self.dims.map { $0.asDouble() ?? Double.infinity }, isColumnVector: true)
55 | }
[41/85] Compiling Euler Matrix.swift
/host/spi-builder-workspace/Sources/Euler/Geometry/Vector.swift:53:24: error: cannot find type 'Matrix' in scope
51 | #if !os(Linux)
52 | /// Converts a Vector into a Matrix
53 | public var matrix: Matrix {
| `- error: cannot find type 'Matrix' in scope
54 | return Matrix(self.dims.map { $0.asDouble() ?? Double.infinity }, isColumnVector: true)
55 | }
[42/85] Compiling Euler Constants.swift
/host/spi-builder-workspace/Sources/Euler/Geometry/Vector.swift:53:24: error: cannot find type 'Matrix' in scope
51 | #if !os(Linux)
52 | /// Converts a Vector into a Matrix
53 | public var matrix: Matrix {
| `- error: cannot find type 'Matrix' in scope
54 | return Matrix(self.dims.map { $0.asDouble() ?? Double.infinity }, isColumnVector: true)
55 | }
[43/85] Compiling Euler Expression.swift
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:69:38: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
67 | let ps = i.matches(regex: "\\(\\)")
68 | for (lower, _) in ps {
69 | i.insert("0", at: String.Index(encodedOffset: lower + 1))
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
70 | }
71 | return i
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:87:45: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
85 | tokens.append(t)
86 | }
87 | let firstIndex = String.Index(encodedOffset: m.count - 1)
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
88 | let index = content.index(after: firstIndex)
89 | content = String(content[index...])
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[44/85] Compiling Euler ExpressionSolver.swift
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:69:38: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
67 | let ps = i.matches(regex: "\\(\\)")
68 | for (lower, _) in ps {
69 | i.insert("0", at: String.Index(encodedOffset: lower + 1))
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
70 | }
71 | return i
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:87:45: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
85 | tokens.append(t)
86 | }
87 | let firstIndex = String.Index(encodedOffset: m.count - 1)
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
88 | let index = content.index(after: firstIndex)
89 | content = String(content[index...])
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[45/85] Compiling Euler Grouper.swift
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:69:38: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
67 | let ps = i.matches(regex: "\\(\\)")
68 | for (lower, _) in ps {
69 | i.insert("0", at: String.Index(encodedOffset: lower + 1))
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
70 | }
71 | return i
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:87:45: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
85 | tokens.append(t)
86 | }
87 | let firstIndex = String.Index(encodedOffset: m.count - 1)
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
88 | let index = content.index(after: firstIndex)
89 | content = String(content[index...])
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[46/85] Compiling Euler LaTeX.swift
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:69:38: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
67 | let ps = i.matches(regex: "\\(\\)")
68 | for (lower, _) in ps {
69 | i.insert("0", at: String.Index(encodedOffset: lower + 1))
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
70 | }
71 | return i
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:87:45: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
85 | tokens.append(t)
86 | }
87 | let firstIndex = String.Index(encodedOffset: m.count - 1)
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
88 | let index = content.index(after: firstIndex)
89 | content = String(content[index...])
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[47/85] Compiling Euler Lexer.swift
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:69:38: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
67 | let ps = i.matches(regex: "\\(\\)")
68 | for (lower, _) in ps {
69 | i.insert("0", at: String.Index(encodedOffset: lower + 1))
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
70 | }
71 | return i
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:87:45: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
85 | tokens.append(t)
86 | }
87 | let firstIndex = String.Index(encodedOffset: m.count - 1)
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
88 | let index = content.index(after: firstIndex)
89 | content = String(content[index...])
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[48/85] Compiling Euler CellAddressNode.swift
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:69:38: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
67 | let ps = i.matches(regex: "\\(\\)")
68 | for (lower, _) in ps {
69 | i.insert("0", at: String.Index(encodedOffset: lower + 1))
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
70 | }
71 | return i
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:87:45: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
85 | tokens.append(t)
86 | }
87 | let firstIndex = String.Index(encodedOffset: m.count - 1)
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
88 | let index = content.index(after: firstIndex)
89 | content = String(content[index...])
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[49/85] Compiling Euler ConstantNode.swift
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:69:38: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
67 | let ps = i.matches(regex: "\\(\\)")
68 | for (lower, _) in ps {
69 | i.insert("0", at: String.Index(encodedOffset: lower + 1))
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
70 | }
71 | return i
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:87:45: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
85 | tokens.append(t)
86 | }
87 | let firstIndex = String.Index(encodedOffset: m.count - 1)
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
88 | let index = content.index(after: firstIndex)
89 | content = String(content[index...])
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[50/85] Compiling Euler ExpressionNode.swift
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:69:38: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
67 | let ps = i.matches(regex: "\\(\\)")
68 | for (lower, _) in ps {
69 | i.insert("0", at: String.Index(encodedOffset: lower + 1))
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
70 | }
71 | return i
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:87:45: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
85 | tokens.append(t)
86 | }
87 | let firstIndex = String.Index(encodedOffset: m.count - 1)
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
88 | let index = content.index(after: firstIndex)
89 | content = String(content[index...])
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[51/85] Compiling Euler FunctionNode.swift
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:69:38: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
67 | let ps = i.matches(regex: "\\(\\)")
68 | for (lower, _) in ps {
69 | i.insert("0", at: String.Index(encodedOffset: lower + 1))
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
70 | }
71 | return i
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:87:45: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
85 | tokens.append(t)
86 | }
87 | let firstIndex = String.Index(encodedOffset: m.count - 1)
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
88 | let index = content.index(after: firstIndex)
89 | content = String(content[index...])
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[52/85] Compiling Euler Node.swift
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:69:38: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
67 | let ps = i.matches(regex: "\\(\\)")
68 | for (lower, _) in ps {
69 | i.insert("0", at: String.Index(encodedOffset: lower + 1))
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
70 | }
71 | return i
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:87:45: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
85 | tokens.append(t)
86 | }
87 | let firstIndex = String.Index(encodedOffset: m.count - 1)
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
88 | let index = content.index(after: firstIndex)
89 | content = String(content[index...])
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[53/85] Compiling Euler NullNode.swift
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:69:38: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
67 | let ps = i.matches(regex: "\\(\\)")
68 | for (lower, _) in ps {
69 | i.insert("0", at: String.Index(encodedOffset: lower + 1))
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
70 | }
71 | return i
/host/spi-builder-workspace/Sources/Euler/Algebra/Parser/Lexer.swift:87:45: warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
85 | tokens.append(t)
86 | }
87 | let firstIndex = String.Index(encodedOffset: m.count - 1)
| `- warning: 'init(encodedOffset:)' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use String.Index(utf16Offset:in:) to achieve the same behavior. [#DeprecatedDeclaration]
88 | let index = content.index(after: firstIndex)
89 | content = String(content[index...])
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
error: emit-module command failed with exit code 1 (use -v to see invocation)
[54/85] Emitting module Euler
/host/spi-builder-workspace/Sources/Euler/Geometry/Vector.swift:53:24: error: cannot find type 'Matrix' in scope
51 | #if !os(Linux)
52 | /// Converts a Vector into a Matrix
53 | public var matrix: Matrix {
| `- error: cannot find type 'Matrix' in scope
54 | return Matrix(self.dims.map { $0.asDouble() ?? Double.infinity }, isColumnVector: true)
55 | }
[55/85] Compiling Euler OperationsBigDouble.swift
/host/spi-builder-workspace/Sources/Euler/Cryptography/sha256.swift:28:16: warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
26 | let bytes: Array<UInt8> = Array(self)
27 | let result = SHA256(bytes).calculate32()
28 | return Data(bytes: result)
| `- warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
29 | }
30 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[56/85] Compiling Euler BigInt.swift
/host/spi-builder-workspace/Sources/Euler/Cryptography/sha256.swift:28:16: warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
26 | let bytes: Array<UInt8> = Array(self)
27 | let result = SHA256(bytes).calculate32()
28 | return Data(bytes: result)
| `- warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
29 | }
30 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[57/85] Compiling Euler BinaryBigInt.swift
/host/spi-builder-workspace/Sources/Euler/Cryptography/sha256.swift:28:16: warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
26 | let bytes: Array<UInt8> = Array(self)
27 | let result = SHA256(bytes).calculate32()
28 | return Data(bytes: result)
| `- warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
29 | }
30 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[58/85] Compiling Euler OperationsBigInt.swift
/host/spi-builder-workspace/Sources/Euler/Cryptography/sha256.swift:28:16: warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
26 | let bytes: Array<UInt8> = Array(self)
27 | let result = SHA256(bytes).calculate32()
28 | return Data(bytes: result)
| `- warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
29 | }
30 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[59/85] Compiling Euler Limbs.swift
/host/spi-builder-workspace/Sources/Euler/Cryptography/sha256.swift:28:16: warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
26 | let bytes: Array<UInt8> = Array(self)
27 | let result = SHA256(bytes).calculate32()
28 | return Data(bytes: result)
| `- warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
29 | }
30 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[60/85] Compiling Euler RSA.swift
/host/spi-builder-workspace/Sources/Euler/Cryptography/sha256.swift:28:16: warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
26 | let bytes: Array<UInt8> = Array(self)
27 | let result = SHA256(bytes).calculate32()
28 | return Data(bytes: result)
| `- warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
29 | }
30 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[61/85] Compiling Euler md5.swift
/host/spi-builder-workspace/Sources/Euler/Cryptography/sha256.swift:28:16: warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
26 | let bytes: Array<UInt8> = Array(self)
27 | let result = SHA256(bytes).calculate32()
28 | return Data(bytes: result)
| `- warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
29 | }
30 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[62/85] Compiling Euler sha256.swift
/host/spi-builder-workspace/Sources/Euler/Cryptography/sha256.swift:28:16: warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
26 | let bytes: Array<UInt8> = Array(self)
27 | let result = SHA256(bytes).calculate32()
28 | return Data(bytes: result)
| `- warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
29 | }
30 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[63/85] Compiling Euler Euler.swift
/host/spi-builder-workspace/Sources/Euler/Cryptography/sha256.swift:28:16: warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
26 | let bytes: Array<UInt8> = Array(self)
27 | let result = SHA256(bytes).calculate32()
28 | return Data(bytes: result)
| `- warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
29 | }
30 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[64/85] Compiling Euler Array.swift
/host/spi-builder-workspace/Sources/Euler/Cryptography/sha256.swift:28:16: warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
26 | let bytes: Array<UInt8> = Array(self)
27 | let result = SHA256(bytes).calculate32()
28 | return Data(bytes: result)
| `- warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
29 | }
30 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[65/85] Compiling Euler OperatorNode.swift
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:324:33: warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
322 | return self.decimalDescription
323 | } else {
324 | guard let index = d.index(of: ".") else {
| |- warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
| `- note: use 'firstIndex(of:)' instead
325 | let rounded = self.rounded()
326 | return rounded.scientificDescription
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:328:27: warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
326 | return rounded.scientificDescription
327 | }
328 | power = index.encodedOffset - 1
| `- warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
329 | }
330 | d = d.replacingOccurrences(of: ".", with: "")
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[66/85] Compiling Euler StringNode.swift
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:324:33: warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
322 | return self.decimalDescription
323 | } else {
324 | guard let index = d.index(of: ".") else {
| |- warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
| `- note: use 'firstIndex(of:)' instead
325 | let rounded = self.rounded()
326 | return rounded.scientificDescription
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:328:27: warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
326 | return rounded.scientificDescription
327 | }
328 | power = index.encodedOffset - 1
| `- warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
329 | }
330 | d = d.replacingOccurrences(of: ".", with: "")
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[67/85] Compiling Euler SymbolNode.swift
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:324:33: warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
322 | return self.decimalDescription
323 | } else {
324 | guard let index = d.index(of: ".") else {
| |- warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
| `- note: use 'firstIndex(of:)' instead
325 | let rounded = self.rounded()
326 | return rounded.scientificDescription
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:328:27: warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
326 | return rounded.scientificDescription
327 | }
328 | power = index.encodedOffset - 1
| `- warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
329 | }
330 | d = d.replacingOccurrences(of: ".", with: "")
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[68/85] Compiling Euler Parser.swift
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:324:33: warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
322 | return self.decimalDescription
323 | } else {
324 | guard let index = d.index(of: ".") else {
| |- warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
| `- note: use 'firstIndex(of:)' instead
325 | let rounded = self.rounded()
326 | return rounded.scientificDescription
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:328:27: warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
326 | return rounded.scientificDescription
327 | }
328 | power = index.encodedOffset - 1
| `- warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
329 | }
330 | d = d.replacingOccurrences(of: ".", with: "")
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[69/85] Compiling Euler Regex.swift
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:324:33: warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
322 | return self.decimalDescription
323 | } else {
324 | guard let index = d.index(of: ".") else {
| |- warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
| `- note: use 'firstIndex(of:)' instead
325 | let rounded = self.rounded()
326 | return rounded.scientificDescription
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:328:27: warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
326 | return rounded.scientificDescription
327 | }
328 | power = index.encodedOffset - 1
| `- warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
329 | }
330 | d = d.replacingOccurrences(of: ".", with: "")
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[70/85] Compiling Euler Polynomial.swift
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:324:33: warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
322 | return self.decimalDescription
323 | } else {
324 | guard let index = d.index(of: ".") else {
| |- warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
| `- note: use 'firstIndex(of:)' instead
325 | let rounded = self.rounded()
326 | return rounded.scientificDescription
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:328:27: warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
326 | return rounded.scientificDescription
327 | }
328 | power = index.encodedOffset - 1
| `- warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
329 | }
330 | d = d.replacingOccurrences(of: ".", with: "")
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[71/85] Compiling Euler simplify.swift
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:324:33: warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
322 | return self.decimalDescription
323 | } else {
324 | guard let index = d.index(of: ".") else {
| |- warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
| `- note: use 'firstIndex(of:)' instead
325 | let rounded = self.rounded()
326 | return rounded.scientificDescription
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:328:27: warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
326 | return rounded.scientificDescription
327 | }
328 | power = index.encodedOffset - 1
| `- warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
329 | }
330 | d = d.replacingOccurrences(of: ".", with: "")
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[72/85] Compiling Euler Tree.swift
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:324:33: warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
322 | return self.decimalDescription
323 | } else {
324 | guard let index = d.index(of: ".") else {
| |- warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
| `- note: use 'firstIndex(of:)' instead
325 | let rounded = self.rounded()
326 | return rounded.scientificDescription
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:328:27: warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
326 | return rounded.scientificDescription
327 | }
328 | power = index.encodedOffset - 1
| `- warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
329 | }
330 | d = d.replacingOccurrences(of: ".", with: "")
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[73/85] Compiling Euler BNativeExtensions.swift
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:324:33: warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
322 | return self.decimalDescription
323 | } else {
324 | guard let index = d.index(of: ".") else {
| |- warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
| `- note: use 'firstIndex(of:)' instead
325 | let rounded = self.rounded()
326 | return rounded.scientificDescription
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:328:27: warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
326 | return rounded.scientificDescription
327 | }
328 | power = index.encodedOffset - 1
| `- warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
329 | }
330 | d = d.replacingOccurrences(of: ".", with: "")
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[74/85] Compiling Euler BasicOperators.swift
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:324:33: warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
322 | return self.decimalDescription
323 | } else {
324 | guard let index = d.index(of: ".") else {
| |- warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
| `- note: use 'firstIndex(of:)' instead
325 | let rounded = self.rounded()
326 | return rounded.scientificDescription
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:328:27: warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
326 | return rounded.scientificDescription
327 | }
328 | power = index.encodedOffset - 1
| `- warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
329 | }
330 | d = d.replacingOccurrences(of: ".", with: "")
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[75/85] Compiling Euler BigDouble.swift
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:324:33: warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
322 | return self.decimalDescription
323 | } else {
324 | guard let index = d.index(of: ".") else {
| |- warning: 'index(of:)' is deprecated: renamed to 'firstIndex(of:)' [#DeprecatedDeclaration]
| `- note: use 'firstIndex(of:)' instead
325 | let rounded = self.rounded()
326 | return rounded.scientificDescription
/host/spi-builder-workspace/Sources/Euler/BigNumber/BigDouble/BigDouble.swift:328:27: warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
326 | return rounded.scientificDescription
327 | }
328 | power = index.encodedOffset - 1
| `- warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior. [#DeprecatedDeclaration]
329 | }
330 | d = d.replacingOccurrences(of: ".", with: "")
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[76/85] Compiling Euler LogicalLinker.swift
[77/85] Compiling Euler StatsLinker.swift
[78/85] Compiling Euler Tables.swift
[79/85] Compiling Euler TablesDataSource.swift
[80/85] Compiling Euler TablesDelegate.swift
[81/85] Compiling Euler KnuthDSupport.swift
[82/85] Compiling Euler Pointers.swift
[83/85] Compiling Euler Substring.swift
[84/85] Compiling Euler UnsafeMemory.swift
[85/85] Compiling Euler UnsafeMutableMemory.swift
BUILD FAILURE 6.2 android