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 Doggie, reference main (d49683), with Swift 6.2 (beta) for Android on 20 Jun 2025 14:00:18 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/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

799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:99: error: cannot find 'MAP_PRIVATE' in scope
795 |                 }
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                                                   `- error: cannot find 'MAP_PRIVATE' in scope
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:37: error: 'nil' requires a contextual type
795 |                 }
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                     `- error: 'nil' requires a contextual type
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:798:35: error: cannot find 'MAP_FAILED' in scope
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                   `- error: cannot find 'MAP_FAILED' in scope
799 |
800 |                 let new_buffer = _address!.bindMemory(to: Element.self, capacity: new_capacity)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:798:89: error: cannot find 'errno' in scope
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                                                                         `- error: cannot find 'errno' in scope
799 |
800 |                 let new_buffer = _address!.bindMemory(to: Element.self, capacity: new_capacity)
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:804:17: error: cannot find 'munmap' in scope
802 |                 new_buffer.moveInitialize(from: old_address, count: count)
803 |
804 |                 munmap(old_address, old_mapped_size)
    |                 `- error: cannot find 'munmap' in scope
805 |
806 |                 self.mapped_size = new_mapped_size
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:814:27: error: cannot find 'posix_madvise' in scope
812 |         func set_memory_advise(_ advise: MemoryAdvise) {
813 |             switch advise {
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
    |                           `- error: cannot find 'posix_madvise' in scope
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:814:63: error: cannot find 'POSIX_MADV_NORMAL' in scope
812 |         func set_memory_advise(_ advise: MemoryAdvise) {
813 |             switch advise {
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
    |                                                               `- error: cannot find 'POSIX_MADV_NORMAL' in scope
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:815:27: error: cannot find 'posix_madvise' in scope
813 |             switch advise {
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
    |                           `- error: cannot find 'posix_madvise' in scope
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:815:63: error: cannot find 'POSIX_MADV_SEQUENTIAL' in scope
813 |             switch advise {
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
    |                                                               `- error: cannot find 'POSIX_MADV_SEQUENTIAL' in scope
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:816:31: error: cannot find 'posix_madvise' in scope
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
    |                               `- error: cannot find 'posix_madvise' in scope
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:816:67: error: cannot find 'POSIX_MADV_RANDOM' in scope
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
    |                                                                   `- error: cannot find 'POSIX_MADV_RANDOM' in scope
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:817:29: error: cannot find 'posix_madvise' in scope
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
    |                             `- error: cannot find 'posix_madvise' in scope
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
819 |             }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:817:65: error: cannot find 'POSIX_MADV_WILLNEED' in scope
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
    |                                                                 `- error: cannot find 'POSIX_MADV_WILLNEED' in scope
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
819 |             }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:818:29: error: cannot find 'posix_madvise' in scope
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
    |                             `- error: cannot find 'posix_madvise' in scope
819 |             }
820 |         }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:818:65: error: cannot find 'POSIX_MADV_DONTNEED' in scope
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
    |                                                                 `- error: cannot find 'POSIX_MADV_DONTNEED' in scope
819 |             }
820 |         }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:824:13: error: cannot find 'mlock' in scope
822 |         @usableFromInline
823 |         func memory_lock() {
824 |             mlock(address, mapped_size)
    |             `- error: cannot find 'mlock' in scope
825 |         }
826 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:829:13: error: cannot find 'munlock' in scope
827 |         @usableFromInline
828 |         func memory_unlock() {
829 |             munlock(address, mapped_size)
    |             `- error: cannot find 'munlock' in scope
830 |         }
831 |     }
[644/669] Compiling DoggieCore Locking.swift
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:287:22: warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
268 |     @inlinable
269 |     @inline(__always)
270 |     public mutating func append<S: Sequence>(contentsOf newElements: S) where S.Element == Element {
    |                                 `- note: 'S' previously declared here
271 |
272 |         let old_count = base.count
    :
285 |
286 |         @inline(__always)
287 |         func _append<S: Sequence>(_ newElements: S) where S.Element == Element {
    |                      `- warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
288 |
289 |             let buffer = UnsafeMutableBufferPointer(start: base.address + old_count, count: underestimatedCount - old_count)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:375:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 |     @inlinable
346 |     @inline(__always)
347 |     public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
    |                                          `- note: 'C' previously declared here
348 |
349 |         precondition(0 <= subRange.lowerBound, "Index out of range.")
    :
373 |
374 |             @inline(__always)
375 |             func _append<C: Collection>(_ newElements: C) where C.Element == Element {
    |                          `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
376 |
377 |                 let buffer = UnsafeMutableBufferPointer(start: base.address + subRange.lowerBound, count: newElements_count)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:402:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 |     @inlinable
346 |     @inline(__always)
347 |     public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
    |                                          `- note: 'C' previously declared here
348 |
349 |         precondition(0 <= subRange.lowerBound, "Index out of range.")
    :
400 |
401 |             @inline(__always)
402 |             func _append<C: Collection>(_ newElements: C) where C.Element == Element {
    |                          `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
403 |
404 |                 let buffer = UnsafeMutableBufferPointer(start: address, count: newElements_count)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:706:76: error: cannot find 'S_IRUSR' in scope
704 |                     #else
705 |
706 |                     fd = open(path, O_RDWR | O_CREAT | O_EXCL | O_CLOEXEC, S_IRUSR | S_IWUSR)
    |                                                                            `- error: cannot find 'S_IRUSR' in scope
707 |
708 |                     #endif
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:706:86: error: cannot find 'S_IWUSR' in scope
704 |                     #else
705 |
706 |                     fd = open(path, O_RDWR | O_CREAT | O_EXCL | O_CLOEXEC, S_IRUSR | S_IWUSR)
    |                                                                                      `- error: cannot find 'S_IWUSR' in scope
707 |
708 |                     #endif
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:710:39: error: cannot find 'errno' in scope
708 |                     #endif
709 |
710 |                     guard fd == -1 && errno == EEXIST else { break }
    |                                       `- error: cannot find 'errno' in scope
711 |                 }
712 |
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:716:78: error: cannot find 'errno' in scope
714 |                 self.path = path
715 |
716 |                 guard fd != -1 else { fatalError("\(String(cString: strerror(errno))): \(path)") }
    |                                                                              `- error: cannot find 'errno' in scope
717 |
718 |                 #if !canImport(Darwin)
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:720:91: error: cannot find 'errno' in scope
718 |                 #if !canImport(Darwin)
719 |
720 |                 guard flock(fd, LOCK_EX) != -1 else { fatalError(String(cString: strerror(errno))) }
    |                                                                                           `- error: cannot find 'errno' in scope
721 |
722 |                 #endif
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:724:106: error: cannot find 'errno' in scope
722 |                 #endif
723 |
724 |                 guard ftruncate(fd, off_t(mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
    |                                                                                                          `- error: cannot find 'errno' in scope
725 |
726 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:726:32: error: cannot find 'mmap' in scope
724 |                 guard ftruncate(fd, off_t(mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
725 |
726 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                `- error: cannot find 'mmap' in scope
727 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
728 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:726:55: error: cannot find 'PROT_READ' in scope
724 |                 guard ftruncate(fd, off_t(mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
725 |
726 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                                       `- error: cannot find 'PROT_READ' in scope
727 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
728 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:726:67: error: cannot find 'PROT_WRITE' in scope
724 |                 guard ftruncate(fd, off_t(mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
725 |
726 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                                                   `- error: cannot find 'PROT_WRITE' in scope
727 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
728 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:726:79: error: cannot find 'MAP_SHARED' in scope
724 |                 guard ftruncate(fd, off_t(mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
725 |
726 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                                                               `- error: cannot find 'MAP_SHARED' in scope
727 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
728 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:726:37: error: 'nil' requires a contextual type
724 |                 guard ftruncate(fd, off_t(mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
725 |
726 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                     `- error: 'nil' requires a contextual type
727 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
728 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:727:35: error: cannot find 'MAP_FAILED' in scope
725 |
726 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
727 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                   `- error: cannot find 'MAP_FAILED' in scope
728 |
729 |                 self.address = _address!.bindMemory(to: Element.self, capacity: capacity)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:727:89: error: cannot find 'errno' in scope
725 |
726 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
727 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                                                                         `- error: cannot find 'errno' in scope
728 |
729 |                 self.address = _address!.bindMemory(to: Element.self, capacity: capacity)
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:736:32: error: cannot find 'mmap' in scope
734 |                 self.path = ""
735 |
736 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                `- error: cannot find 'mmap' in scope
737 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:736:55: error: cannot find 'PROT_READ' in scope
734 |                 self.path = ""
735 |
736 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                       `- error: cannot find 'PROT_READ' in scope
737 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:736:67: error: cannot find 'PROT_WRITE' in scope
734 |                 self.path = ""
735 |
736 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                   `- error: cannot find 'PROT_WRITE' in scope
737 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:736:79: error: cannot find 'MAP_ANONYMOUS' in scope
734 |                 self.path = ""
735 |
736 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                               `- error: cannot find 'MAP_ANONYMOUS' in scope
737 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:736:95: error: cannot find 'MAP_PRIVATE' in scope
734 |                 self.path = ""
735 |
736 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                                               `- error: cannot find 'MAP_PRIVATE' in scope
737 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:736:37: error: 'nil' requires a contextual type
734 |                 self.path = ""
735 |
736 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                     `- error: 'nil' requires a contextual type
737 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:737:35: error: cannot find 'MAP_FAILED' in scope
735 |
736 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
737 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                   `- error: cannot find 'MAP_FAILED' in scope
738 |
739 |                 self.address = _address!.bindMemory(to: Element.self, capacity: capacity)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:737:89: error: cannot find 'errno' in scope
735 |
736 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
737 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                                                                         `- error: cannot find 'errno' in scope
738 |
739 |                 self.address = _address!.bindMemory(to: Element.self, capacity: capacity)
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:749:13: error: cannot find 'munmap' in scope
747 |             }
748 |
749 |             munmap(address, mapped_size)
    |             `- error: cannot find 'munmap' in scope
750 |
751 |             if fileBacked {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:770:17: error: cannot find 'munmap' in scope
768 |             if fileBacked {
769 |
770 |                 munmap(old_address, old_mapped_size)
    |                 `- error: cannot find 'munmap' in scope
771 |
772 |                 self.mapped_size = new_mapped_size
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:774:115: error: cannot find 'errno' in scope
772 |                 self.mapped_size = new_mapped_size
773 |
774 |                 guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
    |                                                                                                                   `- error: cannot find 'errno' in scope
775 |
776 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:776:32: error: cannot find 'mmap' in scope
774 |                 guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
775 |
776 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                `- error: cannot find 'mmap' in scope
777 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
778 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:776:59: error: cannot find 'PROT_READ' in scope
774 |                 guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
775 |
776 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                                           `- error: cannot find 'PROT_READ' in scope
777 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
778 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:776:71: error: cannot find 'PROT_WRITE' in scope
774 |                 guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
775 |
776 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                                                       `- error: cannot find 'PROT_WRITE' in scope
777 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
778 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:776:83: error: cannot find 'MAP_SHARED' in scope
774 |                 guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
775 |
776 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                                                                   `- error: cannot find 'MAP_SHARED' in scope
777 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
778 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:776:37: error: 'nil' requires a contextual type
774 |                 guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
775 |
776 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                     `- error: 'nil' requires a contextual type
777 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
778 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:777:35: error: cannot find 'MAP_FAILED' in scope
775 |
776 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
777 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                   `- error: cannot find 'MAP_FAILED' in scope
778 |
779 |                 self.address = _address!.bindMemory(to: Element.self, capacity: new_capacity)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:777:89: error: cannot find 'errno' in scope
775 |
776 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
777 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                                                                         `- error: cannot find 'errno' in scope
778 |
779 |                 self.address = _address!.bindMemory(to: Element.self, capacity: new_capacity)
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:786:33: error: cannot find 'mmap' in scope
784 |                 let _tail = UnsafeMutableRawPointer(old_address) + old_mapped_size
785 |
786 |                 let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                 `- error: cannot find 'mmap' in scope
787 |
788 |                 if _extended != MAP_FAILED {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:786:61: error: cannot find 'PROT_READ' in scope
784 |                 let _tail = UnsafeMutableRawPointer(old_address) + old_mapped_size
785 |
786 |                 let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                             `- error: cannot find 'PROT_READ' in scope
787 |
788 |                 if _extended != MAP_FAILED {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:786:73: error: cannot find 'PROT_WRITE' in scope
784 |                 let _tail = UnsafeMutableRawPointer(old_address) + old_mapped_size
785 |
786 |                 let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                         `- error: cannot find 'PROT_WRITE' in scope
787 |
788 |                 if _extended != MAP_FAILED {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:786:85: error: cannot find 'MAP_ANONYMOUS' in scope
784 |                 let _tail = UnsafeMutableRawPointer(old_address) + old_mapped_size
785 |
786 |                 let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                                     `- error: cannot find 'MAP_ANONYMOUS' in scope
787 |
788 |                 if _extended != MAP_FAILED {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:786:101: error: cannot find 'MAP_PRIVATE' in scope
784 |                 let _tail = UnsafeMutableRawPointer(old_address) + old_mapped_size
785 |
786 |                 let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                                                     `- error: cannot find 'MAP_PRIVATE' in scope
787 |
788 |                 if _extended != MAP_FAILED {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:788:33: error: cannot find 'MAP_FAILED' in scope
786 |                 let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
787 |
788 |                 if _extended != MAP_FAILED {
    |                                 `- error: cannot find 'MAP_FAILED' in scope
789 |                     if _extended == _tail {
790 |                         self.mapped_size = new_mapped_size
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:793:25: error: cannot find 'munmap' in scope
791 |                         return
792 |                     } else {
793 |                         munmap(_extended, _extended_size)
    |                         `- error: cannot find 'munmap' in scope
794 |                     }
795 |                 }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:32: error: cannot find 'mmap' in scope
795 |                 }
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                `- error: cannot find 'mmap' in scope
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:59: error: cannot find 'PROT_READ' in scope
795 |                 }
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                           `- error: cannot find 'PROT_READ' in scope
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:71: error: cannot find 'PROT_WRITE' in scope
795 |                 }
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                       `- error: cannot find 'PROT_WRITE' in scope
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:83: error: cannot find 'MAP_ANONYMOUS' in scope
795 |                 }
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                                   `- error: cannot find 'MAP_ANONYMOUS' in scope
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:99: error: cannot find 'MAP_PRIVATE' in scope
795 |                 }
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                                                   `- error: cannot find 'MAP_PRIVATE' in scope
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:37: error: 'nil' requires a contextual type
795 |                 }
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                     `- error: 'nil' requires a contextual type
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:798:35: error: cannot find 'MAP_FAILED' in scope
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                   `- error: cannot find 'MAP_FAILED' in scope
799 |
800 |                 let new_buffer = _address!.bindMemory(to: Element.self, capacity: new_capacity)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:798:89: error: cannot find 'errno' in scope
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                                                                         `- error: cannot find 'errno' in scope
799 |
800 |                 let new_buffer = _address!.bindMemory(to: Element.self, capacity: new_capacity)
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:804:17: error: cannot find 'munmap' in scope
802 |                 new_buffer.moveInitialize(from: old_address, count: count)
803 |
804 |                 munmap(old_address, old_mapped_size)
    |                 `- error: cannot find 'munmap' in scope
805 |
806 |                 self.mapped_size = new_mapped_size
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:814:27: error: cannot find 'posix_madvise' in scope
812 |         func set_memory_advise(_ advise: MemoryAdvise) {
813 |             switch advise {
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
    |                           `- error: cannot find 'posix_madvise' in scope
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:814:63: error: cannot find 'POSIX_MADV_NORMAL' in scope
812 |         func set_memory_advise(_ advise: MemoryAdvise) {
813 |             switch advise {
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
    |                                                               `- error: cannot find 'POSIX_MADV_NORMAL' in scope
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:815:27: error: cannot find 'posix_madvise' in scope
813 |             switch advise {
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
    |                           `- error: cannot find 'posix_madvise' in scope
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:815:63: error: cannot find 'POSIX_MADV_SEQUENTIAL' in scope
813 |             switch advise {
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
    |                                                               `- error: cannot find 'POSIX_MADV_SEQUENTIAL' in scope
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:816:31: error: cannot find 'posix_madvise' in scope
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
    |                               `- error: cannot find 'posix_madvise' in scope
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:816:67: error: cannot find 'POSIX_MADV_RANDOM' in scope
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
    |                                                                   `- error: cannot find 'POSIX_MADV_RANDOM' in scope
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:817:29: error: cannot find 'posix_madvise' in scope
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
    |                             `- error: cannot find 'posix_madvise' in scope
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
819 |             }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:817:65: error: cannot find 'POSIX_MADV_WILLNEED' in scope
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
    |                                                                 `- error: cannot find 'POSIX_MADV_WILLNEED' in scope
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
819 |             }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:818:29: error: cannot find 'posix_madvise' in scope
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
    |                             `- error: cannot find 'posix_madvise' in scope
819 |             }
820 |         }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:818:65: error: cannot find 'POSIX_MADV_DONTNEED' in scope
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
    |                                                                 `- error: cannot find 'POSIX_MADV_DONTNEED' in scope
819 |             }
820 |         }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:824:13: error: cannot find 'mlock' in scope
822 |         @usableFromInline
823 |         func memory_lock() {
824 |             mlock(address, mapped_size)
    |             `- error: cannot find 'mlock' in scope
825 |         }
826 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:829:13: error: cannot find 'munlock' in scope
827 |         @usableFromInline
828 |         func memory_unlock() {
829 |             munlock(address, mapped_size)
    |             `- error: cannot find 'munlock' in scope
830 |         }
831 |     }
[645/669] Compiling DoggieCore MappedBuffer.swift
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:287:22: warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
268 |     @inlinable
269 |     @inline(__always)
270 |     public mutating func append<S: Sequence>(contentsOf newElements: S) where S.Element == Element {
    |                                 `- note: 'S' previously declared here
271 |
272 |         let old_count = base.count
    :
285 |
286 |         @inline(__always)
287 |         func _append<S: Sequence>(_ newElements: S) where S.Element == Element {
    |                      `- warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
288 |
289 |             let buffer = UnsafeMutableBufferPointer(start: base.address + old_count, count: underestimatedCount - old_count)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:375:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 |     @inlinable
346 |     @inline(__always)
347 |     public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
    |                                          `- note: 'C' previously declared here
348 |
349 |         precondition(0 <= subRange.lowerBound, "Index out of range.")
    :
373 |
374 |             @inline(__always)
375 |             func _append<C: Collection>(_ newElements: C) where C.Element == Element {
    |                          `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
376 |
377 |                 let buffer = UnsafeMutableBufferPointer(start: base.address + subRange.lowerBound, count: newElements_count)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:402:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 |     @inlinable
346 |     @inline(__always)
347 |     public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
    |                                          `- note: 'C' previously declared here
348 |
349 |         precondition(0 <= subRange.lowerBound, "Index out of range.")
    :
400 |
401 |             @inline(__always)
402 |             func _append<C: Collection>(_ newElements: C) where C.Element == Element {
    |                          `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
403 |
404 |                 let buffer = UnsafeMutableBufferPointer(start: address, count: newElements_count)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:706:76: error: cannot find 'S_IRUSR' in scope
704 |                     #else
705 |
706 |                     fd = open(path, O_RDWR | O_CREAT | O_EXCL | O_CLOEXEC, S_IRUSR | S_IWUSR)
    |                                                                            `- error: cannot find 'S_IRUSR' in scope
707 |
708 |                     #endif
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:706:86: error: cannot find 'S_IWUSR' in scope
704 |                     #else
705 |
706 |                     fd = open(path, O_RDWR | O_CREAT | O_EXCL | O_CLOEXEC, S_IRUSR | S_IWUSR)
    |                                                                                      `- error: cannot find 'S_IWUSR' in scope
707 |
708 |                     #endif
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:710:39: error: cannot find 'errno' in scope
708 |                     #endif
709 |
710 |                     guard fd == -1 && errno == EEXIST else { break }
    |                                       `- error: cannot find 'errno' in scope
711 |                 }
712 |
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:716:78: error: cannot find 'errno' in scope
714 |                 self.path = path
715 |
716 |                 guard fd != -1 else { fatalError("\(String(cString: strerror(errno))): \(path)") }
    |                                                                              `- error: cannot find 'errno' in scope
717 |
718 |                 #if !canImport(Darwin)
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:720:91: error: cannot find 'errno' in scope
718 |                 #if !canImport(Darwin)
719 |
720 |                 guard flock(fd, LOCK_EX) != -1 else { fatalError(String(cString: strerror(errno))) }
    |                                                                                           `- error: cannot find 'errno' in scope
721 |
722 |                 #endif
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:724:106: error: cannot find 'errno' in scope
722 |                 #endif
723 |
724 |                 guard ftruncate(fd, off_t(mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
    |                                                                                                          `- error: cannot find 'errno' in scope
725 |
726 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:726:32: error: cannot find 'mmap' in scope
724 |                 guard ftruncate(fd, off_t(mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
725 |
726 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                `- error: cannot find 'mmap' in scope
727 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
728 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:726:55: error: cannot find 'PROT_READ' in scope
724 |                 guard ftruncate(fd, off_t(mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
725 |
726 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                                       `- error: cannot find 'PROT_READ' in scope
727 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
728 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:726:67: error: cannot find 'PROT_WRITE' in scope
724 |                 guard ftruncate(fd, off_t(mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
725 |
726 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                                                   `- error: cannot find 'PROT_WRITE' in scope
727 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
728 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:726:79: error: cannot find 'MAP_SHARED' in scope
724 |                 guard ftruncate(fd, off_t(mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
725 |
726 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                                                               `- error: cannot find 'MAP_SHARED' in scope
727 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
728 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:726:37: error: 'nil' requires a contextual type
724 |                 guard ftruncate(fd, off_t(mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
725 |
726 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                     `- error: 'nil' requires a contextual type
727 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
728 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:727:35: error: cannot find 'MAP_FAILED' in scope
725 |
726 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
727 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                   `- error: cannot find 'MAP_FAILED' in scope
728 |
729 |                 self.address = _address!.bindMemory(to: Element.self, capacity: capacity)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:727:89: error: cannot find 'errno' in scope
725 |
726 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
727 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                                                                         `- error: cannot find 'errno' in scope
728 |
729 |                 self.address = _address!.bindMemory(to: Element.self, capacity: capacity)
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:736:32: error: cannot find 'mmap' in scope
734 |                 self.path = ""
735 |
736 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                `- error: cannot find 'mmap' in scope
737 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:736:55: error: cannot find 'PROT_READ' in scope
734 |                 self.path = ""
735 |
736 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                       `- error: cannot find 'PROT_READ' in scope
737 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:736:67: error: cannot find 'PROT_WRITE' in scope
734 |                 self.path = ""
735 |
736 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                   `- error: cannot find 'PROT_WRITE' in scope
737 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:736:79: error: cannot find 'MAP_ANONYMOUS' in scope
734 |                 self.path = ""
735 |
736 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                               `- error: cannot find 'MAP_ANONYMOUS' in scope
737 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:736:95: error: cannot find 'MAP_PRIVATE' in scope
734 |                 self.path = ""
735 |
736 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                                               `- error: cannot find 'MAP_PRIVATE' in scope
737 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:736:37: error: 'nil' requires a contextual type
734 |                 self.path = ""
735 |
736 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                     `- error: 'nil' requires a contextual type
737 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
738 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:737:35: error: cannot find 'MAP_FAILED' in scope
735 |
736 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
737 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                   `- error: cannot find 'MAP_FAILED' in scope
738 |
739 |                 self.address = _address!.bindMemory(to: Element.self, capacity: capacity)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:737:89: error: cannot find 'errno' in scope
735 |
736 |                 let _address = mmap(nil, mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
737 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                                                                         `- error: cannot find 'errno' in scope
738 |
739 |                 self.address = _address!.bindMemory(to: Element.self, capacity: capacity)
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:749:13: error: cannot find 'munmap' in scope
747 |             }
748 |
749 |             munmap(address, mapped_size)
    |             `- error: cannot find 'munmap' in scope
750 |
751 |             if fileBacked {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:770:17: error: cannot find 'munmap' in scope
768 |             if fileBacked {
769 |
770 |                 munmap(old_address, old_mapped_size)
    |                 `- error: cannot find 'munmap' in scope
771 |
772 |                 self.mapped_size = new_mapped_size
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:774:115: error: cannot find 'errno' in scope
772 |                 self.mapped_size = new_mapped_size
773 |
774 |                 guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
    |                                                                                                                   `- error: cannot find 'errno' in scope
775 |
776 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:776:32: error: cannot find 'mmap' in scope
774 |                 guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
775 |
776 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                `- error: cannot find 'mmap' in scope
777 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
778 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:776:59: error: cannot find 'PROT_READ' in scope
774 |                 guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
775 |
776 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                                           `- error: cannot find 'PROT_READ' in scope
777 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
778 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:776:71: error: cannot find 'PROT_WRITE' in scope
774 |                 guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
775 |
776 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                                                       `- error: cannot find 'PROT_WRITE' in scope
777 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
778 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:776:83: error: cannot find 'MAP_SHARED' in scope
774 |                 guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
775 |
776 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                                                                   `- error: cannot find 'MAP_SHARED' in scope
777 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
778 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:776:37: error: 'nil' requires a contextual type
774 |                 guard ftruncate(self.fd, off_t(new_mapped_size)) != -1 else { fatalError(String(cString: strerror(errno))) }
775 |
776 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
    |                                     `- error: 'nil' requires a contextual type
777 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
778 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:777:35: error: cannot find 'MAP_FAILED' in scope
775 |
776 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
777 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                   `- error: cannot find 'MAP_FAILED' in scope
778 |
779 |                 self.address = _address!.bindMemory(to: Element.self, capacity: new_capacity)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:777:89: error: cannot find 'errno' in scope
775 |
776 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)
777 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                                                                         `- error: cannot find 'errno' in scope
778 |
779 |                 self.address = _address!.bindMemory(to: Element.self, capacity: new_capacity)
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:786:33: error: cannot find 'mmap' in scope
784 |                 let _tail = UnsafeMutableRawPointer(old_address) + old_mapped_size
785 |
786 |                 let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                 `- error: cannot find 'mmap' in scope
787 |
788 |                 if _extended != MAP_FAILED {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:786:61: error: cannot find 'PROT_READ' in scope
784 |                 let _tail = UnsafeMutableRawPointer(old_address) + old_mapped_size
785 |
786 |                 let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                             `- error: cannot find 'PROT_READ' in scope
787 |
788 |                 if _extended != MAP_FAILED {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:786:73: error: cannot find 'PROT_WRITE' in scope
784 |                 let _tail = UnsafeMutableRawPointer(old_address) + old_mapped_size
785 |
786 |                 let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                         `- error: cannot find 'PROT_WRITE' in scope
787 |
788 |                 if _extended != MAP_FAILED {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:786:85: error: cannot find 'MAP_ANONYMOUS' in scope
784 |                 let _tail = UnsafeMutableRawPointer(old_address) + old_mapped_size
785 |
786 |                 let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                                     `- error: cannot find 'MAP_ANONYMOUS' in scope
787 |
788 |                 if _extended != MAP_FAILED {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:786:101: error: cannot find 'MAP_PRIVATE' in scope
784 |                 let _tail = UnsafeMutableRawPointer(old_address) + old_mapped_size
785 |
786 |                 let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                                                     `- error: cannot find 'MAP_PRIVATE' in scope
787 |
788 |                 if _extended != MAP_FAILED {
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:788:33: error: cannot find 'MAP_FAILED' in scope
786 |                 let _extended = mmap(_tail, _extended_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
787 |
788 |                 if _extended != MAP_FAILED {
    |                                 `- error: cannot find 'MAP_FAILED' in scope
789 |                     if _extended == _tail {
790 |                         self.mapped_size = new_mapped_size
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:793:25: error: cannot find 'munmap' in scope
791 |                         return
792 |                     } else {
793 |                         munmap(_extended, _extended_size)
    |                         `- error: cannot find 'munmap' in scope
794 |                     }
795 |                 }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:32: error: cannot find 'mmap' in scope
795 |                 }
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                `- error: cannot find 'mmap' in scope
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:59: error: cannot find 'PROT_READ' in scope
795 |                 }
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                           `- error: cannot find 'PROT_READ' in scope
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:71: error: cannot find 'PROT_WRITE' in scope
795 |                 }
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                       `- error: cannot find 'PROT_WRITE' in scope
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:83: error: cannot find 'MAP_ANONYMOUS' in scope
795 |                 }
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                                   `- error: cannot find 'MAP_ANONYMOUS' in scope
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:99: error: cannot find 'MAP_PRIVATE' in scope
795 |                 }
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                                                                                   `- error: cannot find 'MAP_PRIVATE' in scope
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:797:37: error: 'nil' requires a contextual type
795 |                 }
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
    |                                     `- error: 'nil' requires a contextual type
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
799 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:798:35: error: cannot find 'MAP_FAILED' in scope
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                   `- error: cannot find 'MAP_FAILED' in scope
799 |
800 |                 let new_buffer = _address!.bindMemory(to: Element.self, capacity: new_capacity)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:798:89: error: cannot find 'errno' in scope
796 |
797 |                 let _address = mmap(nil, new_mapped_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, fd, 0)
798 |                 guard _address != MAP_FAILED else { fatalError(String(cString: strerror(errno))) }
    |                                                                                         `- error: cannot find 'errno' in scope
799 |
800 |                 let new_buffer = _address!.bindMemory(to: Element.self, capacity: new_capacity)
/root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:804:17: error: cannot find 'munmap' in scope
802 |                 new_buffer.moveInitialize(from: old_address, count: count)
803 |
804 |                 munmap(old_address, old_mapped_size)
    |                 `- error: cannot find 'munmap' in scope
805 |
806 |                 self.mapped_size = new_mapped_size
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:814:27: error: cannot find 'posix_madvise' in scope
812 |         func set_memory_advise(_ advise: MemoryAdvise) {
813 |             switch advise {
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
    |                           `- error: cannot find 'posix_madvise' in scope
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:814:63: error: cannot find 'POSIX_MADV_NORMAL' in scope
812 |         func set_memory_advise(_ advise: MemoryAdvise) {
813 |             switch advise {
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
    |                                                               `- error: cannot find 'POSIX_MADV_NORMAL' in scope
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:815:27: error: cannot find 'posix_madvise' in scope
813 |             switch advise {
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
    |                           `- error: cannot find 'posix_madvise' in scope
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:815:63: error: cannot find 'POSIX_MADV_SEQUENTIAL' in scope
813 |             switch advise {
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
    |                                                               `- error: cannot find 'POSIX_MADV_SEQUENTIAL' in scope
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:816:31: error: cannot find 'posix_madvise' in scope
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
    |                               `- error: cannot find 'posix_madvise' in scope
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:816:67: error: cannot find 'POSIX_MADV_RANDOM' in scope
814 |             case .normal: posix_madvise(address, mapped_size, POSIX_MADV_NORMAL)
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
    |                                                                   `- error: cannot find 'POSIX_MADV_RANDOM' in scope
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:817:29: error: cannot find 'posix_madvise' in scope
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
    |                             `- error: cannot find 'posix_madvise' in scope
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
819 |             }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:817:65: error: cannot find 'POSIX_MADV_WILLNEED' in scope
815 |             case .random: posix_madvise(address, mapped_size, POSIX_MADV_SEQUENTIAL)
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
    |                                                                 `- error: cannot find 'POSIX_MADV_WILLNEED' in scope
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
819 |             }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:818:29: error: cannot find 'posix_madvise' in scope
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
    |                             `- error: cannot find 'posix_madvise' in scope
819 |             }
820 |         }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:818:65: error: cannot find 'POSIX_MADV_DONTNEED' in scope
816 |             case .sequential: posix_madvise(address, mapped_size, POSIX_MADV_RANDOM)
817 |             case .willNeed: posix_madvise(address, mapped_size, POSIX_MADV_WILLNEED)
818 |             case .dontNeed: posix_madvise(address, mapped_size, POSIX_MADV_DONTNEED)
    |                                                                 `- error: cannot find 'POSIX_MADV_DONTNEED' in scope
819 |             }
820 |         }
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:824:13: error: cannot find 'mlock' in scope
822 |         @usableFromInline
823 |         func memory_lock() {
824 |             mlock(address, mapped_size)
    |             `- error: cannot find 'mlock' in scope
825 |         }
826 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:829:13: error: cannot find 'munlock' in scope
827 |         @usableFromInline
828 |         func memory_unlock() {
829 |             munlock(address, mapped_size)
    |             `- error: cannot find 'munlock' in scope
830 |         }
831 |     }
[646/669] Compiling DoggieCore Inflate.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
   |                               `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
  |               `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 |     public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 |     public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public init?(string: __shared String)
  4 |     public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
   |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
   |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
   |                                      `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct DateComponents : Hashable, Equatable, Sendable {
   |               `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
 3 |     public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
 4 |     public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
   |                                `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct TimeZone : Hashable, Equatable, Sendable {
   |               `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
 3 |     public init?(identifier: __shared String)
 4 |     public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
   |                                `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Calendar : Hashable, Equatable, Sendable {
    |               `- note: 'Calendar' declares conformance to protocol 'Sendable' here
  3 |     public enum Identifier : Sendable, CustomDebugStringConvertible {
  4 |         case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
   |                              `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Locale : Hashable, Equatable, Sendable {
    |               `- note: 'Locale' declares conformance to protocol 'Sendable' here
  3 |     public enum LanguageDirection : UInt, Sendable {
  4 |         case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
   |                            `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
 2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
   |               `- note: 'UUID' declares conformance to protocol 'Sendable' here
 3 |     public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
 4 |     public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
   |                                  `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:12:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
   | `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
13 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
   |                                         `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:12:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedDictionary: @unchecked Sendable
   | `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
13 | where Key: Sendable, Value: Sendable {}
14 |
[647/669] Compiling DoggieCore zlib.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
   |                               `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
  |               `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 |     public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 |     public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public init?(string: __shared String)
  4 |     public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
   |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
   |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
   |                                      `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct DateComponents : Hashable, Equatable, Sendable {
   |               `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
 3 |     public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
 4 |     public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
   |                                `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct TimeZone : Hashable, Equatable, Sendable {
   |               `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
 3 |     public init?(identifier: __shared String)
 4 |     public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
   |                                `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Calendar : Hashable, Equatable, Sendable {
    |               `- note: 'Calendar' declares conformance to protocol 'Sendable' here
  3 |     public enum Identifier : Sendable, CustomDebugStringConvertible {
  4 |         case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
   |                              `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Locale : Hashable, Equatable, Sendable {
    |               `- note: 'Locale' declares conformance to protocol 'Sendable' here
  3 |     public enum LanguageDirection : UInt, Sendable {
  4 |         case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
   |                            `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
 2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
   |               `- note: 'UUID' declares conformance to protocol 'Sendable' here
 3 |     public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
 4 |     public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
   |                                  `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:12:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
   | `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
13 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
   |                                         `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:12:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedDictionary: @unchecked Sendable
   | `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
13 | where Key: Sendable, Value: Sendable {}
14 |
[648/669] Compiling DoggieCore Sendable.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
   |                               `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
  |               `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 |     public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 |     public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public init?(string: __shared String)
  4 |     public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
   |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
   |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
   |                                      `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct DateComponents : Hashable, Equatable, Sendable {
   |               `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
 3 |     public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
 4 |     public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
   |                                `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct TimeZone : Hashable, Equatable, Sendable {
   |               `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
 3 |     public init?(identifier: __shared String)
 4 |     public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
   |                                `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Calendar : Hashable, Equatable, Sendable {
    |               `- note: 'Calendar' declares conformance to protocol 'Sendable' here
  3 |     public enum Identifier : Sendable, CustomDebugStringConvertible {
  4 |         case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
   |                              `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Locale : Hashable, Equatable, Sendable {
    |               `- note: 'Locale' declares conformance to protocol 'Sendable' here
  3 |     public enum LanguageDirection : UInt, Sendable {
  4 |         case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
   |                            `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
 2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
   |               `- note: 'UUID' declares conformance to protocol 'Sendable' here
 3 |     public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
 4 |     public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
   |                                  `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:12:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
   | `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
13 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
   |                                         `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:12:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedDictionary: @unchecked Sendable
   | `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
13 | where Key: Sendable, Value: Sendable {}
14 |
[649/669] Compiling DoggieCore SerialRunLoop.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
   |                               `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
  |               `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 |     public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 |     public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public init?(string: __shared String)
  4 |     public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
   |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
   |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
   |                                      `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct DateComponents : Hashable, Equatable, Sendable {
   |               `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
 3 |     public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
 4 |     public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
   |                                `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct TimeZone : Hashable, Equatable, Sendable {
   |               `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
 3 |     public init?(identifier: __shared String)
 4 |     public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
   |                                `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Calendar : Hashable, Equatable, Sendable {
    |               `- note: 'Calendar' declares conformance to protocol 'Sendable' here
  3 |     public enum Identifier : Sendable, CustomDebugStringConvertible {
  4 |         case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
   |                              `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Locale : Hashable, Equatable, Sendable {
    |               `- note: 'Locale' declares conformance to protocol 'Sendable' here
  3 |     public enum LanguageDirection : UInt, Sendable {
  4 |         case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
   |                            `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
 2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
   |               `- note: 'UUID' declares conformance to protocol 'Sendable' here
 3 |     public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
 4 |     public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
   |                                  `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:12:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
   | `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
13 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
   |                                         `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:12:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedDictionary: @unchecked Sendable
   | `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
13 | where Key: Sendable, Value: Sendable {}
14 |
[650/669] Compiling DoggieCore UnsafeSendable.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
   |                               `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
  |               `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 |     public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 |     public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public init?(string: __shared String)
  4 |     public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
   |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
   |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
   |                                      `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct DateComponents : Hashable, Equatable, Sendable {
   |               `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
 3 |     public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
 4 |     public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
   |                                `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct TimeZone : Hashable, Equatable, Sendable {
   |               `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
 3 |     public init?(identifier: __shared String)
 4 |     public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
   |                                `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Calendar : Hashable, Equatable, Sendable {
    |               `- note: 'Calendar' declares conformance to protocol 'Sendable' here
  3 |     public enum Identifier : Sendable, CustomDebugStringConvertible {
  4 |         case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
   |                              `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Locale : Hashable, Equatable, Sendable {
    |               `- note: 'Locale' declares conformance to protocol 'Sendable' here
  3 |     public enum LanguageDirection : UInt, Sendable {
  4 |         case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
   |                            `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
 2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
   |               `- note: 'UUID' declares conformance to protocol 'Sendable' here
 3 |     public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
 4 |     public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
   |                                  `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:12:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
   | `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
13 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
   |                                         `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:12:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedDictionary: @unchecked Sendable
   | `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
13 | where Key: Sendable, Value: Sendable {}
14 |
[651/669] Compiling DoggieCore Exported.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
   |                               `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
  |               `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 |     public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 |     public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public init?(string: __shared String)
  4 |     public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
   |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
   |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
   |                                      `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct DateComponents : Hashable, Equatable, Sendable {
   |               `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
 3 |     public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
 4 |     public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
   |                                `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct TimeZone : Hashable, Equatable, Sendable {
   |               `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
 3 |     public init?(identifier: __shared String)
 4 |     public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
   |                                `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Calendar : Hashable, Equatable, Sendable {
    |               `- note: 'Calendar' declares conformance to protocol 'Sendable' here
  3 |     public enum Identifier : Sendable, CustomDebugStringConvertible {
  4 |         case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
   |                              `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Locale : Hashable, Equatable, Sendable {
    |               `- note: 'Locale' declares conformance to protocol 'Sendable' here
  3 |     public enum LanguageDirection : UInt, Sendable {
  4 |         case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
   |                            `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
 2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
   |               `- note: 'UUID' declares conformance to protocol 'Sendable' here
 3 |     public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
 4 |     public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
   |                                  `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:12:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
   | `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
13 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
   |                                         `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:12:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedDictionary: @unchecked Sendable
   | `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
13 | where Key: Sendable, Value: Sendable {}
14 |
[652/669] Compiling DoggieCore Algorithm.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
   |                               `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
  |               `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 |     public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 |     public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public init?(string: __shared String)
  4 |     public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
   |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
   |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
   |                                      `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct DateComponents : Hashable, Equatable, Sendable {
   |               `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
 3 |     public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
 4 |     public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
   |                                `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct TimeZone : Hashable, Equatable, Sendable {
   |               `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
 3 |     public init?(identifier: __shared String)
 4 |     public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
   |                                `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Calendar : Hashable, Equatable, Sendable {
    |               `- note: 'Calendar' declares conformance to protocol 'Sendable' here
  3 |     public enum Identifier : Sendable, CustomDebugStringConvertible {
  4 |         case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
   |                              `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Locale : Hashable, Equatable, Sendable {
    |               `- note: 'Locale' declares conformance to protocol 'Sendable' here
  3 |     public enum LanguageDirection : UInt, Sendable {
  4 |         case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
   |                            `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
 2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
   |               `- note: 'UUID' declares conformance to protocol 'Sendable' here
 3 |     public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
 4 |     public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
   |                                  `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:12:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
   | `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
13 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
   |                                         `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:12:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedDictionary: @unchecked Sendable
   | `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
13 | where Key: Sendable, Value: Sendable {}
14 |
[653/669] Compiling DoggieCore Cache.swift
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
   |                               `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
  |               `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 |     public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 |     public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public init?(string: __shared String)
  4 |     public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
   |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
   |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
   |                                      `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct DateComponents : Hashable, Equatable, Sendable {
   |               `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
 3 |     public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
 4 |     public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
   |                                `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct TimeZone : Hashable, Equatable, Sendable {
   |               `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
 3 |     public init?(identifier: __shared String)
 4 |     public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
   |                                `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Calendar : Hashable, Equatable, Sendable {
    |               `- note: 'Calendar' declares conformance to protocol 'Sendable' here
  3 |     public enum Identifier : Sendable, CustomDebugStringConvertible {
  4 |         case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
   |                              `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Locale : Hashable, Equatable, Sendable {
    |               `- note: 'Locale' declares conformance to protocol 'Sendable' here
  3 |     public enum LanguageDirection : UInt, Sendable {
  4 |         case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
   |                            `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
 2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
   |               `- note: 'UUID' declares conformance to protocol 'Sendable' here
 3 |     public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
 4 |     public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
   |                                  `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:12:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
   | `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
13 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
   |                                         `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:12:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedDictionary: @unchecked Sendable
   | `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
13 | where Key: Sendable, Value: Sendable {}
14 |
[654/669] Compiling DoggieCore String.swift
[655/669] Compiling DoggieCore replaceValue.swift
[656/669] Compiling DoggieCore SDXMLAttribute.swift
[657/669] Compiling DoggieCore SDXMLDocument.swift
[658/669] Compiling DoggieCore SDXMLElement.swift
[659/669] Compiling DoggieCore SDXMLParser.swift
[660/669] Compiling DoggieCore SDXMLString.swift
[661/669] Compiling DoggieCore AppleCompression.swift
[662/669] Compiling DoggieCore AppleExported.swift
[663/669] Compiling DoggieCore Metal.swift
[664/669] Compiling DoggieCore NSItemProvider.swift
[665/669] Compiling DoggieCore CompressionCodec.swift
[666/669] Compiling DoggieCore BrotliDecoder.swift
[667/669] Compiling DoggieCore BrotliEncoder.swift
[668/669] Compiling DoggieCore Deflate.swift
[669/669] Emitting module DoggieCore
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
   |                               `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Decimal:2:15: note: 'Decimal' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Decimal : Sendable {
  |               `- note: 'Decimal' declares conformance to protocol 'Sendable' here
3 |     public typealias Mantissa = (UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16, UInt16)
4 |     public init(_exponent: Int32 = 0, _length: UInt32, _isNegative: UInt32 = 0, _isCompact: UInt32, _reserved: UInt32 = 0, _mantissa: Decimal.Mantissa)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
   |                           `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct URL : Equatable, Sendable, Hashable {
    |               `- note: 'URL' declares conformance to protocol 'Sendable' here
  3 |     public init?(string: __shared String)
  4 |     public init?(string: __shared String, relativeTo url: __shared URL?)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
   |                                     `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct URLComponents : Hashable, Equatable, Sendable {
   |               `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
 3 |     public init()
 4 |     public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
   |                            `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
    |                       `- note: 'Data' declares conformance to protocol 'Sendable' here
  3 |     public typealias Index = Int
  4 |     public typealias Indices = Range<Int>
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
   |                            `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
   |               `- note: 'Date' declares conformance to protocol 'Sendable' here
 3 |     public static let timeIntervalBetween1970AndReferenceDate: Double
 4 |     public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
   |                                      `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct DateComponents : Hashable, Equatable, Sendable {
   |               `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
 3 |     public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
 4 |     public var calendar: Calendar? { get set }
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
   |                                `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
 2 | public struct TimeZone : Hashable, Equatable, Sendable {
   |               `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
 3 |     public init?(identifier: __shared String)
 4 |     public init?(secondsFromGMT seconds: Int)
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
   |                                `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Calendar : Hashable, Equatable, Sendable {
    |               `- note: 'Calendar' declares conformance to protocol 'Sendable' here
  3 |     public enum Identifier : Sendable, CustomDebugStringConvertible {
  4 |         case gregorian
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
   |                              `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
  1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
  2 | public struct Locale : Hashable, Equatable, Sendable {
    |               `- note: 'Locale' declares conformance to protocol 'Sendable' here
  3 |     public enum LanguageDirection : UInt, Sendable {
  4 |         case unknown
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
   |                            `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'FoundationEssentials'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
FoundationEssentials.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
 1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
 2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
   |               `- note: 'UUID' declares conformance to protocol 'Sendable' here
 3 |     public private(set) var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
 4 |     public init()
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
   |                                  `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:12:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
   | `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
13 |
/host/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
   |                                         `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/host/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:12:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedDictionary: @unchecked Sendable
   | `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
13 | where Key: Sendable, Value: Sendable {}
14 |
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:287:22: warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
268 |     @inlinable
269 |     @inline(__always)
270 |     public mutating func append<S: Sequence>(contentsOf newElements: S) where S.Element == Element {
    |                                 `- note: 'S' previously declared here
271 |
272 |         let old_count = base.count
    :
285 |
286 |         @inline(__always)
287 |         func _append<S: Sequence>(_ newElements: S) where S.Element == Element {
    |                      `- warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
288 |
289 |             let buffer = UnsafeMutableBufferPointer(start: base.address + old_count, count: underestimatedCount - old_count)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:375:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 |     @inlinable
346 |     @inline(__always)
347 |     public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
    |                                          `- note: 'C' previously declared here
348 |
349 |         precondition(0 <= subRange.lowerBound, "Index out of range.")
    :
373 |
374 |             @inline(__always)
375 |             func _append<C: Collection>(_ newElements: C) where C.Element == Element {
    |                          `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
376 |
377 |                 let buffer = UnsafeMutableBufferPointer(start: base.address + subRange.lowerBound, count: newElements_count)
/host/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:402:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 |     @inlinable
346 |     @inline(__always)
347 |     public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
    |                                          `- note: 'C' previously declared here
348 |
349 |         precondition(0 <= subRange.lowerBound, "Index out of range.")
    :
400 |
401 |             @inline(__always)
402 |             func _append<C: Collection>(_ newElements: C) where C.Element == Element {
    |                          `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
403 |
404 |                 let buffer = UnsafeMutableBufferPointer(start: address, count: newElements_count)
BUILD FAILURE 6.2 android