Build Information
Successful build of SwiftUIAdvancedMap, reference main (21bb29), with Swift 6.2 for macOS (SPM) on 19 Jun 2025 23:16:55 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/sena-mike/SwiftUIAdvancedMap.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/sena-mike/SwiftUIAdvancedMap
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 21bb290 Update README.md
Cloned https://github.com/sena-mike/SwiftUIAdvancedMap.git
Revision (git rev-parse @):
21bb29037e98905cea0328e2b6306445b07015ee
SUCCESS checkout https://github.com/sena-mike/SwiftUIAdvancedMap.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/sena-mike/SwiftUIAdvancedMap.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/15] Compiling AdvancedMap SwiftUIView.swift
[4/15] Compiling AdvancedMap OverlayRendererFactory.swift
[5/16] Compiling AdvancedMap XViewRepresentableContext+Extras.swift
[6/16] Compiling AdvancedMap Logger.swift
[7/16] Compiling AdvancedMap AdvancedMapModifiers.swift
[8/16] Compiling AdvancedMap AnnotationViewFactory.swift
[9/16] Emitting module AdvancedMap
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:3:1: warning: extension declares a conformance of imported type 'MKMapRect' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
1 | import MapKit
2 |
3 | extension MKMapRect: Equatable {
| |- warning: extension declares a conformance of imported type 'MKMapRect' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public static func == (lhs: MKMapRect, rhs: MKMapRect) -> Bool {
5 | return lhs.origin == rhs.origin && lhs.size == rhs.size
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:9:1: warning: extension declares a conformance of imported type 'MKMapPoint' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
7 | }
8 |
9 | extension MKMapPoint: Equatable {
| |- warning: extension declares a conformance of imported type 'MKMapPoint' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
10 | public static func == (lhs: MKMapPoint, rhs: MKMapPoint) -> Bool {
11 | return (lhs.x ==~ rhs.x) && (lhs.y ==~ rhs.y)
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:15:1: warning: extension declares a conformance of imported type 'MKMapSize' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
13 | }
14 |
15 | extension MKMapSize: Equatable {
| |- warning: extension declares a conformance of imported type 'MKMapSize' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | public static func == (lhs: MKMapSize, rhs: MKMapSize) -> Bool {
17 | return lhs.width ==~ rhs.width
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:21:1: warning: extension declares a conformance of imported type 'CLLocationCoordinate2D' to imported protocol 'Equatable'; this will not behave correctly if the owners of '_LocationEssentials' introduce this conformance in the future
19 | }
20 |
21 | extension CLLocationCoordinate2D: Equatable {
| |- warning: extension declares a conformance of imported type 'CLLocationCoordinate2D' to imported protocol 'Equatable'; this will not behave correctly if the owners of '_LocationEssentials' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
22 | public static func == (lhs: CLLocationCoordinate2D, rhs: CLLocationCoordinate2D) -> Bool {
23 | return (lhs.latitude ==~ rhs.latitude) && (lhs.longitude ==~ rhs.longitude)
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:27:1: warning: extension declares a conformance of imported type 'MKCoordinateRegion' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
25 | }
26 |
27 | extension MKCoordinateRegion: Equatable {
| |- warning: extension declares a conformance of imported type 'MKCoordinateRegion' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
28 | public static func == (lhs: MKCoordinateRegion, rhs: MKCoordinateRegion) -> Bool {
29 | lhs.center == rhs.center && lhs.span == rhs.span
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:33:1: warning: extension declares a conformance of imported type 'MKCoordinateSpan' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
31 | }
32 |
33 | extension MKCoordinateSpan: Equatable {
| |- warning: extension declares a conformance of imported type 'MKCoordinateSpan' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
34 | public static func == (lhs: MKCoordinateSpan, rhs: MKCoordinateSpan) -> Bool {
35 | lhs.latitudeDelta == rhs.latitudeDelta && rhs.longitudeDelta == rhs.longitudeDelta
[10/16] Compiling AdvancedMap AdvancedMap+ViewRepresentable.swift
[11/16] Compiling AdvancedMap AdvancedMap.swift
[12/16] Compiling AdvancedMap MapKit+Equatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:3:1: warning: extension declares a conformance of imported type 'MKMapRect' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
1 | import MapKit
2 |
3 | extension MKMapRect: Equatable {
| |- warning: extension declares a conformance of imported type 'MKMapRect' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public static func == (lhs: MKMapRect, rhs: MKMapRect) -> Bool {
5 | return lhs.origin == rhs.origin && lhs.size == rhs.size
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:9:1: warning: extension declares a conformance of imported type 'MKMapPoint' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
7 | }
8 |
9 | extension MKMapPoint: Equatable {
| |- warning: extension declares a conformance of imported type 'MKMapPoint' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
10 | public static func == (lhs: MKMapPoint, rhs: MKMapPoint) -> Bool {
11 | return (lhs.x ==~ rhs.x) && (lhs.y ==~ rhs.y)
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:15:1: warning: extension declares a conformance of imported type 'MKMapSize' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
13 | }
14 |
15 | extension MKMapSize: Equatable {
| |- warning: extension declares a conformance of imported type 'MKMapSize' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
16 | public static func == (lhs: MKMapSize, rhs: MKMapSize) -> Bool {
17 | return lhs.width ==~ rhs.width
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:21:1: warning: extension declares a conformance of imported type 'CLLocationCoordinate2D' to imported protocol 'Equatable'; this will not behave correctly if the owners of '_LocationEssentials' introduce this conformance in the future
19 | }
20 |
21 | extension CLLocationCoordinate2D: Equatable {
| |- warning: extension declares a conformance of imported type 'CLLocationCoordinate2D' to imported protocol 'Equatable'; this will not behave correctly if the owners of '_LocationEssentials' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
22 | public static func == (lhs: CLLocationCoordinate2D, rhs: CLLocationCoordinate2D) -> Bool {
23 | return (lhs.latitude ==~ rhs.latitude) && (lhs.longitude ==~ rhs.longitude)
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:27:1: warning: extension declares a conformance of imported type 'MKCoordinateRegion' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
25 | }
26 |
27 | extension MKCoordinateRegion: Equatable {
| |- warning: extension declares a conformance of imported type 'MKCoordinateRegion' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
28 | public static func == (lhs: MKCoordinateRegion, rhs: MKCoordinateRegion) -> Bool {
29 | lhs.center == rhs.center && lhs.span == rhs.span
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:33:1: warning: extension declares a conformance of imported type 'MKCoordinateSpan' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
31 | }
32 |
33 | extension MKCoordinateSpan: Equatable {
| |- warning: extension declares a conformance of imported type 'MKCoordinateSpan' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
34 | public static func == (lhs: MKCoordinateSpan, rhs: MKCoordinateSpan) -> Bool {
35 | lhs.latitudeDelta == rhs.latitudeDelta && rhs.longitudeDelta == rhs.longitudeDelta
[13/16] Compiling AdvancedMap MapViewCoordinator.swift
[14/16] Compiling AdvancedMap MKUserLocation+AnnotationViewFactory.swift
[15/16] Compiling AdvancedMap Configuration.swift
[16/16] Compiling AdvancedMap CrossPlatformBridging.swift
Build complete! (8.08s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "SwiftUIAdvancedMap",
"name" : "SwiftUIAdvancedMap",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "16.0"
}
],
"products" : [
{
"name" : "AdvancedMap",
"targets" : [
"AdvancedMap"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "AdvancedMap",
"module_type" : "SwiftTarget",
"name" : "AdvancedMap",
"path" : "Sources/AdvancedMap",
"product_memberships" : [
"AdvancedMap"
],
"sources" : [
"AdvancedMap+ViewRepresentable.swift",
"AdvancedMap.swift",
"AdvancedMapModifiers.swift",
"AnnotationViewFactory.swift",
"Configuration.swift",
"CrossPlatformBridging.swift",
"Logger.swift",
"MKUserLocation+AnnotationViewFactory.swift",
"MapKit+Equatable.swift",
"MapViewCoordinator.swift",
"OverlayRendererFactory.swift",
"SwiftUIView.swift",
"XViewRepresentableContext+Extras.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.