Build Information
Failed to build java_util, reference master (1ac445
), with Swift 6.2 (beta) for Linux on 20 Jun 2025 21:59:08 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/PureSwift/java_util.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/PureSwift/java_util
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 1ac4452 Fixed Darwin compilation
Cloned https://github.com/PureSwift/java_util.git
Revision (git rev-parse @):
1ac4452ee20a1460b236fed4f079fc7cafbf4ac9
SUCCESS checkout https://github.com/PureSwift/java_util.git at master
========================================
Build
========================================
Selected platform: linux
Swift version: 6.2
Building package at path: $PWD
https://github.com/PureSwift/java_util.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Fetching https://github.com/PureSwift/java_lang.git
[1/765] Fetching java_lang
Fetched https://github.com/PureSwift/java_lang.git from cache (0.50s)
Fetching https://github.com/PureSwift/java_swift.git
[1/398] Fetching java_swift
Fetched https://github.com/PureSwift/java_swift.git from cache (0.34s)
Fetching https://github.com/PureSwift/CJavaVM.git
[1/58] Fetching cjavavm
Fetched https://github.com/PureSwift/CJavaVM.git from cache (0.29s)
Creating working copy for https://github.com/PureSwift/java_lang.git
Working copy of https://github.com/PureSwift/java_lang.git resolved at master (9ec60a9)
Creating working copy for https://github.com/PureSwift/CJavaVM.git
Working copy of https://github.com/PureSwift/CJavaVM.git resolved at master (3b19893)
Creating working copy for https://github.com/PureSwift/java_swift.git
Working copy of https://github.com/PureSwift/java_swift.git resolved at master (ebf330e)
Building for debugging...
[0/5] Write sources
[3/5] Compiling CJavaVM dummy.c
[3/5] Write swift-version-24593BA9C3E375BF.txt
[6/20] Compiling java_swift JavaMap.swift
[7/20] Compiling java_swift JavaObject.swift
[8/20] Compiling java_swift JNIProxy.swift
/host/spi-builder-workspace/.build/checkouts/java_swift/Sources/JNIProxy.swift:19:122: error: cannot find type 'uintptr_t' in scope
17 | open class JNIReleasableProxy {
18 |
19 | static fileprivate func recoverPointer( _ swiftObject: jlong, _ file: StaticString = #file, _ line: Int = #line ) -> uintptr_t {
| `- error: cannot find type 'uintptr_t' in scope
20 | #if os(Android)
21 | let swiftPointer = uintptr_t(swiftObject&0xffffffff)
/host/spi-builder-workspace/.build/checkouts/java_swift/Sources/JNIProxy.swift:23:28: error: cannot find 'uintptr_t' in scope
21 | let swiftPointer = uintptr_t(swiftObject&0xffffffff)
22 | #else
23 | let swiftPointer = uintptr_t(swiftObject)
| `- error: cannot find 'uintptr_t' in scope
24 | #endif
25 | if swiftPointer == 0 {
/host/spi-builder-workspace/.build/checkouts/java_swift/Sources/JNIProxy.swift:74:81: error: cannot find 'uintptr_t' in scope
72 |
73 | open func swiftValue() -> jvalue {
74 | return jvalue( j: jlong(unsafeBitCast(Unmanaged.passRetained(self), to: uintptr_t.self)) )
| `- error: cannot find 'uintptr_t' in scope
75 | }
76 |
[9/20] Compiling java_swift JNIType.swift
/host/spi-builder-workspace/.build/checkouts/java_swift/Sources/JNIProxy.swift:19:122: error: cannot find type 'uintptr_t' in scope
17 | open class JNIReleasableProxy {
18 |
19 | static fileprivate func recoverPointer( _ swiftObject: jlong, _ file: StaticString = #file, _ line: Int = #line ) -> uintptr_t {
| `- error: cannot find type 'uintptr_t' in scope
20 | #if os(Android)
21 | let swiftPointer = uintptr_t(swiftObject&0xffffffff)
/host/spi-builder-workspace/.build/checkouts/java_swift/Sources/JNIProxy.swift:23:28: error: cannot find 'uintptr_t' in scope
21 | let swiftPointer = uintptr_t(swiftObject&0xffffffff)
22 | #else
23 | let swiftPointer = uintptr_t(swiftObject)
| `- error: cannot find 'uintptr_t' in scope
24 | #endif
25 | if swiftPointer == 0 {
/host/spi-builder-workspace/.build/checkouts/java_swift/Sources/JNIProxy.swift:74:81: error: cannot find 'uintptr_t' in scope
72 |
73 | open func swiftValue() -> jvalue {
74 | return jvalue( j: jlong(unsafeBitCast(Unmanaged.passRetained(self), to: uintptr_t.self)) )
| `- error: cannot find 'uintptr_t' in scope
75 | }
76 |
[10/22] Compiling java_swift JavaClass.swift
[11/22] Compiling java_swift JavaEnum.swift
[12/22] Compiling java_swift JavaSet.swift
[13/22] Compiling java_swift JavaThread.swift
[14/22] Compiling java_swift Runnable.swift
[15/22] Compiling java_swift Throwable.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[16/22] Compiling java_swift Exception.swift
[17/22] Compiling java_swift HashMap.swift
[18/22] Compiling java_swift JNIMethod.swift
[19/22] Compiling java_swift JNIObject.swift
[20/22] Emitting module java_swift
/host/spi-builder-workspace/.build/checkouts/java_swift/Sources/JNIProxy.swift:19:122: error: cannot find type 'uintptr_t' in scope
17 | open class JNIReleasableProxy {
18 |
19 | static fileprivate func recoverPointer( _ swiftObject: jlong, _ file: StaticString = #file, _ line: Int = #line ) -> uintptr_t {
| `- error: cannot find type 'uintptr_t' in scope
20 | #if os(Android)
21 | let swiftPointer = uintptr_t(swiftObject&0xffffffff)
[21/22] Compiling java_swift JNICore.swift
/host/spi-builder-workspace/.build/checkouts/java_swift/Sources/JNICore.swift:26:32: error: cannot convert value of type '(UnsafeMutableRawPointer) -> ()' to expected argument type '@convention(c) (UnsafeMutableRawPointer?) -> Void'
24 |
25 | var result = withUnsafeMutablePointer(to: &jniEnvKey, {
26 | pthread_key_create($0, JNI_DetachCurrentThread)
| `- error: cannot convert value of type '(UnsafeMutableRawPointer) -> ()' to expected argument type '@convention(c) (UnsafeMutableRawPointer?) -> Void'
27 | })
28 | if (result != 0) {
/host/spi-builder-workspace/.build/checkouts/java_swift/Sources/JNICore.swift:34:32: error: cannot convert value of type '(UnsafeMutableRawPointer) -> ()' to expected argument type '@convention(c) (UnsafeMutableRawPointer?) -> Void'
32 |
33 | result = withUnsafeMutablePointer(to: &jniFatalMessage, {
34 | pthread_key_create($0, JNI_DetachCurrentThread)
| `- error: cannot convert value of type '(UnsafeMutableRawPointer) -> ()' to expected argument type '@convention(c) (UnsafeMutableRawPointer?) -> Void'
35 | })
36 | if (result != 0) {
[22/22] Compiling java_swift JNIField.swift
/host/spi-builder-workspace/.build/checkouts/java_swift/Sources/JNICore.swift:26:32: error: cannot convert value of type '(UnsafeMutableRawPointer) -> ()' to expected argument type '@convention(c) (UnsafeMutableRawPointer?) -> Void'
24 |
25 | var result = withUnsafeMutablePointer(to: &jniEnvKey, {
26 | pthread_key_create($0, JNI_DetachCurrentThread)
| `- error: cannot convert value of type '(UnsafeMutableRawPointer) -> ()' to expected argument type '@convention(c) (UnsafeMutableRawPointer?) -> Void'
27 | })
28 | if (result != 0) {
/host/spi-builder-workspace/.build/checkouts/java_swift/Sources/JNICore.swift:34:32: error: cannot convert value of type '(UnsafeMutableRawPointer) -> ()' to expected argument type '@convention(c) (UnsafeMutableRawPointer?) -> Void'
32 |
33 | result = withUnsafeMutablePointer(to: &jniFatalMessage, {
34 | pthread_key_create($0, JNI_DetachCurrentThread)
| `- error: cannot convert value of type '(UnsafeMutableRawPointer) -> ()' to expected argument type '@convention(c) (UnsafeMutableRawPointer?) -> Void'
35 | })
36 | if (result != 0) {
BUILD FAILURE 6.2 linux