The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build CoreGPX, reference master (42662c), with Swift 6.1 for Wasm on 29 May 2025 19:42:07 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.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/vincentneo/CoreGPX.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/vincentneo/CoreGPX
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 42662cc iOS minimum deployment is now set to v12.
Cloned https://github.com/vincentneo/CoreGPX.git
Revision (git rev-parse @):
42662cc9235d385bdd0356c8f4cb7b581da24e39
SUCCESS checkout https://github.com/vincentneo/CoreGPX.git at master
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/vincentneo/CoreGPX.git
https://github.com/vincentneo/CoreGPX.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CoreGPX",
  "name" : "CoreGPX",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "watchos",
      "version" : "4.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "CoreGPX",
      "targets" : [
        "CoreGPX"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CoreGPXTests",
      "module_type" : "SwiftTarget",
      "name" : "CoreGPXTests",
      "path" : "Example/Tests",
      "sources" : [
        "Tests.swift"
      ],
      "target_dependencies" : [
        "CoreGPX"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CoreGPX",
      "module_type" : "SwiftTarget",
      "name" : "CoreGPX",
      "path" : "Classes",
      "product_memberships" : [
        "CoreGPX"
      ],
      "sources" : [
        "Converters.swift",
        "DateTimeParsers.swift",
        "GPXAuthor.swift",
        "GPXBounds.swift",
        "GPXCompression.swift",
        "GPXCopyright.swift",
        "GPXElement.swift",
        "GPXEmail.swift",
        "GPXError.swift",
        "GPXExtensions.swift",
        "GPXExtensionsElement.swift",
        "GPXFix.swift",
        "GPXLegacy.swift",
        "GPXLink.swift",
        "GPXMetadata.swift",
        "GPXParser.swift",
        "GPXPerson.swift",
        "GPXPoint.swift",
        "GPXPointSegment.swift",
        "GPXRawElement.swift",
        "GPXRoot.swift",
        "GPXRoute.swift",
        "GPXRoutePoint.swift",
        "GPXRouteProtocol.swift",
        "GPXTrack.swift",
        "GPXTrackPoint.swift",
        "GPXTrackSegment.swift",
        "GPXWaypoint.swift",
        "GPXWaypointProtocol.swift",
        "NSMutableString+XML.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
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:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/30] Emitting module CoreGPX
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:27:24: warning: static property 'calendarCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 |     #if !os(Linux)
 26 |     /// Caching Calendar such that it can be used repeatedly without reinitializing it.
 27 |     private static var calendarCache = [Int : Calendar]()
    |                        |- warning: static property 'calendarCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'calendarCache' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'calendarCache' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |     /// Components of Date stored together
 29 |     private var components = DateComponents()
/host/spi-builder-workspace/Classes/GPXError.swift:16:14: warning: associated value 'invalidLatitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
14 |     public enum coordinates: Error {
15 |         /// when lat is outside range (-90˚ to 90˚)
16 |         case invalidLatitude(dueTo: reason)
   |              `- warning: associated value 'invalidLatitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
17 |         /// when lon is outside range (-180˚ to 180˚)
18 |         case invalidLongitude(dueTo: reason)
19 |
20 |         /// reason of why a coordinate error is thrown.
21 |         public enum reason {
   |                     `- note: consider making enum 'reason' conform to the 'Sendable' protocol
22 |             /// < -90˚ (lat) / < -180˚ (lon)
23 |             case underLimit
/host/spi-builder-workspace/Classes/GPXError.swift:18:14: warning: associated value 'invalidLongitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
16 |         case invalidLatitude(dueTo: reason)
17 |         /// when lon is outside range (-180˚ to 180˚)
18 |         case invalidLongitude(dueTo: reason)
   |              `- warning: associated value 'invalidLongitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
19 |
20 |         /// reason of why a coordinate error is thrown.
21 |         public enum reason {
   |                     `- note: consider making enum 'reason' conform to the 'Sendable' protocol
22 |             /// < -90˚ (lat) / < -180˚ (lon)
23 |             case underLimit
[4/33] Compiling CoreGPX GPXWaypoint.swift
[5/33] Compiling CoreGPX GPXWaypointProtocol.swift
[6/33] Compiling CoreGPX NSMutableString+XML.swift
[7/33] Compiling CoreGPX GPXTrack.swift
[8/33] Compiling CoreGPX GPXTrackPoint.swift
[9/33] Compiling CoreGPX GPXTrackSegment.swift
[10/33] Compiling CoreGPX GPXLegacy.swift
[11/33] Compiling CoreGPX GPXLink.swift
[12/33] Compiling CoreGPX GPXMetadata.swift
[13/33] Compiling CoreGPX GPXParser.swift
[14/33] Compiling CoreGPX GPXError.swift
/host/spi-builder-workspace/Classes/GPXError.swift:16:14: warning: associated value 'invalidLatitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
14 |     public enum coordinates: Error {
15 |         /// when lat is outside range (-90˚ to 90˚)
16 |         case invalidLatitude(dueTo: reason)
   |              `- warning: associated value 'invalidLatitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
17 |         /// when lon is outside range (-180˚ to 180˚)
18 |         case invalidLongitude(dueTo: reason)
19 |
20 |         /// reason of why a coordinate error is thrown.
21 |         public enum reason {
   |                     `- note: consider making enum 'reason' conform to the 'Sendable' protocol
22 |             /// < -90˚ (lat) / < -180˚ (lon)
23 |             case underLimit
/host/spi-builder-workspace/Classes/GPXError.swift:18:14: warning: associated value 'invalidLongitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
16 |         case invalidLatitude(dueTo: reason)
17 |         /// when lon is outside range (-180˚ to 180˚)
18 |         case invalidLongitude(dueTo: reason)
   |              `- warning: associated value 'invalidLongitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
19 |
20 |         /// reason of why a coordinate error is thrown.
21 |         public enum reason {
   |                     `- note: consider making enum 'reason' conform to the 'Sendable' protocol
22 |             /// < -90˚ (lat) / < -180˚ (lon)
23 |             case underLimit
[15/33] Compiling CoreGPX GPXExtensions.swift
/host/spi-builder-workspace/Classes/GPXError.swift:16:14: warning: associated value 'invalidLatitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
14 |     public enum coordinates: Error {
15 |         /// when lat is outside range (-90˚ to 90˚)
16 |         case invalidLatitude(dueTo: reason)
   |              `- warning: associated value 'invalidLatitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
17 |         /// when lon is outside range (-180˚ to 180˚)
18 |         case invalidLongitude(dueTo: reason)
19 |
20 |         /// reason of why a coordinate error is thrown.
21 |         public enum reason {
   |                     `- note: consider making enum 'reason' conform to the 'Sendable' protocol
22 |             /// < -90˚ (lat) / < -180˚ (lon)
23 |             case underLimit
/host/spi-builder-workspace/Classes/GPXError.swift:18:14: warning: associated value 'invalidLongitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
16 |         case invalidLatitude(dueTo: reason)
17 |         /// when lon is outside range (-180˚ to 180˚)
18 |         case invalidLongitude(dueTo: reason)
   |              `- warning: associated value 'invalidLongitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
19 |
20 |         /// reason of why a coordinate error is thrown.
21 |         public enum reason {
   |                     `- note: consider making enum 'reason' conform to the 'Sendable' protocol
22 |             /// < -90˚ (lat) / < -180˚ (lon)
23 |             case underLimit
[16/33] Compiling CoreGPX GPXExtensionsElement.swift
/host/spi-builder-workspace/Classes/GPXError.swift:16:14: warning: associated value 'invalidLatitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
14 |     public enum coordinates: Error {
15 |         /// when lat is outside range (-90˚ to 90˚)
16 |         case invalidLatitude(dueTo: reason)
   |              `- warning: associated value 'invalidLatitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
17 |         /// when lon is outside range (-180˚ to 180˚)
18 |         case invalidLongitude(dueTo: reason)
19 |
20 |         /// reason of why a coordinate error is thrown.
21 |         public enum reason {
   |                     `- note: consider making enum 'reason' conform to the 'Sendable' protocol
22 |             /// < -90˚ (lat) / < -180˚ (lon)
23 |             case underLimit
/host/spi-builder-workspace/Classes/GPXError.swift:18:14: warning: associated value 'invalidLongitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
16 |         case invalidLatitude(dueTo: reason)
17 |         /// when lon is outside range (-180˚ to 180˚)
18 |         case invalidLongitude(dueTo: reason)
   |              `- warning: associated value 'invalidLongitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
19 |
20 |         /// reason of why a coordinate error is thrown.
21 |         public enum reason {
   |                     `- note: consider making enum 'reason' conform to the 'Sendable' protocol
22 |             /// < -90˚ (lat) / < -180˚ (lon)
23 |             case underLimit
[17/33] Compiling CoreGPX GPXFix.swift
/host/spi-builder-workspace/Classes/GPXError.swift:16:14: warning: associated value 'invalidLatitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
14 |     public enum coordinates: Error {
15 |         /// when lat is outside range (-90˚ to 90˚)
16 |         case invalidLatitude(dueTo: reason)
   |              `- warning: associated value 'invalidLatitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
17 |         /// when lon is outside range (-180˚ to 180˚)
18 |         case invalidLongitude(dueTo: reason)
19 |
20 |         /// reason of why a coordinate error is thrown.
21 |         public enum reason {
   |                     `- note: consider making enum 'reason' conform to the 'Sendable' protocol
22 |             /// < -90˚ (lat) / < -180˚ (lon)
23 |             case underLimit
/host/spi-builder-workspace/Classes/GPXError.swift:18:14: warning: associated value 'invalidLongitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
16 |         case invalidLatitude(dueTo: reason)
17 |         /// when lon is outside range (-180˚ to 180˚)
18 |         case invalidLongitude(dueTo: reason)
   |              `- warning: associated value 'invalidLongitude(dueTo:)' of 'Sendable'-conforming enum 'coordinates' has non-sendable type 'GPXError.coordinates.reason'; this is an error in the Swift 6 language mode
19 |
20 |         /// reason of why a coordinate error is thrown.
21 |         public enum reason {
   |                     `- note: consider making enum 'reason' conform to the 'Sendable' protocol
22 |             /// < -90˚ (lat) / < -180˚ (lon)
23 |             case underLimit
[18/33] Compiling CoreGPX Converters.swift
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:27:24: warning: static property 'calendarCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 |     #if !os(Linux)
 26 |     /// Caching Calendar such that it can be used repeatedly without reinitializing it.
 27 |     private static var calendarCache = [Int : Calendar]()
    |                        |- warning: static property 'calendarCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'calendarCache' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'calendarCache' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |     /// Components of Date stored together
 29 |     private var components = DateComponents()
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:63:73: error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 61 |         _ = withVaList([year, month, day, hour, minute,
 62 |                         second], { pointer in
 63 |                             vsscanf(NonNilString, "%d-%d-%dT%d:%d:%dZ", pointer)
    |                                                                         `- error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 64 |
 65 |         })
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:93:41: error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 91 |
 92 |         _ = withVaList([year], { pointer in
 93 |             vsscanf(NonNilString, "%d", pointer)
    |                                         `- error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 94 |
 95 |         })
[19/33] Compiling CoreGPX DateTimeParsers.swift
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:27:24: warning: static property 'calendarCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 |     #if !os(Linux)
 26 |     /// Caching Calendar such that it can be used repeatedly without reinitializing it.
 27 |     private static var calendarCache = [Int : Calendar]()
    |                        |- warning: static property 'calendarCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'calendarCache' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'calendarCache' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |     /// Components of Date stored together
 29 |     private var components = DateComponents()
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:63:73: error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 61 |         _ = withVaList([year, month, day, hour, minute,
 62 |                         second], { pointer in
 63 |                             vsscanf(NonNilString, "%d-%d-%dT%d:%d:%dZ", pointer)
    |                                                                         `- error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 64 |
 65 |         })
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:93:41: error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 91 |
 92 |         _ = withVaList([year], { pointer in
 93 |             vsscanf(NonNilString, "%d", pointer)
    |                                         `- error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 94 |
 95 |         })
[20/33] Compiling CoreGPX GPXAuthor.swift
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:27:24: warning: static property 'calendarCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 |     #if !os(Linux)
 26 |     /// Caching Calendar such that it can be used repeatedly without reinitializing it.
 27 |     private static var calendarCache = [Int : Calendar]()
    |                        |- warning: static property 'calendarCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'calendarCache' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'calendarCache' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |     /// Components of Date stored together
 29 |     private var components = DateComponents()
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:63:73: error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 61 |         _ = withVaList([year, month, day, hour, minute,
 62 |                         second], { pointer in
 63 |                             vsscanf(NonNilString, "%d-%d-%dT%d:%d:%dZ", pointer)
    |                                                                         `- error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 64 |
 65 |         })
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:93:41: error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 91 |
 92 |         _ = withVaList([year], { pointer in
 93 |             vsscanf(NonNilString, "%d", pointer)
    |                                         `- error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 94 |
 95 |         })
[21/33] Compiling CoreGPX GPXBounds.swift
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:27:24: warning: static property 'calendarCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 |     #if !os(Linux)
 26 |     /// Caching Calendar such that it can be used repeatedly without reinitializing it.
 27 |     private static var calendarCache = [Int : Calendar]()
    |                        |- warning: static property 'calendarCache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'calendarCache' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'calendarCache' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |     /// Components of Date stored together
 29 |     private var components = DateComponents()
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:63:73: error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 61 |         _ = withVaList([year, month, day, hour, minute,
 62 |                         second], { pointer in
 63 |                             vsscanf(NonNilString, "%d-%d-%dT%d:%d:%dZ", pointer)
    |                                                                         `- error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 64 |
 65 |         })
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:93:41: error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 91 |
 92 |         _ = withVaList([year], { pointer in
 93 |             vsscanf(NonNilString, "%d", pointer)
    |                                         `- error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 94 |
 95 |         })
[22/33] Compiling CoreGPX GPXCompression.swift
[23/33] Compiling CoreGPX GPXCopyright.swift
[24/33] Compiling CoreGPX GPXElement.swift
[25/33] Compiling CoreGPX GPXEmail.swift
[26/33] Compiling CoreGPX GPXRoot.swift
[27/33] Compiling CoreGPX GPXRoute.swift
[28/33] Compiling CoreGPX GPXRoutePoint.swift
[29/33] Compiling CoreGPX GPXRouteProtocol.swift
[30/33] Compiling CoreGPX GPXPerson.swift
[31/33] Compiling CoreGPX GPXPoint.swift
[32/33] Compiling CoreGPX GPXPointSegment.swift
[33/33] Compiling CoreGPX GPXRawElement.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:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
warning: 'spi-builder-workspace': found 4 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /host/spi-builder-workspace/Example/Tests/GPXTest-DualLinks.gpx
    /host/spi-builder-workspace/Example/Tests/wptError.gpx
    /host/spi-builder-workspace/Example/Tests/Info.plist
    /host/spi-builder-workspace/Example/Tests/GPXTest-TrackPointOnly.gpx
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/29] Emitting module CoreGPX
[3/32] Compiling CoreGPX GPXWaypoint.swift
[4/32] Compiling CoreGPX GPXWaypointProtocol.swift
[5/32] Compiling CoreGPX NSMutableString+XML.swift
[6/32] Compiling CoreGPX GPXTrack.swift
[7/32] Compiling CoreGPX GPXTrackPoint.swift
[8/32] Compiling CoreGPX GPXTrackSegment.swift
[9/32] Compiling CoreGPX GPXCompression.swift
[10/32] Compiling CoreGPX GPXCopyright.swift
[11/32] Compiling CoreGPX GPXElement.swift
[12/32] Compiling CoreGPX GPXEmail.swift
[13/32] Compiling CoreGPX GPXPerson.swift
[14/32] Compiling CoreGPX GPXPoint.swift
[15/32] Compiling CoreGPX GPXPointSegment.swift
[16/32] Compiling CoreGPX GPXRawElement.swift
[17/32] Compiling CoreGPX GPXRoot.swift
[18/32] Compiling CoreGPX GPXRoute.swift
[19/32] Compiling CoreGPX GPXRoutePoint.swift
[20/32] Compiling CoreGPX GPXRouteProtocol.swift
[21/32] Compiling CoreGPX GPXError.swift
[22/32] Compiling CoreGPX GPXExtensions.swift
[23/32] Compiling CoreGPX GPXExtensionsElement.swift
[24/32] Compiling CoreGPX GPXFix.swift
[25/32] Compiling CoreGPX GPXLegacy.swift
[26/32] Compiling CoreGPX GPXLink.swift
[27/32] Compiling CoreGPX GPXMetadata.swift
[28/32] Compiling CoreGPX GPXParser.swift
[29/32] Compiling CoreGPX Converters.swift
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:63:73: error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 61 |         _ = withVaList([year, month, day, hour, minute,
 62 |                         second], { pointer in
 63 |                             vsscanf(NonNilString, "%d-%d-%dT%d:%d:%dZ", pointer)
    |                                                                         `- error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 64 |
 65 |         })
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:93:41: error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 91 |
 92 |         _ = withVaList([year], { pointer in
 93 |             vsscanf(NonNilString, "%d", pointer)
    |                                         `- error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 94 |
 95 |         })
[30/32] Compiling CoreGPX DateTimeParsers.swift
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:63:73: error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 61 |         _ = withVaList([year, month, day, hour, minute,
 62 |                         second], { pointer in
 63 |                             vsscanf(NonNilString, "%d-%d-%dT%d:%d:%dZ", pointer)
    |                                                                         `- error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 64 |
 65 |         })
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:93:41: error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 91 |
 92 |         _ = withVaList([year], { pointer in
 93 |             vsscanf(NonNilString, "%d", pointer)
    |                                         `- error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 94 |
 95 |         })
[31/32] Compiling CoreGPX GPXAuthor.swift
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:63:73: error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 61 |         _ = withVaList([year, month, day, hour, minute,
 62 |                         second], { pointer in
 63 |                             vsscanf(NonNilString, "%d-%d-%dT%d:%d:%dZ", pointer)
    |                                                                         `- error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 64 |
 65 |         })
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:93:41: error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 91 |
 92 |         _ = withVaList([year], { pointer in
 93 |             vsscanf(NonNilString, "%d", pointer)
    |                                         `- error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 94 |
 95 |         })
[32/32] Compiling CoreGPX GPXBounds.swift
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:63:73: error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 61 |         _ = withVaList([year, month, day, hour, minute,
 62 |                         second], { pointer in
 63 |                             vsscanf(NonNilString, "%d-%d-%dT%d:%d:%dZ", pointer)
    |                                                                         `- error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 64 |
 65 |         })
/host/spi-builder-workspace/Classes/DateTimeParsers.swift:93:41: error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 91 |
 92 |         _ = withVaList([year], { pointer in
 93 |             vsscanf(NonNilString, "%d", pointer)
    |                                         `- error: cannot convert value of type 'CVaListPointer' to expected argument type '__isoc_va_list' (aka 'UnsafeMutableRawPointer')
 94 |
 95 |         })
BUILD FAILURE 6.1 wasm