Build Information
Failed to build BinaryEncoding, reference 0.2.1 (8489cb
), with Swift 6.2 (beta) for macOS (SPM) on 18 Jun 2025 06:22:52 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/my-mail-ru/swift-binaryencoding.git
Reference: 0.2.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/my-mail-ru/swift-binaryencoding
* tag 0.2.1 -> FETCH_HEAD
HEAD is now at 8489cb7 Swift 4.0
Cloned https://github.com/my-mail-ru/swift-binaryencoding.git
Revision (git rev-parse @):
8489cb745861e869f3fe0f852274105122be025c
SUCCESS checkout https://github.com/my-mail-ru/swift-binaryencoding.git at 0.2.1
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/my-mail-ru/swift-binaryencoding.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/6] Compiling BinaryEncoding Common.swift
[4/6] Emitting module BinaryEncoding
[5/6] Compiling BinaryEncoding Data.swift
/Users/admin/builder/spi-builder-workspace/Sources/BinaryEncoding/Data.swift:34:55: warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)' [#DeprecatedDeclaration]
32 | public init(copyFrom: UnsafeRawPointer, count: Int) {
33 | self.init(minimumCapacity: count)
34 | withUnsafeMutableBufferRawPointer { $0.baseAddress!.copyBytes(from: copyFrom, count: count) }
| |- warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)' [#DeprecatedDeclaration]
| `- note: use 'copyMemory(from:byteCount:)' instead
35 | self.count = count
36 | }
/Users/admin/builder/spi-builder-workspace/Sources/BinaryEncoding/Data.swift:43:21: warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)' [#DeprecatedDeclaration]
41 | cont.withUnsafeBufferPointer { from in
42 | withUnsafeMutableBufferRawPointer { to in
43 | to.baseAddress!.copyBytes(from: UnsafeRawPointer(from.baseAddress!), count: cont.count)
| |- warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)' [#DeprecatedDeclaration]
| `- note: use 'copyMemory(from:byteCount:)' instead
44 | }
45 | }
/Users/admin/builder/spi-builder-workspace/Sources/BinaryEncoding/Data.swift:75:32: warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)' [#DeprecatedDeclaration]
73 | newBuffer.withUnsafeMutablePointerToElements { n in
74 | buffer.withUnsafeMutablePointerToElements { o in
75 | UnsafeMutableRawPointer(n).copyBytes(from: UnsafeRawPointer(o), count: count)
| |- warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)' [#DeprecatedDeclaration]
| `- note: use 'copyMemory(from:byteCount:)' instead
76 | }
77 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[6/6] Compiling BinaryEncoding UnsafeRawBufferPointer.swift
/Users/admin/builder/spi-builder-workspace/Sources/BinaryEncoding/UnsafeRawBufferPointer.swift:72:30: error: type 'String' has no member '_fromCodeUnitSequence'
70 | defer { start += withSize }
71 | let utf8buf = UnsafeBufferPointer(start: start.assumingMemoryBound(to: UTF8.CodeUnit.self), count: withSize)
72 | guard let string = String._fromCodeUnitSequence(UTF8.self, input: utf8buf)
| `- error: type 'String' has no member '_fromCodeUnitSequence'
73 | else { throw BinaryEncodingError.stringIsNotUTF8 }
74 | return string
/Users/admin/builder/spi-builder-workspace/Sources/BinaryEncoding/UnsafeRawBufferPointer.swift:141:11: warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)' [#DeprecatedDeclaration]
139 | let size = e - p
140 | guard start + size <= end else { throw BinaryEncodingError.bufferIsTooShort }
141 | start.copyBytes(from: p, count: size)
| |- warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)' [#DeprecatedDeclaration]
| `- note: use 'copyMemory(from:byteCount:)' instead
142 | start += size
143 | }
/Users/admin/builder/spi-builder-workspace/Sources/BinaryEncoding/UnsafeRawBufferPointer.swift:148:10: warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)' [#DeprecatedDeclaration]
146 | public mutating func write(_ value: UnsafeRawBufferPointer) throws {
147 | guard start + value.count <= end else { throw BinaryEncodingError.bufferIsTooShort }
148 | start.copyBytes(from: value.baseAddress!, count: value.count)
| |- warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)' [#DeprecatedDeclaration]
| `- note: use 'copyMemory(from:byteCount:)' instead
149 | start += value.count
150 | }
/Users/admin/builder/spi-builder-workspace/Sources/BinaryEncoding/UnsafeRawBufferPointer.swift:193:11: warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)' [#DeprecatedDeclaration]
191 | let size = $0.count * MemoryLayout<C.Iterator.Element>.size
192 | guard start + size <= end else { throw BinaryEncodingError.bufferIsTooShort }
193 | start.copyBytes(from: UnsafeRawPointer($0.baseAddress!), count: size)
| |- warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)' [#DeprecatedDeclaration]
| `- note: use 'copyMemory(from:byteCount:)' instead
194 | start += size
195 | }
/Users/admin/builder/spi-builder-workspace/Sources/BinaryEncoding/UnsafeRawBufferPointer.swift:205:11: warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)' [#DeprecatedDeclaration]
203 | start.assumingMemoryBound(to: S.self).pointee = numericCast(size)
204 | start += MemoryLayout<S>.size
205 | start.copyBytes(from: UnsafeRawPointer($0.baseAddress!), count: size)
| |- warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)' [#DeprecatedDeclaration]
| `- note: use 'copyMemory(from:byteCount:)' instead
206 | start += size
207 | }
/Users/admin/builder/spi-builder-workspace/Sources/BinaryEncoding/UnsafeRawBufferPointer.swift:216:11: warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)' [#DeprecatedDeclaration]
214 | try write(UInt(size), as: VarUInt.self)
215 | guard start + size <= end else { throw BinaryEncodingError.bufferIsTooShort }
216 | start.copyBytes(from: UnsafeRawPointer($0.baseAddress!), count: size)
| |- warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)' [#DeprecatedDeclaration]
| `- note: use 'copyMemory(from:byteCount:)' instead
217 | start += size
218 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
BUILD FAILURE 6.2 macosSpm