The Swift Package Index logo.Swift Package Index

Build Information

Failed to build SwiftStockEarnings, reference main (95d7cb), with Swift 6.1 for Wasm on 22 Jul 2025 22:14:13 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/mattrudin/SwiftStockEarnings.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/mattrudin/SwiftStockEarnings
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 95d7cbb Fix: Support "Sept." as month abbreviation in date parser
Cloned https://github.com/mattrudin/SwiftStockEarnings.git
Revision (git rev-parse @):
95d7cbbf40a7396db7873dca4ae116efe5e1e68a
SUCCESS checkout https://github.com/mattrudin/SwiftStockEarnings.git at main
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/mattrudin/SwiftStockEarnings.git
https://github.com/mattrudin/SwiftStockEarnings.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
error: 'spi-builder-workspace': package 'spi-builder-workspace' is using Swift tools version 6.1.0 but the installed version is 6.0.2
error: fatalError
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:8f9255989265d824b88e7d572b1a334a0dc9b701075ede1970390db95d315c35
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Fetching https://github.com/scinfu/SwiftSoup.git
[1/4246] Fetching swiftsoup
Fetched https://github.com/scinfu/SwiftSoup.git from cache (1.16s)
Computing version for https://github.com/scinfu/SwiftSoup.git
Computed https://github.com/scinfu/SwiftSoup.git at 2.9.6 (1.87s)
Creating working copy for https://github.com/scinfu/SwiftSoup.git
Working copy of https://github.com/scinfu/SwiftSoup.git resolved at 2.9.6
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/57] Compiling SwiftSoup Tag.swift
[5/57] Compiling SwiftSoup TextNode.swift
[6/57] Compiling SwiftSoup Token.swift
[7/57] Compiling SwiftSoup TokenQueue.swift
[8/57] Compiling SwiftSoup Tokeniser.swift
[9/57] Compiling SwiftSoup TokeniserState.swift
[10/57] Compiling SwiftSoup TreeBuilder.swift
[11/64] Compiling SwiftSoup ParseErrorList.swift
[12/64] Compiling SwiftSoup ParseSettings.swift
[13/64] Compiling SwiftSoup Parser.swift
[14/64] Compiling SwiftSoup ParsingStrings.swift
[15/64] Compiling SwiftSoup Pattern.swift
[16/64] Compiling SwiftSoup QueryParser.swift
[17/64] Compiling SwiftSoup SerializationException.swift
[18/64] Compiling SwiftSoup SimpleDictionary.swift
[19/64] Compiling SwiftSoup StreamReader.swift
[20/64] Compiling SwiftSoup String.swift
[21/64] Compiling SwiftSoup StringBuilder.swift
[22/64] Compiling SwiftSoup StringUtil.swift
[23/64] Compiling SwiftSoup StructuralEvaluator.swift
[24/64] Compiling SwiftSoup SwiftSoup.swift
[25/64] Compiling SwiftSoup HtmlTreeBuilderState.swift
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:9: error: cannot find 'pthread_mutex_init' in scope
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |         `- error: cannot find 'pthread_mutex_init' in scope
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:36: error: 'nil' requires a contextual type
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |                                    `- error: 'nil' requires a contextual type
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:41:9: error: cannot find 'pthread_mutex_destroy' in scope
39 |
40 |     deinit {
41 |         pthread_mutex_destroy(&mutex)
   |         `- error: cannot find 'pthread_mutex_destroy' in scope
42 |     }
43 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:45:9: error: cannot find 'pthread_mutex_lock' in scope
43 |
44 |     func lock() {
45 |         pthread_mutex_lock(&mutex)
   |         `- error: cannot find 'pthread_mutex_lock' in scope
46 |     }
47 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:49:9: error: cannot find 'pthread_mutex_unlock' in scope
47 |
48 |     func unlock() {
49 |         pthread_mutex_unlock(&mutex)
   |         `- error: cannot find 'pthread_mutex_unlock' in scope
50 |     }
51 | #endif
[26/64] Compiling SwiftSoup HttpStatusException.swift
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:9: error: cannot find 'pthread_mutex_init' in scope
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |         `- error: cannot find 'pthread_mutex_init' in scope
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:36: error: 'nil' requires a contextual type
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |                                    `- error: 'nil' requires a contextual type
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:41:9: error: cannot find 'pthread_mutex_destroy' in scope
39 |
40 |     deinit {
41 |         pthread_mutex_destroy(&mutex)
   |         `- error: cannot find 'pthread_mutex_destroy' in scope
42 |     }
43 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:45:9: error: cannot find 'pthread_mutex_lock' in scope
43 |
44 |     func lock() {
45 |         pthread_mutex_lock(&mutex)
   |         `- error: cannot find 'pthread_mutex_lock' in scope
46 |     }
47 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:49:9: error: cannot find 'pthread_mutex_unlock' in scope
47 |
48 |     func unlock() {
49 |         pthread_mutex_unlock(&mutex)
   |         `- error: cannot find 'pthread_mutex_unlock' in scope
50 |     }
51 | #endif
[27/64] Compiling SwiftSoup Mutex.swift
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:9: error: cannot find 'pthread_mutex_init' in scope
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |         `- error: cannot find 'pthread_mutex_init' in scope
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:36: error: 'nil' requires a contextual type
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |                                    `- error: 'nil' requires a contextual type
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:41:9: error: cannot find 'pthread_mutex_destroy' in scope
39 |
40 |     deinit {
41 |         pthread_mutex_destroy(&mutex)
   |         `- error: cannot find 'pthread_mutex_destroy' in scope
42 |     }
43 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:45:9: error: cannot find 'pthread_mutex_lock' in scope
43 |
44 |     func lock() {
45 |         pthread_mutex_lock(&mutex)
   |         `- error: cannot find 'pthread_mutex_lock' in scope
46 |     }
47 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:49:9: error: cannot find 'pthread_mutex_unlock' in scope
47 |
48 |     func unlock() {
49 |         pthread_mutex_unlock(&mutex)
   |         `- error: cannot find 'pthread_mutex_unlock' in scope
50 |     }
51 | #endif
[28/64] Compiling SwiftSoup Node.swift
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:9: error: cannot find 'pthread_mutex_init' in scope
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |         `- error: cannot find 'pthread_mutex_init' in scope
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:36: error: 'nil' requires a contextual type
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |                                    `- error: 'nil' requires a contextual type
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:41:9: error: cannot find 'pthread_mutex_destroy' in scope
39 |
40 |     deinit {
41 |         pthread_mutex_destroy(&mutex)
   |         `- error: cannot find 'pthread_mutex_destroy' in scope
42 |     }
43 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:45:9: error: cannot find 'pthread_mutex_lock' in scope
43 |
44 |     func lock() {
45 |         pthread_mutex_lock(&mutex)
   |         `- error: cannot find 'pthread_mutex_lock' in scope
46 |     }
47 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:49:9: error: cannot find 'pthread_mutex_unlock' in scope
47 |
48 |     func unlock() {
49 |         pthread_mutex_unlock(&mutex)
   |         `- error: cannot find 'pthread_mutex_unlock' in scope
50 |     }
51 | #endif
[29/64] Compiling SwiftSoup NodeTraversor.swift
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:9: error: cannot find 'pthread_mutex_init' in scope
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |         `- error: cannot find 'pthread_mutex_init' in scope
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:36: error: 'nil' requires a contextual type
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |                                    `- error: 'nil' requires a contextual type
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:41:9: error: cannot find 'pthread_mutex_destroy' in scope
39 |
40 |     deinit {
41 |         pthread_mutex_destroy(&mutex)
   |         `- error: cannot find 'pthread_mutex_destroy' in scope
42 |     }
43 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:45:9: error: cannot find 'pthread_mutex_lock' in scope
43 |
44 |     func lock() {
45 |         pthread_mutex_lock(&mutex)
   |         `- error: cannot find 'pthread_mutex_lock' in scope
46 |     }
47 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:49:9: error: cannot find 'pthread_mutex_unlock' in scope
47 |
48 |     func unlock() {
49 |         pthread_mutex_unlock(&mutex)
   |         `- error: cannot find 'pthread_mutex_unlock' in scope
50 |     }
51 | #endif
[30/64] Compiling SwiftSoup NodeVisitor.swift
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:9: error: cannot find 'pthread_mutex_init' in scope
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |         `- error: cannot find 'pthread_mutex_init' in scope
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:36: error: 'nil' requires a contextual type
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |                                    `- error: 'nil' requires a contextual type
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:41:9: error: cannot find 'pthread_mutex_destroy' in scope
39 |
40 |     deinit {
41 |         pthread_mutex_destroy(&mutex)
   |         `- error: cannot find 'pthread_mutex_destroy' in scope
42 |     }
43 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:45:9: error: cannot find 'pthread_mutex_lock' in scope
43 |
44 |     func lock() {
45 |         pthread_mutex_lock(&mutex)
   |         `- error: cannot find 'pthread_mutex_lock' in scope
46 |     }
47 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:49:9: error: cannot find 'pthread_mutex_unlock' in scope
47 |
48 |     func unlock() {
49 |         pthread_mutex_unlock(&mutex)
   |         `- error: cannot find 'pthread_mutex_unlock' in scope
50 |     }
51 | #endif
[31/64] Compiling SwiftSoup OrderedSet.swift
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:9: error: cannot find 'pthread_mutex_init' in scope
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |         `- error: cannot find 'pthread_mutex_init' in scope
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:36: error: 'nil' requires a contextual type
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |                                    `- error: 'nil' requires a contextual type
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:41:9: error: cannot find 'pthread_mutex_destroy' in scope
39 |
40 |     deinit {
41 |         pthread_mutex_destroy(&mutex)
   |         `- error: cannot find 'pthread_mutex_destroy' in scope
42 |     }
43 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:45:9: error: cannot find 'pthread_mutex_lock' in scope
43 |
44 |     func lock() {
45 |         pthread_mutex_lock(&mutex)
   |         `- error: cannot find 'pthread_mutex_lock' in scope
46 |     }
47 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:49:9: error: cannot find 'pthread_mutex_unlock' in scope
47 |
48 |     func unlock() {
49 |         pthread_mutex_unlock(&mutex)
   |         `- error: cannot find 'pthread_mutex_unlock' in scope
50 |     }
51 | #endif
[32/64] Compiling SwiftSoup ParseError.swift
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:9: error: cannot find 'pthread_mutex_init' in scope
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |         `- error: cannot find 'pthread_mutex_init' in scope
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:36: error: 'nil' requires a contextual type
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |                                    `- error: 'nil' requires a contextual type
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:41:9: error: cannot find 'pthread_mutex_destroy' in scope
39 |
40 |     deinit {
41 |         pthread_mutex_destroy(&mutex)
   |         `- error: cannot find 'pthread_mutex_destroy' in scope
42 |     }
43 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:45:9: error: cannot find 'pthread_mutex_lock' in scope
43 |
44 |     func lock() {
45 |         pthread_mutex_lock(&mutex)
   |         `- error: cannot find 'pthread_mutex_lock' in scope
46 |     }
47 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:49:9: error: cannot find 'pthread_mutex_unlock' in scope
47 |
48 |     func unlock() {
49 |         pthread_mutex_unlock(&mutex)
   |         `- error: cannot find 'pthread_mutex_unlock' in scope
50 |     }
51 | #endif
[33/64] Compiling SwiftSoup Collector.swift
[34/64] Compiling SwiftSoup CombiningEvaluator.swift
[35/64] Compiling SwiftSoup Comment.swift
[36/64] Compiling SwiftSoup Connection.swift
[37/64] Compiling SwiftSoup CssSelector.swift
[38/64] Compiling SwiftSoup DataNode.swift
[39/64] Compiling SwiftSoup DataUtil.swift
[40/64] Compiling SwiftSoup Document.swift
[41/64] Compiling SwiftSoup ArrayExt.swift
[42/64] Compiling SwiftSoup Attribute.swift
[43/64] Compiling SwiftSoup Attributes.swift
[44/64] Compiling SwiftSoup BinarySearch.swift
[45/64] Compiling SwiftSoup BooleanAttribute.swift
[46/64] Compiling SwiftSoup CharacterExt.swift
[47/64] Compiling SwiftSoup CharacterReader.swift
[48/64] Compiling SwiftSoup Cleaner.swift
[49/64] Compiling SwiftSoup DocumentType.swift
[50/64] Compiling SwiftSoup Element.swift
[51/64] Compiling SwiftSoup Elements.swift
[52/64] Compiling SwiftSoup Entities.swift
[53/64] Compiling SwiftSoup Evaluator.swift
[54/64] Compiling SwiftSoup Exception.swift
[55/64] Compiling SwiftSoup FormElement.swift
[56/64] Compiling SwiftSoup HtmlTreeBuilder.swift
[57/64] Emitting module SwiftSoup
[58/64] Compiling SwiftSoup UTF8Arrays.swift
[59/64] Compiling SwiftSoup UnfairLock.swift
[60/64] Compiling SwiftSoup UnicodeScalar.swift
[61/64] Compiling SwiftSoup Validate.swift
[62/64] Compiling SwiftSoup Whitelist.swift
[63/64] Compiling SwiftSoup XmlDeclaration.swift
[64/64] Compiling SwiftSoup XmlTreeBuilder.swift
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:8f9255989265d824b88e7d572b1a334a0dc9b701075ede1970390db95d315c35
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/55] Compiling SwiftSoup HtmlTreeBuilderState.swift
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:9: error: cannot find 'pthread_mutex_init' in scope
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |         `- error: cannot find 'pthread_mutex_init' in scope
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:36: error: 'nil' requires a contextual type
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |                                    `- error: 'nil' requires a contextual type
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:41:9: error: cannot find 'pthread_mutex_destroy' in scope
39 |
40 |     deinit {
41 |         pthread_mutex_destroy(&mutex)
   |         `- error: cannot find 'pthread_mutex_destroy' in scope
42 |     }
43 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:45:9: error: cannot find 'pthread_mutex_lock' in scope
43 |
44 |     func lock() {
45 |         pthread_mutex_lock(&mutex)
   |         `- error: cannot find 'pthread_mutex_lock' in scope
46 |     }
47 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:49:9: error: cannot find 'pthread_mutex_unlock' in scope
47 |
48 |     func unlock() {
49 |         pthread_mutex_unlock(&mutex)
   |         `- error: cannot find 'pthread_mutex_unlock' in scope
50 |     }
51 | #endif
[3/55] Compiling SwiftSoup HttpStatusException.swift
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:9: error: cannot find 'pthread_mutex_init' in scope
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |         `- error: cannot find 'pthread_mutex_init' in scope
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:36: error: 'nil' requires a contextual type
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |                                    `- error: 'nil' requires a contextual type
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:41:9: error: cannot find 'pthread_mutex_destroy' in scope
39 |
40 |     deinit {
41 |         pthread_mutex_destroy(&mutex)
   |         `- error: cannot find 'pthread_mutex_destroy' in scope
42 |     }
43 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:45:9: error: cannot find 'pthread_mutex_lock' in scope
43 |
44 |     func lock() {
45 |         pthread_mutex_lock(&mutex)
   |         `- error: cannot find 'pthread_mutex_lock' in scope
46 |     }
47 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:49:9: error: cannot find 'pthread_mutex_unlock' in scope
47 |
48 |     func unlock() {
49 |         pthread_mutex_unlock(&mutex)
   |         `- error: cannot find 'pthread_mutex_unlock' in scope
50 |     }
51 | #endif
[4/55] Compiling SwiftSoup Mutex.swift
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:9: error: cannot find 'pthread_mutex_init' in scope
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |         `- error: cannot find 'pthread_mutex_init' in scope
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:36: error: 'nil' requires a contextual type
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |                                    `- error: 'nil' requires a contextual type
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:41:9: error: cannot find 'pthread_mutex_destroy' in scope
39 |
40 |     deinit {
41 |         pthread_mutex_destroy(&mutex)
   |         `- error: cannot find 'pthread_mutex_destroy' in scope
42 |     }
43 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:45:9: error: cannot find 'pthread_mutex_lock' in scope
43 |
44 |     func lock() {
45 |         pthread_mutex_lock(&mutex)
   |         `- error: cannot find 'pthread_mutex_lock' in scope
46 |     }
47 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:49:9: error: cannot find 'pthread_mutex_unlock' in scope
47 |
48 |     func unlock() {
49 |         pthread_mutex_unlock(&mutex)
   |         `- error: cannot find 'pthread_mutex_unlock' in scope
50 |     }
51 | #endif
[5/55] Compiling SwiftSoup Node.swift
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:9: error: cannot find 'pthread_mutex_init' in scope
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |         `- error: cannot find 'pthread_mutex_init' in scope
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:36: error: 'nil' requires a contextual type
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |                                    `- error: 'nil' requires a contextual type
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:41:9: error: cannot find 'pthread_mutex_destroy' in scope
39 |
40 |     deinit {
41 |         pthread_mutex_destroy(&mutex)
   |         `- error: cannot find 'pthread_mutex_destroy' in scope
42 |     }
43 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:45:9: error: cannot find 'pthread_mutex_lock' in scope
43 |
44 |     func lock() {
45 |         pthread_mutex_lock(&mutex)
   |         `- error: cannot find 'pthread_mutex_lock' in scope
46 |     }
47 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:49:9: error: cannot find 'pthread_mutex_unlock' in scope
47 |
48 |     func unlock() {
49 |         pthread_mutex_unlock(&mutex)
   |         `- error: cannot find 'pthread_mutex_unlock' in scope
50 |     }
51 | #endif
[6/55] Compiling SwiftSoup NodeTraversor.swift
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:9: error: cannot find 'pthread_mutex_init' in scope
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |         `- error: cannot find 'pthread_mutex_init' in scope
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:36: error: 'nil' requires a contextual type
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |                                    `- error: 'nil' requires a contextual type
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:41:9: error: cannot find 'pthread_mutex_destroy' in scope
39 |
40 |     deinit {
41 |         pthread_mutex_destroy(&mutex)
   |         `- error: cannot find 'pthread_mutex_destroy' in scope
42 |     }
43 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:45:9: error: cannot find 'pthread_mutex_lock' in scope
43 |
44 |     func lock() {
45 |         pthread_mutex_lock(&mutex)
   |         `- error: cannot find 'pthread_mutex_lock' in scope
46 |     }
47 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:49:9: error: cannot find 'pthread_mutex_unlock' in scope
47 |
48 |     func unlock() {
49 |         pthread_mutex_unlock(&mutex)
   |         `- error: cannot find 'pthread_mutex_unlock' in scope
50 |     }
51 | #endif
[7/55] Compiling SwiftSoup NodeVisitor.swift
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:9: error: cannot find 'pthread_mutex_init' in scope
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |         `- error: cannot find 'pthread_mutex_init' in scope
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:36: error: 'nil' requires a contextual type
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |                                    `- error: 'nil' requires a contextual type
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:41:9: error: cannot find 'pthread_mutex_destroy' in scope
39 |
40 |     deinit {
41 |         pthread_mutex_destroy(&mutex)
   |         `- error: cannot find 'pthread_mutex_destroy' in scope
42 |     }
43 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:45:9: error: cannot find 'pthread_mutex_lock' in scope
43 |
44 |     func lock() {
45 |         pthread_mutex_lock(&mutex)
   |         `- error: cannot find 'pthread_mutex_lock' in scope
46 |     }
47 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:49:9: error: cannot find 'pthread_mutex_unlock' in scope
47 |
48 |     func unlock() {
49 |         pthread_mutex_unlock(&mutex)
   |         `- error: cannot find 'pthread_mutex_unlock' in scope
50 |     }
51 | #endif
[8/55] Compiling SwiftSoup OrderedSet.swift
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:9: error: cannot find 'pthread_mutex_init' in scope
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |         `- error: cannot find 'pthread_mutex_init' in scope
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:36: error: 'nil' requires a contextual type
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |                                    `- error: 'nil' requires a contextual type
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:41:9: error: cannot find 'pthread_mutex_destroy' in scope
39 |
40 |     deinit {
41 |         pthread_mutex_destroy(&mutex)
   |         `- error: cannot find 'pthread_mutex_destroy' in scope
42 |     }
43 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:45:9: error: cannot find 'pthread_mutex_lock' in scope
43 |
44 |     func lock() {
45 |         pthread_mutex_lock(&mutex)
   |         `- error: cannot find 'pthread_mutex_lock' in scope
46 |     }
47 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:49:9: error: cannot find 'pthread_mutex_unlock' in scope
47 |
48 |     func unlock() {
49 |         pthread_mutex_unlock(&mutex)
   |         `- error: cannot find 'pthread_mutex_unlock' in scope
50 |     }
51 | #endif
[9/55] Compiling SwiftSoup ParseError.swift
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:9: error: cannot find 'pthread_mutex_init' in scope
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |         `- error: cannot find 'pthread_mutex_init' in scope
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:37:36: error: 'nil' requires a contextual type
35 |
36 |     init() {
37 |         pthread_mutex_init(&mutex, nil)
   |                                    `- error: 'nil' requires a contextual type
38 |     }
39 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:41:9: error: cannot find 'pthread_mutex_destroy' in scope
39 |
40 |     deinit {
41 |         pthread_mutex_destroy(&mutex)
   |         `- error: cannot find 'pthread_mutex_destroy' in scope
42 |     }
43 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:45:9: error: cannot find 'pthread_mutex_lock' in scope
43 |
44 |     func lock() {
45 |         pthread_mutex_lock(&mutex)
   |         `- error: cannot find 'pthread_mutex_lock' in scope
46 |     }
47 |
/host/spi-builder-workspace/.build/checkouts/SwiftSoup/Sources/Mutex.swift:49:9: error: cannot find 'pthread_mutex_unlock' in scope
47 |
48 |     func unlock() {
49 |         pthread_mutex_unlock(&mutex)
   |         `- error: cannot find 'pthread_mutex_unlock' in scope
50 |     }
51 | #endif
[10/62] Compiling SwiftSoup ArrayExt.swift
[11/62] Compiling SwiftSoup Attribute.swift
[12/62] Compiling SwiftSoup Attributes.swift
[13/62] Compiling SwiftSoup BinarySearch.swift
[14/62] Compiling SwiftSoup BooleanAttribute.swift
[15/62] Compiling SwiftSoup CharacterExt.swift
[16/62] Compiling SwiftSoup CharacterReader.swift
[17/62] Compiling SwiftSoup Cleaner.swift
[18/62] Emitting module SwiftSoup
[19/62] Compiling SwiftSoup Collector.swift
[20/62] Compiling SwiftSoup CombiningEvaluator.swift
[21/62] Compiling SwiftSoup Comment.swift
[22/62] Compiling SwiftSoup Connection.swift
[23/62] Compiling SwiftSoup CssSelector.swift
[24/62] Compiling SwiftSoup DataNode.swift
[25/62] Compiling SwiftSoup DataUtil.swift
[26/62] Compiling SwiftSoup Document.swift
[27/62] Compiling SwiftSoup ParseErrorList.swift
[28/62] Compiling SwiftSoup ParseSettings.swift
[29/62] Compiling SwiftSoup Parser.swift
[30/62] Compiling SwiftSoup ParsingStrings.swift
[31/62] Compiling SwiftSoup Pattern.swift
[32/62] Compiling SwiftSoup QueryParser.swift
[33/62] Compiling SwiftSoup SerializationException.swift
[34/62] Compiling SwiftSoup SimpleDictionary.swift
[35/62] Compiling SwiftSoup StreamReader.swift
[36/62] Compiling SwiftSoup String.swift
[37/62] Compiling SwiftSoup StringBuilder.swift
[38/62] Compiling SwiftSoup StringUtil.swift
[39/62] Compiling SwiftSoup StructuralEvaluator.swift
[40/62] Compiling SwiftSoup SwiftSoup.swift
[41/62] Compiling SwiftSoup Tag.swift
[42/62] Compiling SwiftSoup TextNode.swift
[43/62] Compiling SwiftSoup Token.swift
[44/62] Compiling SwiftSoup TokenQueue.swift
[45/62] Compiling SwiftSoup Tokeniser.swift
[46/62] Compiling SwiftSoup TokeniserState.swift
[47/62] Compiling SwiftSoup TreeBuilder.swift
[48/62] Compiling SwiftSoup UTF8Arrays.swift
[49/62] Compiling SwiftSoup UnfairLock.swift
[50/62] Compiling SwiftSoup UnicodeScalar.swift
[51/62] Compiling SwiftSoup Validate.swift
[52/62] Compiling SwiftSoup Whitelist.swift
[53/62] Compiling SwiftSoup XmlDeclaration.swift
[54/62] Compiling SwiftSoup XmlTreeBuilder.swift
[55/62] Compiling SwiftSoup DocumentType.swift
[56/62] Compiling SwiftSoup Element.swift
[57/62] Compiling SwiftSoup Elements.swift
[58/62] Compiling SwiftSoup Entities.swift
[59/62] Compiling SwiftSoup Evaluator.swift
[60/62] Compiling SwiftSoup Exception.swift
[61/62] Compiling SwiftSoup FormElement.swift
[62/62] Compiling SwiftSoup HtmlTreeBuilder.swift
BUILD FAILURE 6.1 wasm