Build Information
Failed to build DBUS, reference 0.4.0 (a648c7), with Swift 6.0 for macOS (SPM) on 25 Apr 2026 22:48:33 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/wendylabsinc/dbus.git
Reference: 0.4.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/wendylabsinc/dbus
* tag 0.4.0 -> FETCH_HEAD
HEAD is now at a648c77 Merge pull request #26 from wendylabsinc/feature/dbus-codegen
Cloned https://github.com/wendylabsinc/dbus.git
Revision (git rev-parse @):
a648c770068b3fa843bc06326ec50d97aea3f152
SUCCESS checkout https://github.com/wendylabsinc/dbus.git at 0.4.0
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/wendylabsinc/dbus.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Building for debugging...
[0/7] Write sources
[1/7] Write dbus-codegen-tool-entitlement.plist
[1/7] Write sources
[3/7] Write swift-version-5BDAB9E9C0126B9D.txt
[5/17] Compiling DBusCodegen ServerGenerator.swift
[6/17] Compiling DBusCodegen TypeMapper.swift
[7/17] Compiling DBusCodegen IR.swift
[8/17] Compiling DBusCodegen SignalGenerator.swift
[9/17] Compiling DBusCodegen DBusTypes.swift
[10/17] Compiling DBusCodegen ClientGenerator.swift
[11/17] Emitting module DBusCodegen
[12/17] Compiling DBusCodegen Parser.swift
[13/17] Compiling DBusCodegen CodeWriter.swift
[14/17] Compiling DBusCodegen Codegen.swift
[15/19] Compiling dbus_codegen main.swift
[16/19] Emitting module dbus_codegen
[16/19] Write Objects.LinkFileList
[17/19] Linking dbus-codegen-tool
[18/19] Applying dbus-codegen-tool
Build of product 'dbus-codegen' complete! (6.67s)
Building for debugging...
[0/3] Write swift-version-5BDAB9E9C0126B9D.txt
Build of product 'dbus-codegen' complete! (0.16s)
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:13:29: warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL'
11 |
12 | let tool = try context.tool(named: "dbus-codegen")
13 | let outputDir = context.pluginWorkDirectory
| |- warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL'
| `- note: use 'pluginWorkDirectoryURL' instead
14 |
15 | return target.sourceFiles
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:16:20: warning: 'path' is deprecated: renamed to 'url'
14 |
15 | return target.sourceFiles
16 | .filter { $0.path.lastComponent.hasSuffix(".dbus.xml") }
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
17 | .map { xmlFile -> Command in
18 | let outputName = xmlFile.path.lastComponent
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:16:25: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
14 |
15 | return target.sourceFiles
16 | .filter { $0.path.lastComponent.hasSuffix(".dbus.xml") }
| `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
17 | .map { xmlFile -> Command in
18 | let outputName = xmlFile.path.lastComponent
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:18:34: warning: 'path' is deprecated: renamed to 'url'
16 | .filter { $0.path.lastComponent.hasSuffix(".dbus.xml") }
17 | .map { xmlFile -> Command in
18 | let outputName = xmlFile.path.lastComponent
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
19 | .replacingOccurrences(of: ".dbus.xml", with: ".dbus.swift")
20 | let outputFile = outputDir.appending(outputName)
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:18:39: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
16 | .filter { $0.path.lastComponent.hasSuffix(".dbus.xml") }
17 | .map { xmlFile -> Command in
18 | let outputName = xmlFile.path.lastComponent
| `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
19 | .replacingOccurrences(of: ".dbus.xml", with: ".dbus.swift")
20 | let outputFile = outputDir.appending(outputName)
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:20:36: warning: 'appending' is deprecated: Use `URL` type instead of `Path`.
18 | let outputName = xmlFile.path.lastComponent
19 | .replacingOccurrences(of: ".dbus.xml", with: ".dbus.swift")
20 | let outputFile = outputDir.appending(outputName)
| `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`.
21 |
22 | return .buildCommand(
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:22:17: warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`.
20 | let outputFile = outputDir.appending(outputName)
21 |
22 | return .buildCommand(
| `- warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`.
23 | displayName: "DBus codegen: \(xmlFile.path.lastComponent)",
24 | executable: tool.path,
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:23:49: warning: 'path' is deprecated: renamed to 'url'
21 |
22 | return .buildCommand(
23 | displayName: "DBus codegen: \(xmlFile.path.lastComponent)",
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
24 | executable: tool.path,
25 | arguments: [
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:23:54: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
21 |
22 | return .buildCommand(
23 | displayName: "DBus codegen: \(xmlFile.path.lastComponent)",
| `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
24 | executable: tool.path,
25 | arguments: [
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:24:28: warning: 'path' is deprecated: renamed to 'url'
22 | return .buildCommand(
23 | displayName: "DBus codegen: \(xmlFile.path.lastComponent)",
24 | executable: tool.path,
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
25 | arguments: [
26 | xmlFile.path.string,
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:26:21: warning: 'path' is deprecated: renamed to 'url'
24 | executable: tool.path,
25 | arguments: [
26 | xmlFile.path.string,
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
27 | "--output-dir", outputDir.string,
28 | ],
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:26:26: warning: 'string' is deprecated: Use `URL` type instead of `Path`.
24 | executable: tool.path,
25 | arguments: [
26 | xmlFile.path.string,
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
27 | "--output-dir", outputDir.string,
28 | ],
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:27:39: warning: 'string' is deprecated: Use `URL` type instead of `Path`.
25 | arguments: [
26 | xmlFile.path.string,
27 | "--output-dir", outputDir.string,
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
28 | ],
29 | inputFiles: [xmlFile.path],
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:29:32: warning: 'path' is deprecated: renamed to 'url'
27 | "--output-dir", outputDir.string,
28 | ],
29 | inputFiles: [xmlFile.path],
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
30 | outputFiles: [outputFile]
31 | )
[1/1] Compiling plugin DBusCodegenPlugin
Building for debugging...
[1/57] Write sources
[2/57] Write ExampleApp-entitlement.plist
[2/57] Write sources
[4/57] Write dbus-codegen-entitlement.plist
[4/57] Write BleScanner-entitlement.plist
[4/57] Write sources
[11/57] Copying PrivacyInfo.xcprivacy
[15/57] Write sources
[17/57] Copying PrivacyInfo.xcprivacy
[18/57] Write sources
[24/57] Compiling CNIOWindows WSAStartup.c
[25/57] Compiling CNIOWindows shim.c
[25/57] Compiling CNIOWASI CNIOWASI.c
[27/57] Compiling CNIOLinux shim.c
[28/57] Compiling CNIOOpenBSD shim.c
[29/57] Write swift-version-5BDAB9E9C0126B9D.txt
[30/57] Compiling CNIOLinux liburing_shims.c
Generated: /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/BleScanner/destination/DBusCodegenPlugin/bluez.dbus.swift
[31/57] DBus codegen: bluez.dbus.xml
Generated: /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/AvahiBrowse/destination/DBusCodegenPlugin/avahi.dbus.swift
[31/57] DBus codegen: avahi.dbus.xml
[33/57] Compiling CNIOPosix event_loop_id.c
[33/57] Compiling _AtomicsShims.c
[35/69] Compiling CNIOLLHTTP c_nio_http.c
[36/98] Compiling CNIOLLHTTP c_nio_api.c
[37/172] Compiling CNIOLLHTTP c_nio_llhttp.c
[38/172] Write sources
[40/172] Write AvahiBrowse-entitlement.plist
[41/172] Write sources
[42/191] Compiling CNIODarwin shim.c
[44/191] Compiling Atomics DoubleWord.swift
[45/191] Compiling Atomics ManagedAtomic.swift
[46/192] Compiling _NIODataStructures PriorityQueue.swift
[47/192] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[48/192] Emitting module _NIOBase64
[49/192] Compiling _NIOBase64 Base64.swift
[50/192] Compiling Atomics AtomicValue.swift
[51/192] Compiling Atomics AtomicMemoryOrderings.swift
[52/192] Compiling Atomics UnsafeAtomicLazyReference.swift
[53/192] Compiling Atomics IntegerOperations.swift
[54/192] Compiling Atomics OptionalRawRepresentable.swift
[55/192] Compiling Atomics RawRepresentable.swift
[56/192] Compiling Atomics PointerConformances.swift
[57/192] Compiling Atomics Primitives.native.swift
[58/192] Compiling Atomics AtomicInteger.swift
[59/192] Compiling Atomics AtomicOptionalWrappable.swift
[60/192] Compiling Atomics AtomicReference.swift
[61/192] Compiling Atomics AtomicStorage.swift
[62/192] Compiling Atomics AtomicBool.swift
[63/192] Compiling Atomics IntegerConformances.swift
[64/192] Emitting module InternalCollectionsUtilities
[65/192] Compiling Atomics ManagedAtomicLazyReference.swift
[66/192] Compiling Atomics UnsafeAtomic.swift
[67/192] Compiling Logging MetadataProvider.swift
[68/192] Emitting module Logging
[69/192] Compiling Logging Locks.swift
[70/192] Compiling _NIODataStructures _TinyArray.swift
[71/226] Compiling ContainersPreview BorrowingIteratorProtocol.swift
[72/226] Compiling ContainersPreview BorrowingSequence+Standard Conformances.swift
[73/226] Compiling ContainersPreview BorrowingSequence+Utilities.swift
[74/226] Compiling ContainersPreview BorrowingSequence.swift
[75/229] Compiling ContainersPreview OutputSpan+Extras.swift
[76/229] Compiling ContainersPreview TemporaryAllocation.swift
[77/229] Compiling ContainersPreview BorrowingIteratorProtocol+Copy.swift
[78/229] Compiling ContainersPreview BorrowingIteratorProtocol+ElementsEqual.swift
[79/229] Emitting module ContainersPreview
[80/229] Compiling ContainersPreview Drain+Reduce.swift
[81/229] Compiling ContainersPreview Drain.swift
[82/229] Compiling ContainersPreview Producer+Collect.swift
[83/229] Compiling ContainersPreview ContainerIterator.swift
[84/229] Compiling ContainersPreview DynamicContainer.swift
[85/229] Compiling ContainersPreview MutableContainer.swift
[86/229] Compiling ContainersPreview PermutableContainer.swift
[87/229] Compiling ContainersPreview RandomAccessContainer.swift
[88/229] Compiling ContainersPreview RangeExpression2.swift
[89/229] Compiling ContainersPreview RangeReplaceableContainer.swift
[90/229] Compiling ContainersPreview Drain+Map.swift
[91/229] Compiling ContainersPreview BorrowingIteratorProtocol+Filter.swift
[92/229] Compiling ContainersPreview BorrowingIteratorProtocol+Map.swift
[93/229] Compiling ContainersPreview BorrowingIteratorProtocol+Reduce.swift
[94/229] Compiling ContainersPreview BorrowingIteratorProtocol+SpanwiseZip.swift
[95/229] Compiling ContainersPreview Producer.swift
[96/229] Compiling ContainersPreview Borrow.swift
[97/229] Compiling ContainersPreview Box.swift
[98/229] Compiling ContainersPreview Producer+Filter.swift
[99/229] Compiling ContainersPreview Producer+Map.swift
[100/229] Compiling ContainersPreview Producer+Reduce.swift
[101/229] Compiling ContainersPreview BidirectionalContainer.swift
[102/229] Compiling ContainersPreview Container+Filter.swift
[103/229] Compiling ContainersPreview Container+SpanwiseZip.swift
[104/229] Compiling ContainersPreview Container.swift
[105/229] Emitting module _NIODataStructures
[106/229] Compiling _NIODataStructures Heap.swift
[107/229] Compiling ContainersPreview Inout.swift
[108/229] Compiling ContainersPreview InputSpan.swift
[109/229] Compiling ContainersPreview Shared.swift
[128/235] Compiling Logging LogEvent.swift
[129/235] Compiling Logging LogHandler.swift
[130/243] Compiling Logging Logging.swift
[131/252] Compiling Atomics Unmanaged extensions.swift
[132/271] Compiling DequeModule RigidDeque+Removals.swift
[133/271] Compiling DequeModule RigidDeque+Replacements.swift
[134/271] Compiling DequeModule RigidDeque+Testing.swift
[135/271] Compiling DequeModule RigidDeque.swift
[136/275] Compiling DequeModule RigidDeque+Consumption.swift
[137/275] Compiling DequeModule RigidDeque+Container.swift
[138/275] Compiling DequeModule RigidDeque+Descriptions.swift
[139/275] Compiling DequeModule RigidDeque+Equatable.swift
[140/275] Compiling DequeModule RigidDeque+Experimental.swift
[141/275] Compiling DequeModule UniqueDeque+Append.swift
[142/275] Compiling DequeModule UniqueDeque+Consumption.swift
[143/275] Compiling DequeModule UniqueDeque+Container.swift
[144/275] Compiling DequeModule UniqueDeque+Descriptions.swift
[145/275] Compiling DequeModule UniqueDeque+Equatable.swift
[146/275] Compiling DequeModule UniqueDeque+Experimental.swift
[147/275] Compiling DequeModule UniqueDeque+Hashable.swift
[148/275] Compiling DequeModule UniqueDeque+Initializers.swift
[149/275] Emitting module Atomics
[150/275] Compiling DequeModule UniqueDeque+Insertions.swift
[151/275] Compiling DequeModule UniqueDeque+Prepend.swift
[152/275] Compiling DequeModule UniqueDeque+Removals.swift
[153/275] Compiling DequeModule UniqueDeque+Replacements.swift
[154/275] Compiling DequeModule Deque._UnsafeHandle.swift
[155/275] Compiling DequeModule Deque.swift
[156/275] Compiling DequeModule _DequeBuffer.swift
[157/275] Compiling DequeModule _DequeBufferHeader.swift
[158/275] Compiling DequeModule RigidDeque+Append.swift
[159/275] Compiling DequeModule RigidDeque+Hashable.swift
[160/275] Compiling DequeModule RigidDeque+Initializers.swift
[161/275] Compiling DequeModule RigidDeque+Insertions.swift
[162/275] Compiling DequeModule RigidDeque+Prepend.swift
[162/275] Compiling c-nioatomics.c
[164/275] Compiling DequeModule Deque+Codable.swift
[165/275] Compiling DequeModule Deque+Collection.swift
[166/275] Compiling DequeModule Deque+CustomReflectable.swift
[167/275] Compiling DequeModule Deque+Descriptions.swift
[168/275] Compiling DequeModule Deque+Equatable.swift
[169/275] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[170/275] Compiling DequeModule Deque+Extras.swift
[171/275] Compiling DequeModule Deque+Hashable.swift
[172/275] Compiling DequeModule Deque+Testing.swift
[173/275] Compiling DequeModule Deque._Storage.swift
[174/275] Emitting module DequeModule
[175/275] Compiling DequeModule UniqueDeque.swift
[176/275] Compiling DequeModule _DequeSlot.swift
[177/275] Compiling DequeModule _UnsafeDequeHandle.swift
[178/275] Compiling DequeModule _UnsafeDequeSegments.swift
[178/275] Compiling c-atomics.c
[180/282] Compiling NIOConcurrencyHelpers NIOLock.swift
[181/282] Compiling NIOConcurrencyHelpers lock.swift
[182/282] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[183/282] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[184/282] Compiling NIOConcurrencyHelpers NIOThreadPoolWorkAvailable.swift
[185/282] Emitting module NIOConcurrencyHelpers
[186/282] Compiling NIOConcurrencyHelpers atomics.swift
[187/282] Compiling DBusCodegen TypeMapper.swift
[188/282] Compiling DBusCodegen SignalGenerator.swift
[189/282] Compiling DBusCodegen ServerGenerator.swift
[190/347] Compiling NIOCore EventLoopFuture.swift
[191/347] Compiling NIOCore FileDescriptor.swift
[192/347] Compiling NIOCore FileHandle.swift
[193/347] Compiling NIOCore FileRegion.swift
[194/347] Compiling NIOCore GlobalSingletons.swift
[195/347] Compiling NIOCore ChannelHandler.swift
[196/347] Compiling NIOCore ChannelHandlers.swift
[197/347] Compiling NIOCore ChannelInvoker.swift
[198/347] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[199/347] Compiling NIOCore BSDSocketAPI.swift
[200/347] Compiling NIOCore ByteBuffer-aux.swift
[201/347] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[202/347] Compiling NIOCore ByteBuffer-conversions.swift
[203/347] Compiling NIOCore ByteBuffer-core.swift
[204/347] Compiling NIOCore EventLoopFuture+Deprecated.swift
[205/347] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[206/347] Compiling NIOCore AddressedEnvelope.swift
[207/347] Compiling NIOCore AsyncAwaitSupport.swift
[208/347] Compiling NIOCore AsyncChannel.swift
[209/347] Compiling NIOCore AsyncChannelHandler.swift
[210/347] Compiling NIOCore AsyncChannelInboundStream.swift
[211/347] Compiling NIOCore AsyncChannelOutboundWriter.swift
[212/347] Compiling NIOCore NIOAsyncSequenceProducer.swift
[213/347] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[214/347] Compiling NIOCore NIOAsyncWriter.swift
[215/347] Emitting module Crypto
[216/347] Compiling Crypto Curve25519.swift
[217/347] Compiling Crypto Ed25519Keys.swift
[218/347] Compiling Crypto NISTCurvesKeys.swift
[219/347] Compiling Crypto X25519Keys.swift
[220/347] Compiling Crypto SymmetricKeys.swift
[221/347] Compiling Crypto HMAC.swift
[222/347] Compiling Crypto MACFunctions.swift
[223/347] Compiling Crypto MessageAuthenticationCode.swift
[224/355] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[225/355] Compiling NIOCore NIOScheduledCallback.swift
[226/355] Compiling NIOCore NIOSendable.swift
[227/355] Compiling NIOCore NIOSplitLinesMessageDecoder.swift
[228/355] Compiling NIOCore NIOTransportAccessibleChannelCore.swift
[229/355] Compiling NIOCore RecvByteBufferAllocator.swift
[230/355] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[231/355] Compiling Crypto HPKE-Errors.swift
[232/355] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[233/355] Compiling NIOCore ByteBuffer-hex.swift
[234/355] Compiling NIOCore ByteBuffer-int.swift
[235/355] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[236/355] Compiling NIOCore ByteBuffer-multi-int.swift
[237/355] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[238/355] Compiling NIOCore ByteBuffer-views.swift
[239/355] Compiling NIOCore Channel.swift
[240/355] Compiling NIOCore ChannelOption.swift
[241/355] Compiling NIOCore ChannelPipeline.swift
[242/355] Compiling NIOCore CircularBuffer.swift
[243/355] Compiling NIOCore Codec.swift
[244/355] Compiling NIOCore MarkedCircularBuffer.swift
[245/355] Compiling NIOCore MulticastChannel.swift
[246/355] Compiling NIOCore NIOAny.swift
[247/355] Compiling NIOCore NIOCloseOnErrorHandler.swift
[248/355] Compiling NIOCore NIOCoreSendableMetatype.swift
[249/355] Compiling NIOCore NIODecodedAsyncSequence.swift
[250/355] Compiling NIOCore NIOLoopBound.swift
[251/355] Compiling NIOCore IO.swift
[252/355] Compiling NIOCore IOData.swift
[253/355] Compiling NIOCore IPProtocol.swift
[254/355] Compiling NIOCore IntegerBitPacking.swift
[255/355] Compiling NIOCore IntegerTypes.swift
[256/355] Compiling NIOCore Interfaces.swift
[257/355] Compiling NIOCore Linux.swift
[258/355] Compiling NIOCore ConvenienceOptionSupport.swift
[259/355] Compiling NIOCore DeadChannel.swift
[260/355] Compiling NIOCore DispatchQueue+WithFuture.swift
[261/355] Compiling NIOCore EventLoop+Deprecated.swift
[262/355] Compiling NIOCore EventLoop+SerialExecutor.swift
[263/355] Compiling NIOCore EventLoop.swift
[264/355] Compiling DBusCodegen IR.swift
[265/355] Compiling DBusCodegen DBusTypes.swift
[266/355] Compiling DBusCodegen CodeWriter.swift
[267/355] Compiling DBusCodegen ClientGenerator.swift
[268/355] Compiling DBusCodegen Codegen.swift
[269/355] Emitting module DBusCodegen
[270/355] Compiling DBusCodegen Parser.swift
[286/364] Emitting module dbus_codegen
[287/364] Compiling dbus_codegen main.swift
[287/364] Write Objects.LinkFileList
[289/364] Compiling Crypto RNG_boring.swift
[290/364] Compiling Crypto SafeCompare_boring.swift
[291/364] Compiling Crypto Zeroization_boring.swift
[292/364] Compiling Crypto PrettyBytes.swift
[293/364] Compiling Crypto SafeCompare.swift
[294/364] Compiling Crypto SecureBytes.swift
[295/364] Compiling Crypto Zeroization.swift
[296/364] Compiling Crypto resource_bundle_accessor.swift
[296/364] Linking dbus-codegen
[297/364] Applying dbus-codegen
[299/364] Compiling NIOCore SocketAddresses.swift
[300/364] Compiling NIOCore SocketOptionProvider.swift
[301/364] Compiling NIOCore SystemCallHelpers.swift
[302/364] Compiling NIOCore TimeAmount+Duration.swift
[303/364] Compiling NIOCore TypeAssistedChannelHandler.swift
[304/364] Compiling NIOCore UniversalBootstrapSupport.swift
[305/364] Compiling NIOCore Utilities.swift
[348/364] Emitting module NIOCore
[356/420] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[357/420] Emitting module NIOEmbedded
[358/420] Compiling NIOEmbedded Embedded.swift
[359/420] Compiling NIOEmbedded AsyncTestingChannel.swift
[360/420] Compiling NIOPosix BSDSocketAPICommon.swift
[361/420] Compiling NIOPosix BSDSocketAPIPosix.swift
[362/420] Compiling NIOPosix BSDSocketAPIWindows.swift
[363/420] Compiling NIOPosix BaseSocket.swift
[364/420] Compiling NIOPosix BaseSocketChannel+AccessibleTransport.swift
[365/420] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[366/425] Compiling NIOPosix StructuredConcurrencyHelpers.swift
[367/425] Compiling NIOPosix System.swift
[368/425] Compiling NIOPosix Thread.swift
[369/425] Compiling NIOPosix ThreadPosix.swift
[370/425] Compiling NIOPosix ThreadWindows.swift
[371/425] Compiling NIOPosix Linux.swift
[372/425] Compiling NIOPosix LinuxCPUSet.swift
[373/425] Compiling NIOPosix LinuxUring.swift
[374/425] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[375/425] Compiling NIOPosix NIOPosixSendableMetatype.swift
[376/425] Compiling NIOPosix NIOThreadPool.swift
[377/425] Compiling NIOPosix FileDescriptor.swift
[378/425] Compiling NIOPosix GetaddrinfoResolver.swift
[379/425] Compiling NIOPosix HappyEyeballs.swift
[380/425] Compiling NIOPosix IO.swift
[381/425] Compiling NIOPosix IntegerBitPacking.swift
[382/425] Compiling NIOPosix IntegerTypes.swift
[383/425] Compiling NIOPosix Utilities.swift
[384/425] Compiling NIOPosix VsockAddress.swift
[385/425] Compiling NIOPosix VsockChannelEvents.swift
[386/425] Compiling NIOPosix Windows.swift
[387/425] Compiling NIOPosix resource_bundle_accessor.swift
[388/425] Emitting module NIOPosix
[389/425] Compiling NIOPosix SelectorWSAPoll.swift
[390/425] Compiling NIOPosix ServerSocket.swift
[391/425] Compiling NIOPosix Socket.swift
[392/425] Compiling NIOPosix SocketChannel.swift
[393/425] Compiling NIOPosix SocketProtocols.swift
[394/425] Compiling NIOPosix SelectableEventLoop.swift
[395/425] Compiling NIOPosix SelectorEpoll.swift
[396/425] Compiling NIOPosix SelectorGeneric.swift
[397/425] Compiling NIOPosix SelectorKqueue.swift
[398/425] Compiling NIOPosix SelectorUring.swift
[399/425] Compiling NIOPosix BaseSocketChannel.swift
[400/425] Compiling NIOPosix BaseStreamSocketChannel.swift
[401/425] Compiling NIOPosix Bootstrap.swift
[402/425] Compiling NIOPosix ControlMessage.swift
[403/425] Compiling NIOPosix DatagramVectorReadManager.swift
[404/425] Compiling NIOPosix Errors+Any.swift
[405/425] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[406/425] Compiling NIOPosix PosixSingletons.swift
[407/425] Compiling NIOPosix RawSocketBootstrap.swift
[408/425] Compiling NIOPosix Resolver.swift
[409/425] Compiling NIOPosix Selectable.swift
[410/425] Compiling NIOPosix SelectableChannel.swift
[411/425] Compiling NIOPosix NonBlockingFileIO.swift
[412/425] Compiling NIOPosix PendingDatagramWritesManager.swift
[413/425] Compiling NIOPosix PendingWritesManager.swift
[414/425] Compiling NIOPosix PipeChannel.swift
[415/425] Compiling NIOPosix PipePair.swift
[416/425] Compiling NIOPosix Pool.swift
[417/427] Emitting module NIO
[418/427] Compiling NIO Exports.swift
[419/444] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
[420/444] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[421/445] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
[422/445] Compiling NIOHTTP1 NIOHTTPObjectAggregator.swift
[423/445] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
[424/445] Compiling NIOHTTP1 HTTPServerUpgradeHandler.swift
[425/445] Compiling NIOHTTP1 HTTPTypedPipelineSetup.swift
[426/445] Compiling NIOHTTP1 HTTPServerPipelineHandler.swift
[427/445] Compiling NIOHTTP1 HTTPServerProtocolErrorHandler.swift
[428/445] Compiling NIOHTTP1 HTTPHeaders+Validation.swift
[429/445] Compiling NIOHTTP1 HTTPPipelineSetup.swift
[430/445] Compiling NIOHTTP1 HTTPEncoder.swift
[431/445] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[432/445] Emitting module NIOHTTP1
[433/445] Compiling NIOHTTP1 HTTPTypes.swift
[434/445] Compiling NIOHTTP1 NIOHTTPClientUpgradeHandler.swift
[435/445] Compiling NIOHTTP1 ByteCollectionUtils.swift
[436/445] Compiling NIOHTTP1 HTTPDecoder.swift
[437/464] Compiling NIOExtras QuiescingHelper.swift
[438/464] Compiling NIOExtras RequestResponseHandler.swift
[439/464] Compiling NIOExtras LineBasedFrameDecoder.swift
[440/464] Compiling NIOExtras MarkedCircularBuffer+PopFirstCheckMarked.swift
[441/464] Compiling NIOExtras NIOExtrasError.swift
[442/464] Compiling NIOExtras NIOLengthFieldBitLength.swift
[443/464] Compiling NIOExtras NIORequestIdentifiable.swift
[444/464] Compiling NIOExtras PCAPRingBuffer.swift
[445/464] Compiling NIOExtras RequestResponseHandlers+State.swift
[446/464] Compiling NIOExtras RequestResponseWithIDHandler.swift
[447/465] Compiling NIOExtras JSONRPCFraming+ContentLengthHeader.swift
[448/465] Compiling NIOExtras JSONRPCFraming.swift
[449/465] Compiling NIOExtras FixedLengthFrameDecoder.swift
[450/465] Compiling NIOExtras HTTP1ProxyConnectHandler.swift
[451/465] Compiling NIOExtras DebugInboundEventsHandler.swift
[452/465] Compiling NIOExtras DebugOutboundEventsHandler.swift
[453/465] Emitting module NIOExtras
[454/465] Compiling NIOExtras LengthFieldBasedFrameDecoder.swift
[455/465] Compiling NIOExtras LengthFieldPrepender.swift
[456/465] Compiling NIOExtras WritePCAPHandler.swift
[457/485] Emitting module DBUS
[458/487] Compiling DBUS DBusServerConnection.swift
[459/487] Compiling DBUS DBusMessage+Flags.swift
[460/487] Compiling DBUS ByteBuffer+DBus.swift
[461/487] Compiling DBUS DBusAddress.swift
[462/487] Compiling DBUS DBusAuthMechanism.swift
[463/487] Compiling DBUS DBusVariant.swift
[464/487] Compiling DBUS TypeSignature.swift
[465/487] Compiling DBUS DBusType.swift
[466/487] Compiling DBUS DBusValue.swift
[467/487] Compiling DBUS DBusMessage+MessageType.swift
[468/487] Compiling DBUS DBusMessage.swift
[469/487] Compiling DBUS DBusError.swift
[470/487] Compiling DBUS DBusMessageCodec.swift
[471/487] Compiling DBUS HeaderField.swift
[472/487] Compiling DBUS DBusString.swift
[473/487] Compiling DBUS DBusObjectServer.swift
[474/487] Compiling DBUS DBusSerialGenerator.swift
[475/487] Compiling DBUS DBusValidation.swift
[476/487] Compiling DBUS HeaderField+Code.swift
[477/487] Compiling DBUS DBusAuthenticationHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/DBUS/DBusClient.swift:226:40: error: converting non-sendable function value to '@Sendable (AsyncStream<DBusMessage>.Continuation.Termination) -> Void' may introduce data races
224 | signalSubscribers.append(
225 | (id: id, interface: interface, member: member, continuation: storedContinuation))
226 | storedContinuation.onTermination = { [weak self] _ in
| `- error: converting non-sendable function value to '@Sendable (AsyncStream<DBusMessage>.Continuation.Termination) -> Void' may introduce data races
227 | Task { [weak self] in await self?.removeSignalSubscriber(id: id) }
228 | }
[478/487] Compiling DBUS DBusClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/DBUS/DBusClient.swift:226:40: error: converting non-sendable function value to '@Sendable (AsyncStream<DBusMessage>.Continuation.Termination) -> Void' may introduce data races
224 | signalSubscribers.append(
225 | (id: id, interface: interface, member: member, continuation: storedContinuation))
226 | storedContinuation.onTermination = { [weak self] _ in
| `- error: converting non-sendable function value to '@Sendable (AsyncStream<DBusMessage>.Continuation.Termination) -> Void' may introduce data races
227 | Task { [weak self] in await self?.removeSignalSubscriber(id: id) }
228 | }
Fetching https://github.com/apple/swift-crypto.git
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/apple/swift-nio-extras.git
Fetching https://github.com/apple/swift-nio.git
[1/6649] Fetching swift-log
[201/13168] Fetching swift-log, swift-nio-extras
[1654/30604] Fetching swift-log, swift-nio-extras, swift-crypto
[13693/113823] Fetching swift-log, swift-nio-extras, swift-crypto, swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (6.13s)
Fetched https://github.com/apple/swift-crypto.git from cache (6.13s)
Fetched https://github.com/apple/swift-log.git from cache (6.13s)
Fetched https://github.com/apple/swift-nio-extras.git from cache (6.13s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.33.0 (0.50s)
Fetching https://github.com/swift-server/swift-service-lifecycle.git
Fetching https://github.com/apple/swift-asn1.git
Fetching https://github.com/apple/swift-nio-ssl.git
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/apple/swift-algorithms.git
Fetching https://github.com/apple/swift-async-algorithms.git
Fetching https://github.com/apple/swift-certificates.git
[1/6058] Fetching swift-algorithms
[244/7861] Fetching swift-algorithms, swift-asn1
[263/9681] Fetching swift-algorithms, swift-asn1, swift-atomics
[426/12426] Fetching swift-algorithms, swift-asn1, swift-atomics, swift-service-lifecycle
[509/19578] Fetching swift-algorithms, swift-asn1, swift-atomics, swift-service-lifecycle, swift-certificates
[2200/25825] Fetching swift-algorithms, swift-asn1, swift-atomics, swift-service-lifecycle, swift-certificates, swift-async-algorithms
[16440/41265] Fetching swift-algorithms, swift-asn1, swift-atomics, swift-service-lifecycle, swift-certificates, swift-async-algorithms, swift-nio-ssl
Fetched https://github.com/swift-server/swift-service-lifecycle.git from cache (0.99s)
Fetched https://github.com/apple/swift-asn1.git from cache (0.99s)
[13054/36717] Fetching swift-algorithms, swift-atomics, swift-certificates, swift-async-algorithms, swift-nio-ssl
Fetching https://github.com/apple/swift-http-structured-headers.git
Fetching https://github.com/apple/swift-http-types.git
Fetched https://github.com/apple/swift-certificates.git from cache (1.17s)
Fetched https://github.com/apple/swift-async-algorithms.git from cache (1.17s)
Fetching https://github.com/apple/swift-nio-http2.git
[9114/23318] Fetching swift-algorithms, swift-atomics, swift-nio-ssl
[13438/24560] Fetching swift-algorithms, swift-atomics, swift-nio-ssl, swift-http-structured-headers
[14557/25603] Fetching swift-algorithms, swift-atomics, swift-nio-ssl, swift-http-structured-headers, swift-http-types
Fetched https://github.com/apple/swift-http-types.git from cache (0.83s)
[19877/24560] Fetching swift-algorithms, swift-atomics, swift-nio-ssl, swift-http-structured-headers
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (0.90s)
[20076/23318] Fetching swift-algorithms, swift-atomics, swift-nio-ssl
[20077/35426] Fetching swift-algorithms, swift-atomics, swift-nio-ssl, swift-nio-http2
Fetched https://github.com/apple/swift-atomics.git from cache (2.28s)
Fetched https://github.com/apple/swift-algorithms.git from cache (2.28s)
Fetched https://github.com/apple/swift-nio-ssl.git from cache (2.28s)
[1938/12108] Fetching swift-nio-http2
Fetched https://github.com/apple/swift-nio-http2.git from cache (1.50s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (3.09s)
Fetching https://github.com/apple/swift-numerics.git
[1/6416] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (0.95s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (0.45s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.5.1 (0.45s)
Computing version for https://github.com/swift-server/swift-service-lifecycle.git
Computed https://github.com/swift-server/swift-service-lifecycle.git at 2.11.0 (0.47s)
Computing version for https://github.com/apple/swift-async-algorithms.git
Computed https://github.com/apple/swift-async-algorithms.git at 1.1.3 (0.53s)
Fetching https://github.com/apple/swift-collections.git
[1/23686] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.70s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.36.1 (0.46s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.1.1 (0.44s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.6.0 (2.40s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.97.1 (0.58s)
Fetching https://github.com/apple/swift-system.git
[1/5601] Fetching swift-system
Fetched https://github.com/apple/swift-system.git from cache (1.11s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.18.0 (0.57s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.6.0 (0.59s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.4 (0.51s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.15.1 (1.20s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.11.0 (0.43s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.4.1 (0.56s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.42.0 (0.45s)
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.97.1
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.42.0
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.36.1
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.4.1
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.6.4
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.5.1
Creating working copy for https://github.com/apple/swift-async-algorithms.git
Working copy of https://github.com/apple/swift-async-algorithms.git resolved at 1.1.3
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.11.0
Creating working copy for https://github.com/apple/swift-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.6.0
Creating working copy for https://github.com/swift-server/swift-service-lifecycle.git
Working copy of https://github.com/swift-server/swift-service-lifecycle.git resolved at 2.11.0
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.33.0
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.6.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-certificates.git
Working copy of https://github.com/apple/swift-certificates.git resolved at 1.18.0
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.1.1
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 3.15.1
BUILD FAILURE 6.0 macosSpm