Build Information
Successful build of STTextView, reference main (267c78
), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 8 Jun 2025 23:01:10 UTC.
Swift 6 data race errors: 95
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme STTextView -destination platform=macOS,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
SwiftCompile normal arm64 Compiling\ STTextView+NSTextLayoutManagerDelegate.swift,\ STTextView+NSTextLayoutOrientationProvider.swift,\ STTextView+NSTextViewportLayoutControllerDelegate.swift,\ STTextView+NSUserInterfaceValidations.swift,\ STTextView+Scrolling.swift,\ STTextView+Select.swift,\ STTextView+Speech.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextLayoutManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextLayoutOrientationProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextViewportLayoutControllerDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSUserInterfaceValidations.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Scrolling.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Select.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Speech.swift (in target 'STTextViewAppKit' from project 'STTextView')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextLayoutManagerDelegate.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextLayoutManagerDelegate.swift:8:17: warning: main actor-isolated instance method 'textLayoutManager(_:textLayoutFragmentFor:in:)' cannot be used to satisfy nonisolated requirement from protocol 'NSTextLayoutManagerDelegate'; this is an error in the Swift 6 language mode
public func textLayoutManager(_ textLayoutManager: NSTextLayoutManager, textLayoutFragmentFor location: NSTextLocation, in textElement: NSTextElement) -> NSTextLayoutFragment {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextLayoutManagerDelegate.swift:8:17: note: add 'nonisolated' to 'textLayoutManager(_:textLayoutFragmentFor:in:)' to make this instance method not isolated to the actor
public func textLayoutManager(_ textLayoutManager: NSTextLayoutManager, textLayoutFragmentFor location: NSTextLocation, in textElement: NSTextElement) -> NSTextLayoutFragment {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextLayoutManagerDelegate.swift:6:23: note: add '@preconcurrency' to the 'NSTextLayoutManagerDelegate' conformance to defer isolation checking to run time
extension STTextView: NSTextLayoutManagerDelegate {
^
@preconcurrency
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextLayoutOrientationProvider.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextLayoutOrientationProvider.swift:7:16: warning: main actor-isolated property 'layoutOrientation' cannot be used to satisfy nonisolated requirement from protocol 'NSTextLayoutOrientationProvider'; this is an error in the Swift 6 language mode
public var layoutOrientation: NSLayoutManager.TextLayoutOrientation {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextLayoutOrientationProvider.swift:6:23: note: add '@preconcurrency' to the 'NSTextLayoutOrientationProvider' conformance to defer isolation checking to run time
extension STTextView: NSTextLayoutOrientationProvider {
^
@preconcurrency
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSLayoutManager.h:53:46: note: requirement 'layoutOrientation' declared here
@property (readonly) NSTextLayoutOrientation layoutOrientation API_AVAILABLE(macos(10.7), ios(7.0), tvos(9.0));
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextViewportLayoutControllerDelegate.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextViewportLayoutControllerDelegate.swift:9:17: warning: main actor-isolated instance method 'viewportBounds(for:)' cannot be used to satisfy nonisolated requirement from protocol 'NSTextViewportLayoutControllerDelegate'; this is an error in the Swift 6 language mode
public func viewportBounds(for textViewportLayoutController: NSTextViewportLayoutController) -> CGRect {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextViewportLayoutControllerDelegate.swift:9:17: note: add 'nonisolated' to 'viewportBounds(for:)' to make this instance method not isolated to the actor
public func viewportBounds(for textViewportLayoutController: NSTextViewportLayoutController) -> CGRect {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextViewportLayoutControllerDelegate.swift:7:23: note: add '@preconcurrency' to the 'NSTextViewportLayoutControllerDelegate' conformance to defer isolation checking to run time
extension STTextView: NSTextViewportLayoutControllerDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextViewportLayoutControllerDelegate.swift:47:17: warning: main actor-isolated instance method 'textViewportLayoutController(_:configureRenderingSurfaceFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSTextViewportLayoutControllerDelegate'; this is an error in the Swift 6 language mode
public func textViewportLayoutController(_ textViewportLayoutController: NSTextViewportLayoutController, configureRenderingSurfaceFor textLayoutFragment: NSTextLayoutFragment) {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextViewportLayoutControllerDelegate.swift:47:17: note: add 'nonisolated' to 'textViewportLayoutController(_:configureRenderingSurfaceFor:)' to make this instance method not isolated to the actor
public func textViewportLayoutController(_ textViewportLayoutController: NSTextViewportLayoutController, configureRenderingSurfaceFor textLayoutFragment: NSTextLayoutFragment) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextViewportLayoutControllerDelegate.swift:39:17: warning: main actor-isolated instance method 'textViewportLayoutControllerWillLayout' cannot be used to satisfy nonisolated requirement from protocol 'NSTextViewportLayoutControllerDelegate'; this is an error in the Swift 6 language mode
public func textViewportLayoutControllerWillLayout(_ textViewportLayoutController: NSTextViewportLayoutController) {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextViewportLayoutControllerDelegate.swift:39:17: note: add 'nonisolated' to 'textViewportLayoutControllerWillLayout' to make this instance method not isolated to the actor
public func textViewportLayoutControllerWillLayout(_ textViewportLayoutController: NSTextViewportLayoutController) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextViewportLayoutControllerDelegate.swift:73:17: warning: main actor-isolated instance method 'textViewportLayoutControllerDidLayout' cannot be used to satisfy nonisolated requirement from protocol 'NSTextViewportLayoutControllerDelegate'; this is an error in the Swift 6 language mode
public func textViewportLayoutControllerDidLayout(_ textViewportLayoutController: NSTextViewportLayoutController) {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSTextViewportLayoutControllerDelegate.swift:73:17: note: add 'nonisolated' to 'textViewportLayoutControllerDidLayout' to make this instance method not isolated to the actor
public func textViewportLayoutControllerDidLayout(_ textViewportLayoutController: NSTextViewportLayoutController) {
^
nonisolated
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+NSUserInterfaceValidations.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Scrolling.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Select.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Speech.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ STTextAttachmentViewInteraction.swift,\ STTextContainer.swift,\ STTextFinderBarContainer.swift,\ STTextFinderClient.swift,\ STTextLayoutFragment.swift,\ STTextLayoutFragmentView.swift,\ STTextRenderView.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderBarContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextLayoutFragment.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextLayoutFragmentView.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextRenderView.swift (in target 'STTextViewAppKit' from project 'STTextView')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:47:17: warning: main actor-isolated instance method 'attachmentViewDidReceiveInteraction(attachment:at:)' cannot be used to satisfy nonisolated requirement from protocol 'STTextAttachmentViewInteracting'; this is an error in the Swift 6 language mode
public func attachmentViewDidReceiveInteraction(attachment: NSTextAttachment, at location: NSTextLocation) {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:47:17: note: add 'nonisolated' to 'attachmentViewDidReceiveInteraction(attachment:at:)' to make this instance method not isolated to the actor
public func attachmentViewDidReceiveInteraction(attachment: NSTextAttachment, at location: NSTextLocation) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:46:23: note: add '@preconcurrency' to the 'STTextAttachmentViewInteracting' conformance to defer isolation checking to run time
extension STTextView: STTextAttachmentViewInteracting {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:13:10: note: mark the protocol requirement 'attachmentViewDidReceiveInteraction(attachment:at:)' 'async' to allow actor-isolated conformances
func attachmentViewDidReceiveInteraction(attachment: NSTextAttachment, at location: NSTextLocation)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:96:16: warning: static property 'interactionBridge' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var interactionBridge = UnsafeMutablePointer<UInt8>.allocate(capacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:96:16: note: convert 'interactionBridge' to a 'let' constant to make 'Sendable' shared state immutable
static var interactionBridge = UnsafeMutablePointer<UInt8>.allocate(capacity: 1)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:96:16: note: add '@MainActor' to make static property 'interactionBridge' part of global actor 'MainActor'
static var interactionBridge = UnsafeMutablePointer<UInt8>.allocate(capacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:96:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var interactionBridge = UnsafeMutablePointer<UInt8>.allocate(capacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:97:16: warning: static property 'tapGesture' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var tapGesture = UnsafeMutablePointer<UInt8>.allocate(capacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:97:16: note: convert 'tapGesture' to a 'let' constant to make 'Sendable' shared state immutable
static var tapGesture = UnsafeMutablePointer<UInt8>.allocate(capacity: 1)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:97:16: note: add '@MainActor' to make static property 'tapGesture' part of global actor 'MainActor'
static var tapGesture = UnsafeMutablePointer<UInt8>.allocate(capacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:97:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var tapGesture = UnsafeMutablePointer<UInt8>.allocate(capacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:37:18: warning: call to main actor-isolated instance method 'selectAttachment(at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
textView.selectAttachment(at: location)
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Attachment.swift:146:17: note: calls to instance method 'selectAttachment(at:)' from outside of its actor context are implicitly asynchronous
public func selectAttachment(at location: NSTextLocation) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Attachment.swift:146:17: note: main actor isolation inferred from inheritance from class 'NSView'
public func selectAttachment(at location: NSTextLocation) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:29:23: note: add '@MainActor' to make instance method 'handleInteraction' part of global actor 'MainActor'
@objc public func handleInteraction(_ sender: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:40:21: warning: main actor-isolated property 'delegateProxy' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if textView.delegateProxy.textView(textView, shouldAllowInteractionWith: attachment, at: location) {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:439:18: note: property declared here
internal let delegateProxy = STTextViewDelegateProxy(source: nil)
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:29:23: note: add '@MainActor' to make instance method 'handleInteraction' part of global actor 'MainActor'
@objc public func handleInteraction(_ sender: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:41:26: warning: main actor-isolated property 'delegateProxy' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
_ = textView.delegateProxy.textView(textView, clickedOnAttachment: attachment, at: location)
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:439:18: note: property declared here
internal let delegateProxy = STTextViewDelegateProxy(source: nil)
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:29:23: note: add '@MainActor' to make instance method 'handleInteraction' part of global actor 'MainActor'
@objc public func handleInteraction(_ sender: Any?) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:37:18: warning: sending 'location' risks causing data races; this is an error in the Swift 6 language mode
textView.selectAttachment(at: location)
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextAttachmentViewInteraction.swift:37:18: note: sending task-isolated 'location' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
textView.selectAttachment(at: location)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextContainer.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderBarContainer.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderBarContainer.swift:10:33: warning: main actor-isolated property 'findBarView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
client?.scrollView?.findBarView
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextFinder.h:167:38: note: property declared here
@property (nullable, strong) NSView *findBarView;
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderBarContainer.swift:10:21: warning: main actor-isolated property 'scrollView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
client?.scrollView?.findBarView
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:600:18: note: property declared here
internal var scrollView: NSScrollView? {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderBarContainer.swift:14:33: warning: main actor-isolated property 'findBarView' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
client?.scrollView?.findBarView = newValue
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextFinder.h:167:38: note: mutation of this property is only permitted within the actor
@property (nullable, strong) NSView *findBarView;
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderBarContainer.swift:14:21: warning: main actor-isolated property 'scrollView' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
client?.scrollView?.findBarView = newValue
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:600:18: note: mutation of this property is only permitted within the actor
internal var scrollView: NSScrollView? {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderBarContainer.swift:28:33: warning: main actor-isolated property 'isFindBarVisible' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
client?.scrollView?.isFindBarVisible ?? false
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextFinder.h:170:42: note: property declared here
@property (getter=isFindBarVisible) BOOL findBarVisible;
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderBarContainer.swift:28:21: warning: main actor-isolated property 'scrollView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
client?.scrollView?.isFindBarVisible ?? false
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:600:18: note: property declared here
internal var scrollView: NSScrollView? {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderBarContainer.swift:32:33: warning: main actor-isolated property 'isFindBarVisible' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
client?.scrollView?.isFindBarVisible = newValue
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextFinder.h:170:42: note: mutation of this property is only permitted within the actor
@property (getter=isFindBarVisible) BOOL findBarVisible;
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderBarContainer.swift:32:21: warning: main actor-isolated property 'scrollView' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
client?.scrollView?.isFindBarVisible = newValue
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:600:18: note: mutation of this property is only permitted within the actor
internal var scrollView: NSScrollView? {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderBarContainer.swift:41:29: warning: call to main actor-isolated instance method 'findBarViewDidChangeHeight()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
client?.scrollView?.findBarViewDidChangeHeight()
^
AppKit.NSScrollView.findBarViewDidChangeHeight:2:22: note: calls to instance method 'findBarViewDidChangeHeight()' from outside of its actor context are implicitly asynchronous
@MainActor open func findBarViewDidChangeHeight()}
^
AppKit.NSScrollView.findBarViewDidChangeHeight:2:22: note: main actor isolation inferred from inheritance from class 'NSView'
@MainActor open func findBarViewDidChangeHeight()}
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderBarContainer.swift:40:10: note: add '@MainActor' to make instance method 'findBarViewDidChangeHeight()' part of global actor 'MainActor'
func findBarViewDidChangeHeight() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderBarContainer.swift:41:17: warning: main actor-isolated property 'scrollView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
client?.scrollView?.findBarViewDidChangeHeight()
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:600:18: note: property declared here
internal var scrollView: NSScrollView? {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderBarContainer.swift:40:10: note: add '@MainActor' to make instance method 'findBarViewDidChangeHeight()' part of global actor 'MainActor'
func findBarViewDidChangeHeight() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderBarContainer.swift:18:37: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
if let scrollView = client?.scrollView, let gutterView = client?.gutterView {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderBarContainer.swift:18:37: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
if let scrollView = client?.scrollView, let gutterView = client?.gutterView {
^~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:90:9: warning: main actor-isolated property 'selectedRanges' cannot be used to satisfy nonisolated requirement from protocol 'NSTextFinderClient'; this is an error in the Swift 6 language mode
var selectedRanges: [NSValue] {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:7:43: note: add '@preconcurrency' to the 'NSTextFinderClient' conformance to defer isolation checking to run time
final class STTextFinderClient: NSObject, NSTextFinderClient {
^
@preconcurrency
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTextFinder.h:136:38: note: requirement 'selectedRanges' declared here
@property (copy) NSArray<NSValue *> *selectedRanges;
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:12:19: warning: main actor-isolated property 'text' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
textView?.text ?? ""
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:248:20: note: property declared here
@objc open var text: String? {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:20:19: warning: main actor-isolated property 'isSelectable' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
textView?.isSelectable ?? false
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:52:28: note: property declared here
@objc dynamic open var isSelectable: Bool = true {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:24:19: warning: main actor-isolated property 'isEditable' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
textView?.isEditable ?? false
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:42:28: note: property declared here
@objc dynamic open var isEditable: Bool = true {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:33:49: warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let textContentManager = textView.textLayoutManager.textContentManager
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:442:28: note: property declared here
@objc dynamic open var textLayoutManager: NSTextLayoutManager {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:31:10: note: add '@MainActor' to make instance method 'shouldReplaceCharacters(inRanges:with:)' part of global actor 'MainActor'
func shouldReplaceCharacters(inRanges ranges: [NSValue], with strings: [String]) -> Bool {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:41:45: warning: call to main actor-isolated instance method 'shouldChangeText(in:replacementString:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
result = result && textView.shouldChangeText(in: textRange, replacementString: string)
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1462:15: note: calls to instance method 'shouldChangeText(in:replacementString:)' from outside of its actor context are implicitly asynchronous
open func shouldChangeText(in affectedTextRange: NSTextRange, replacementString: String?) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1462:15: note: main actor isolation inferred from inheritance from class 'NSView'
open func shouldChangeText(in affectedTextRange: NSTextRange, replacementString: String?) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:49:50: warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let textContentManager = textView?.textLayoutManager.textContentManager,
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:442:28: note: property declared here
@objc dynamic open var textLayoutManager: NSTextLayoutManager {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:48:10: note: add '@MainActor' to make instance method 'replaceCharacters(in:with:)' part of global actor 'MainActor'
func replaceCharacters(in range: NSRange, with string: NSAttributedString) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:56:21: warning: call to main actor-isolated instance method 'shouldChangeText(in:replacementString:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
if textView.shouldChangeText(in: textRange, replacementString: string.string) {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1462:15: note: calls to instance method 'shouldChangeText(in:replacementString:)' from outside of its actor context are implicitly asynchronous
open func shouldChangeText(in affectedTextRange: NSTextRange, replacementString: String?) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1462:15: note: main actor isolation inferred from inheritance from class 'NSView'
open func shouldChangeText(in affectedTextRange: NSTextRange, replacementString: String?) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:48:10: note: add '@MainActor' to make instance method 'replaceCharacters(in:with:)' part of global actor 'MainActor'
func replaceCharacters(in range: NSRange, with string: NSAttributedString) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:59:22: warning: call to main actor-isolated instance method 'replaceCharacters(in:with:allowsTypingCoalescing:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
textView.replaceCharacters(in: textRange, with: attributedString, allowsTypingCoalescing: false)
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1414:19: note: calls to instance method 'replaceCharacters(in:with:allowsTypingCoalescing:)' from outside of its actor context are implicitly asynchronous
internal func replaceCharacters(in textRange: NSTextRange, with replacementString: NSAttributedString, allowsTypingCoalescing: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1414:19: note: main actor isolation inferred from inheritance from class 'NSView'
internal func replaceCharacters(in textRange: NSTextRange, with replacementString: NSAttributedString, allowsTypingCoalescing: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:48:10: note: add '@MainActor' to make instance method 'replaceCharacters(in:with:)' part of global actor 'MainActor'
func replaceCharacters(in range: NSRange, with string: NSAttributedString) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:64:50: warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let textContentManager = textView?.textLayoutManager.textContentManager,
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:442:28: note: property declared here
@objc dynamic open var textLayoutManager: NSTextLayoutManager {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:63:10: note: add '@MainActor' to make instance method 'replaceCharacters(in:with:)' part of global actor 'MainActor'
func replaceCharacters(in range: NSRange, with string: String) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:71:21: warning: call to main actor-isolated instance method 'shouldChangeText(in:replacementString:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
if textView.shouldChangeText(in: textRange, replacementString: string) {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1462:15: note: calls to instance method 'shouldChangeText(in:replacementString:)' from outside of its actor context are implicitly asynchronous
open func shouldChangeText(in affectedTextRange: NSTextRange, replacementString: String?) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1462:15: note: main actor isolation inferred from inheritance from class 'NSView'
open func shouldChangeText(in affectedTextRange: NSTextRange, replacementString: String?) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:63:10: note: add '@MainActor' to make instance method 'replaceCharacters(in:with:)' part of global actor 'MainActor'
func replaceCharacters(in range: NSRange, with string: String) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:72:45: warning: call to main actor-isolated instance method 'typingAttributes(at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let typingAttributes = textView.typingAttributes(at: textRange.location)
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:209:19: note: calls to instance method 'typingAttributes(at:)' from outside of its actor context are implicitly asynchronous
internal func typingAttributes(at startLocation: NSTextLocation) -> [NSAttributedString.Key : Any] {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:209:19: note: main actor isolation inferred from inheritance from class 'NSView'
internal func typingAttributes(at startLocation: NSTextLocation) -> [NSAttributedString.Key : Any] {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:63:10: note: add '@MainActor' to make instance method 'replaceCharacters(in:with:)' part of global actor 'MainActor'
func replaceCharacters(in range: NSRange, with string: String) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:74:22: warning: call to main actor-isolated instance method 'replaceCharacters(in:with:allowsTypingCoalescing:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
textView.replaceCharacters(in: textRange, with: attributedString, allowsTypingCoalescing: false)
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1414:19: note: calls to instance method 'replaceCharacters(in:with:allowsTypingCoalescing:)' from outside of its actor context are implicitly asynchronous
internal func replaceCharacters(in textRange: NSTextRange, with replacementString: NSAttributedString, allowsTypingCoalescing: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:1414:19: note: main actor isolation inferred from inheritance from class 'NSView'
internal func replaceCharacters(in textRange: NSTextRange, with replacementString: NSAttributedString, allowsTypingCoalescing: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:63:10: note: add '@MainActor' to make instance method 'replaceCharacters(in:with:)' part of global actor 'MainActor'
func replaceCharacters(in range: NSRange, with string: String) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:79:49: warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let textLayoutManager = textView?.textLayoutManager,
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:442:28: note: property declared here
@objc dynamic open var textLayoutManager: NSTextLayoutManager {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:132:49: warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let textContentManager = textView.textLayoutManager.textContentManager,
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:442:28: note: property declared here
@objc dynamic open var textLayoutManager: NSTextLayoutManager {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:130:10: note: add '@MainActor' to make instance method 'scrollRangeToVisible' part of global actor 'MainActor'
func scrollRangeToVisible(_ range: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:138:18: warning: call to main actor-isolated instance method 'scrollToVisible(_:type:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
textView.scrollToVisible(textRange, type: .standard)
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Scrolling.swift:14:19: note: calls to instance method 'scrollToVisible(_:type:)' from outside of its actor context are implicitly asynchronous
internal func scrollToVisible(_ selectionTextRange: NSTextRange, type: NSTextLayoutManager.SegmentType) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Scrolling.swift:14:19: note: main actor isolation inferred from inheritance from class 'NSView'
internal func scrollToVisible(_ selectionTextRange: NSTextRange, type: NSTextLayoutManager.SegmentType) -> Bool {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:130:10: note: add '@MainActor' to make instance method 'scrollRangeToVisible' part of global actor 'MainActor'
func scrollRangeToVisible(_ range: NSRange) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:143:49: warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let textLayoutManager = textView?.textLayoutManager,
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:442:28: note: property declared here
@objc dynamic open var textLayoutManager: NSTextLayoutManager {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:154:50: warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let textContentManager = textView?.textLayoutManager.textContentManager,
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:442:28: note: property declared here
@objc dynamic open var textLayoutManager: NSTextLayoutManager {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:153:10: note: add '@MainActor' to make instance method 'rects(forCharacterRange:)' part of global actor 'MainActor'
func rects(forCharacterRange range: NSRange) -> [NSValue]? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:161:19: warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
textView?.textLayoutManager.enumerateTextSegments(in: textRange, type: .standard, options: .rangeNotRequired, using: { _, rect, _, _ in
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:442:28: note: property declared here
@objc dynamic open var textLayoutManager: NSTextLayoutManager {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:153:10: note: add '@MainActor' to make instance method 'rects(forCharacterRange:)' part of global actor 'MainActor'
func rects(forCharacterRange range: NSRange) -> [NSValue]? {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:171:49: warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let textContentManager = textView.textLayoutManager.textContentManager
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:442:28: note: property declared here
@objc dynamic open var textLayoutManager: NSTextLayoutManager {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:169:10: note: add '@MainActor' to make instance method 'contentView(at:effectiveCharacterRange:)' part of global actor 'MainActor'
func contentView(at index: Int, effectiveCharacterRange outRange: NSRangePointer) -> NSView {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:183:35: warning: main actor-isolated property 'superview' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
guard let textView = view.superview as? STTextView, textView == self.textView,
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:87:59: note: property declared here
@property (nullable, readonly, unsafe_unretained) NSView *superview;
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:182:10: note: add '@MainActor' to make instance method 'drawCharacters(in:forContentView:)' part of global actor 'MainActor'
func drawCharacters(in range: NSRange, forContentView view: NSView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:184:49: warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let textContentManager = textView.textLayoutManager.textContentManager,
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:442:28: note: property declared here
@objc dynamic open var textLayoutManager: NSTextLayoutManager {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:182:10: note: add '@MainActor' to make instance method 'drawCharacters(in:forContentView:)' part of global actor 'MainActor'
func drawCharacters(in range: NSRange, forContentView view: NSView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:192:42: warning: main actor-isolated property 'textLayoutManager' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if let layoutFragment = textView.textLayoutManager.textLayoutFragment(for: textRange.location) {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:442:28: note: property declared here
@objc dynamic open var textLayoutManager: NSTextLayoutManager {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:182:10: note: add '@MainActor' to make instance method 'drawCharacters(in:forContentView:)' part of global actor 'MainActor'
func drawCharacters(in range: NSRange, forContentView view: NSView) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:41:45: warning: sending 'textRange' risks causing data races; this is an error in the Swift 6 language mode
result = result && textView.shouldChangeText(in: textRange, replacementString: string)
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:41:45: note: sending task-isolated 'textRange' to main actor-isolated instance method 'shouldChangeText(in:replacementString:)' risks causing data races between main actor-isolated and task-isolated uses
result = result && textView.shouldChangeText(in: textRange, replacementString: string)
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:56:21: warning: sending 'textRange' risks causing data races; this is an error in the Swift 6 language mode
if textView.shouldChangeText(in: textRange, replacementString: string.string) {
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:56:21: note: sending 'textRange' to main actor-isolated instance method 'shouldChangeText(in:replacementString:)' risks causing data races between main actor-isolated and local nonisolated uses
if textView.shouldChangeText(in: textRange, replacementString: string.string) {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:59:22: note: access can happen concurrently
textView.replaceCharacters(in: textRange, with: attributedString, allowsTypingCoalescing: false)
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:59:22: warning: sending 'attributedString' risks causing data races; this is an error in the Swift 6 language mode
textView.replaceCharacters(in: textRange, with: attributedString, allowsTypingCoalescing: false)
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:59:22: note: sending task-isolated 'attributedString' to main actor-isolated instance method 'replaceCharacters(in:with:allowsTypingCoalescing:)' risks causing data races between main actor-isolated and task-isolated uses
textView.replaceCharacters(in: textRange, with: attributedString, allowsTypingCoalescing: false)
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:71:21: warning: sending 'textRange' risks causing data races; this is an error in the Swift 6 language mode
if textView.shouldChangeText(in: textRange, replacementString: string) {
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:71:21: note: sending 'textRange' to main actor-isolated instance method 'shouldChangeText(in:replacementString:)' risks causing data races between main actor-isolated and local nonisolated uses
if textView.shouldChangeText(in: textRange, replacementString: string) {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:72:76: note: access can happen concurrently
let typingAttributes = textView.typingAttributes(at: textRange.location)
~~~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:72:45: warning: sending 'textRange.location' risks causing data races; this is an error in the Swift 6 language mode
let typingAttributes = textView.typingAttributes(at: textRange.location)
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:72:45: note: sending 'textRange.location' to main actor-isolated instance method 'typingAttributes(at:)' risks causing data races between main actor-isolated and local nonisolated uses
let typingAttributes = textView.typingAttributes(at: textRange.location)
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextFinderClient.swift:74:22: note: access can happen concurrently
textView.replaceCharacters(in: textRange, with: attributedString, allowsTypingCoalescing: false)
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextLayoutFragment.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextLayoutFragmentView.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextRenderView.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-73XBGKLOLZQMOAA3KXOHKG1Q7.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-73XBGKLOLZQMOAA3KXOHKG1Q7.scan
SwiftDriverJobDiscovery normal arm64 Compiling STSelectionHighlightView.swift, STSelectionView.swift, Plugin.swift, STPlugin.swift, STPluginContext.swift, STPluginEvents.swift, STCompletionItem.swift (in target 'STTextViewAppKit' from project 'STTextView')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-1F13LHQCTKP1TUCMUERBTRZ8.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-1F13LHQCTKP1TUCMUERBTRZ8.scan
SwiftDriverJobDiscovery normal arm64 Emitting module for STTextViewAppKit (in target 'STTextViewAppKit' from project 'STTextView')
SwiftDriver\ Compilation\ Requirements STTextViewAppKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name STTextViewAppKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/STObjCLandShim/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/IOKit-4XAG38J7ZVW8QJEKOH7IEXGTF.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/IOKit-4XAG38J7ZVW8QJEKOH7IEXGTF.scan
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/STTextViewAppKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit-Swift.h (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/STTextViewAppKit-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling DragSelectedTextGestureRecognizer.swift, NSEdgeInsets+orientation.swift, NSResponder+debug.swift, NSTextContentManager+Helpers.swift, NSTextLayoutManager+Helpers.swift, NSTextLayoutManager+InsertionPoint.swift, NSView+Image.swift, STGutterContainerView.swift (in target 'STTextViewAppKit' from project 'STTextView')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewAppKit.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit.swiftmodule (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewAppKit.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewAppKit.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit.swiftdoc (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewAppKit.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewAppKit.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit.abi.json (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewAppKit.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewAppKit.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit.swiftsourceinfo (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewAppKit.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ColorSync-2QJ8H68NBK9K5VM41DVVY8A4G.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ColorSync-2QJ8H68NBK9K5VM41DVVY8A4G.scan
SwiftCompile normal arm64 Compiling\ STTextView+Accessibility.swift,\ STTextView+Attachment.swift,\ STTextView+Capitalization.swift,\ STTextView+Complete.swift,\ STTextView+CopyPaste.swift,\ STTextView+Delete.swift,\ STTextView+DragGestureRecognizer.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Accessibility.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Attachment.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Capitalization.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Complete.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+CopyPaste.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Delete.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+DragGestureRecognizer.swift (in target 'STTextViewAppKit' from project 'STTextView')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Accessibility.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Attachment.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Capitalization.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Complete.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Complete.swift:119:17: warning: main actor-isolated instance method 'completionWindowController(_:complete:movement:)' cannot be used to satisfy nonisolated requirement from protocol 'STCompletionWindowDelegate'; this is an error in the Swift 6 language mode
public func completionWindowController(_ windowController: STCompletionWindowController, complete item: any STCompletionItem, movement: NSTextMovement) {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Complete.swift:119:17: note: add 'nonisolated' to 'completionWindowController(_:complete:movement:)' to make this instance method not isolated to the actor
public func completionWindowController(_ windowController: STCompletionWindowController, complete item: any STCompletionItem, movement: NSTextMovement) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Complete.swift:118:23: note: add '@preconcurrency' to the 'STCompletionWindowDelegate' conformance to defer isolation checking to run time
extension STTextView: STCompletionWindowDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STCompletion/Window/STCompletionWindowController.swift:85:10: note: mark the protocol requirement 'completionWindowController(_:complete:movement:)' 'async' to allow actor-isolated conformances
func completionWindowController(_ windowController: STCompletionWindowController, complete item: any STCompletionItem, movement: NSTextMovement)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Complete.swift:89:57: warning: non-sendable result type '[any STCompletionItem]?' cannot be sent from nonisolated context in call to instance method 'textView(_:completionItemsAtLocation:)'; this is an error in the Swift 6 language mode
guard let completionItems = await delegateProxy.textView(self, completionItemsAtLocation: insertionPointLocation) else {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STCompletion/STCompletionItem.swift:7:17: note: protocol 'STCompletionItem' does not conform to the 'Sendable' protocol
public protocol STCompletionItem: Identifiable {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Complete.swift:89:57: warning: sending 'self.delegateProxy' risks causing data races; this is an error in the Swift 6 language mode
guard let completionItems = await delegateProxy.textView(self, completionItemsAtLocation: insertionPointLocation) else {
~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Complete.swift:89:57: note: sending main actor-isolated 'self.delegateProxy' to nonisolated instance method 'textView(_:completionItemsAtLocation:)' risks causing data races between nonisolated and main actor-isolated uses
guard let completionItems = await delegateProxy.textView(self, completionItemsAtLocation: insertionPointLocation) else {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+CopyPaste.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+Delete.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView+DragGestureRecognizer.swift (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriver STTextView normal arm64 com.apple.xcode.tools.swift.compiler (in target 'STTextView' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name STTextView -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/STObjCLandShim/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ STTextView (in target 'STTextView' from project 'STTextView')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextView/module.swift (in target 'STTextView' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ module.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextView/module.swift (in target 'STTextView' from project 'STTextView')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextView/module.swift (in target 'STTextView' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DiskArbitration-5JMP4WCQ7XILH6EUIAAT7M570.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DiskArbitration-5JMP4WCQ7XILH6EUIAAT7M570.scan
SwiftDriverJobDiscovery normal arm64 Emitting module for STTextView (in target 'STTextView' from project 'STTextView')
SwiftDriver\ Compilation\ Requirements STTextView normal arm64 com.apple.xcode.tools.swift.compiler (in target 'STTextView' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name STTextView -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/STObjCLandShim/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreServices-79U4ZYKPUTKV004P99D4Y5ATI.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreServices-79U4ZYKPUTKV004P99D4Y5ATI.scan
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/STTextView-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView-Swift.h (in target 'STTextView' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/STTextView-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling module.swift (in target 'STTextView' from project 'STTextView')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextView.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.swiftmodule (in target 'STTextView' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextView.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextView.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.swiftdoc (in target 'STTextView' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextView.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextView.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.abi.json (in target 'STTextView' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextView.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextView.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.swiftsourceinfo (in target 'STTextView' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextView.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreGraphics-4E0MTG2SN2S2HF288R2K4E8JZ.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreGraphics-4E0MTG2SN2S2HF288R2K4E8JZ.scan
SwiftDriver\ Compilation STTextView normal arm64 com.apple.xcode.tools.swift.compiler (in target 'STTextView' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name STTextView -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/STObjCLandShim/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling STGutterLineNumberCell.swift, STGutterMarker.swift, STGutterMarkerContainerView.swift, STGutterSeparatorView.swift, STGutterView.swift, Logger.swift, STContentView.swift, STLineHighlightView.swift (in target 'STTextViewAppKit' from project 'STTextView')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextKitPlus.o (in target 'STTextKitPlus' from project 'STTextKitPlus')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/STTextKitPlus
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextKitPlus.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CoreTextSwift.o (in target 'CoreTextSwift' from project 'CoreTextSwift')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CoreTextSwift
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CoreTextSwift.o
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreText-RI9XAK73KYCVY6400AJMPOFA.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreText-RI9XAK73KYCVY6400AJMPOFA.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ImageIO-34LNGCAWC3UEKMELIRVWPHOFY.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ImageIO-34LNGCAWC3UEKMELIRVWPHOFY.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-BMB3CTJB7DVOSK7Z06M321812.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-BMB3CTJB7DVOSK7Z06M321812.scan
SwiftDriver STTextViewSwiftUIAppKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name STTextViewSwiftUIAppKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/STObjCLandShim/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewCommon.o normal (in target 'STTextViewCommon' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewCommon.build/Objects-normal/arm64/STTextViewCommon.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewCommon.build/Objects-normal/arm64/STTextViewCommon_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewCommon.build/Objects-normal/arm64/STTextViewCommon_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewCommon.build/Objects-normal/arm64/STTextViewCommon.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewCommon.o
SwiftDriverJobDiscovery normal arm64 Compiling STTextAttachmentViewInteraction.swift, STTextContainer.swift, STTextFinderBarContainer.swift, STTextFinderClient.swift, STTextLayoutFragment.swift, STTextLayoutFragmentView.swift, STTextRenderView.swift (in target 'STTextViewAppKit' from project 'STTextView')
SwiftEmitModule normal arm64 Emitting\ module\ for\ STTextViewSwiftUIAppKit (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
EmitSwiftModule normal arm64 (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextViewModifier.swift:29:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var defaultValue: NSFont = .preferredFont(forTextStyle: .body)
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextViewModifier.swift:29:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
static var defaultValue: NSFont = .preferredFont(forTextStyle: .body)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextViewModifier.swift:29:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
static var defaultValue: NSFont = .preferredFont(forTextStyle: .body)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextViewModifier.swift:29:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var defaultValue: NSFont = .preferredFont(forTextStyle: .body)
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ TextView.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextView.swift (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextView.swift (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextView.swift:175:62: warning: main actor-isolated property 'attributedText' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let newTextValue = AttributedString(textView.attributedText ?? NSAttributedString())
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewAppKit/STTextView.swift:270:20: note: property declared here
@objc open var attributedText: NSAttributedString? {
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextView.swift:169:14: note: add '@MainActor' to make instance method 'textViewDidChangeText' part of global actor 'MainActor'
func textViewDidChangeText(_ notification: Notification) {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextView.swift:177:21: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
self.isDidChangeText = true
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextView.swift:177:21: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
self.isDidChangeText = true
^~~~
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextView.swift:189:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
self.isDidChangeText = true
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextView.swift:189:17: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
self.isDidChangeText = true
^~~~
SwiftCompile normal arm64 Compiling\ TextViewModifier.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextViewModifier.swift (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextViewModifier.swift (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextViewModifier.swift:29:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var defaultValue: NSFont = .preferredFont(forTextStyle: .body)
^
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextViewModifier.swift:29:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
static var defaultValue: NSFont = .preferredFont(forTextStyle: .body)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextViewModifier.swift:29:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
static var defaultValue: NSFont = .preferredFont(forTextStyle: .body)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUIAppKit/TextViewModifier.swift:29:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var defaultValue: NSFont = .preferredFont(forTextStyle: .body)
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling STTextView+Find.swift, STTextView+FontPanel.swift, STTextView+Format.swift, STTextView+Gutter.swift, STTextView+Insert.swift, STTextView+InsertionPoint.swift, STTextView+Key.swift (in target 'STTextViewAppKit' from project 'STTextView')
ExtractAppIntentsMetadata (in target 'STTextViewCommon' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name STTextViewCommon --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.STTextViewCommon --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewCommon.appintents --target-triple arm64-apple-macos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewCommon.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewCommon.build/Objects-normal/arm64/STTextViewCommon_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewCommon.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewCommon.build/Objects-normal/arm64/STTextViewCommon.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewCommon.build/STTextViewCommon.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewCommon.build/STTextViewCommon.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewCommon.build/Objects-normal/arm64/STTextViewCommon.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-08 16:01:08.251 appintentsmetadataprocessor[919:5048] Starting appintentsmetadataprocessor export
2025-06-08 16:01:08.290 appintentsmetadataprocessor[919:5048] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling STTextView+Mouse.swift, STTextView+NSColorChanging.swift, STTextView+NSDraggingDestination.swift, STTextView+NSDraggingSource.swift, STTextView+NSServicesMenuRequestor.swift, STTextView+NSTextCheckingClient.swift, STTextView+NSTextInputClient.swift (in target 'STTextViewAppKit' from project 'STTextView')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewCommon.o (in target 'STTextViewCommon' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewCommon.o
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ApplicationServices-516HYAPFZUX50DM6NG88M6SIT.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ApplicationServices-516HYAPFZUX50DM6NG88M6SIT.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreLocation-50V6MSBHHJEUBFPLU6ORED3VA.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreLocation-50V6MSBHHJEUBFPLU6ORED3VA.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Symbols-3O9NY8S0QKK08Y4C5JQTLVI29.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Symbols-3O9NY8S0QKK08Y4C5JQTLVI29.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/IOSurface-1Y643KE0L3VGHRZXTBBH8MRBC.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/IOSurface-1Y643KE0L3VGHRZXTBBH8MRBC.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CloudKit-CMB9I810L3KVS042UUWYPHTAK.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CloudKit-CMB9I810L3KVS042UUWYPHTAK.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Metal-DVP3R8OJNTZ3H78FJDJ5GR5P2.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Metal-DVP3R8OJNTZ3H78FJDJ5GR5P2.scan
SwiftDriverJobDiscovery normal arm64 Emitting module for STTextViewSwiftUIAppKit (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
SwiftDriver\ Compilation\ Requirements STTextViewSwiftUIAppKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name STTextViewSwiftUIAppKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/STObjCLandShim/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/STTextViewSwiftUIAppKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit-Swift.h (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/STTextViewSwiftUIAppKit-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUIAppKit.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.swiftmodule (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUIAppKit.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUIAppKit.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.swiftdoc (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUIAppKit.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUIAppKit.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.abi.json (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUIAppKit.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUIAppKit.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.swiftsourceinfo (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUIAppKit.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriver STTextViewSwiftUI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'STTextViewSwiftUI' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name STTextViewSwiftUI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/STObjCLandShim/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ STTextViewSwiftUI (in target 'STTextViewSwiftUI' from project 'STTextView')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUI/module.swift (in target 'STTextViewSwiftUI' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ module.swift /Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUI/module.swift (in target 'STTextViewSwiftUI' from project 'STTextView')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/STTextViewSwiftUI/module.swift (in target 'STTextViewSwiftUI' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreData-91XV52MG6G0BESDZM6LJ025UQ.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreData-91XV52MG6G0BESDZM6LJ025UQ.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreVideo-9I7X1J0Q9TRZL9JSXHYTEU9FJ.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreVideo-9I7X1J0Q9TRZL9JSXHYTEU9FJ.scan
SwiftDriverJobDiscovery normal arm64 Compiling STTextView+Accessibility.swift, STTextView+Attachment.swift, STTextView+Capitalization.swift, STTextView+Complete.swift, STTextView+CopyPaste.swift, STTextView+Delete.swift, STTextView+DragGestureRecognizer.swift (in target 'STTextViewAppKit' from project 'STTextView')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/QuartzCore-739CD6KGM06QVC6LG18ZXERHH.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/QuartzCore-739CD6KGM06QVC6LG18ZXERHH.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreImage-299K8FFCKZRVCXIJXL8PAICQ0.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreImage-299K8FFCKZRVCXIJXL8PAICQ0.scan
SwiftDriverJobDiscovery normal arm64 Emitting module for STTextViewSwiftUI (in target 'STTextViewSwiftUI' from project 'STTextView')
SwiftDriver\ Compilation\ Requirements STTextViewSwiftUI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'STTextViewSwiftUI' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name STTextViewSwiftUI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/STObjCLandShim/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/STTextViewSwiftUI-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI-Swift.h (in target 'STTextViewSwiftUI' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/STTextViewSwiftUI-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUI.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.swiftmodule (in target 'STTextViewSwiftUI' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUI.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUI.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.swiftdoc (in target 'STTextViewSwiftUI' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUI.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUI.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.abi.json (in target 'STTextViewSwiftUI' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUI.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUI.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.swiftsourceinfo (in target 'STTextViewSwiftUI' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUI.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling module.swift (in target 'STTextViewSwiftUI' from project 'STTextView')
SwiftDriver\ Compilation STTextViewSwiftUI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'STTextViewSwiftUI' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name STTextViewSwiftUI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/STObjCLandShim/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/AppKit-AG1M6K2KQOAGGBNK22WFEKLWB.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/AppKit-AG1M6K2KQOAGGBNK22WFEKLWB.scan
SwiftDriverJobDiscovery normal arm64 Compiling STTextView+NSTextLayoutManagerDelegate.swift, STTextView+NSTextLayoutOrientationProvider.swift, STTextView+NSTextViewportLayoutControllerDelegate.swift, STTextView+NSUserInterfaceValidations.swift, STTextView+Scrolling.swift, STTextView+Select.swift, STTextView+Speech.swift (in target 'STTextViewAppKit' from project 'STTextView')
SwiftDriverJobDiscovery normal arm64 Compiling STTextView+Undo.swift, STTextView+Yank.swift, STTextView.swift, STTextViewDelegate.swift, STTextViewDelegateProxy.swift, NSColor+TextInsertionPoint.swift, YankingManager.swift (in target 'STTextViewAppKit' from project 'STTextView')
SwiftDriverJobDiscovery normal arm64 Compiling STCompletionViewController.swift, STCompletionViewControllerDelegate.swift, STCompletionViewControllerProtocol.swift, STCompletionWindow.swift, STCompletionWindowController.swift, STInsertionPointIndicatorProtocol.swift, STInsertionPointView.swift (in target 'STTextViewAppKit' from project 'STTextView')
SwiftDriver\ Compilation STTextViewAppKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name STTextViewAppKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/STObjCLandShim/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling TextViewModifier.swift (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
SwiftDriverJobDiscovery normal arm64 Compiling TextView.swift (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
SwiftDriver\ Compilation STTextViewSwiftUIAppKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name STTextViewSwiftUIAppKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/STObjCLandShim/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Cocoa-DVND6Z7Q32BL8PAB8Q918JEF.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Cocoa-DVND6Z7Q32BL8PAB8Q918JEF.scan
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STObjCLandShim.build/Objects-normal/arm64/STObjCLandShim.o /Users/admin/builder/spi-builder-workspace/Sources/STObjCLandShim/STObjCLandShim.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'STObjCLandShim' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STObjCLandShim.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STObjCLandShim.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STObjCLandShim.build/Objects-normal/arm64/STObjCLandShim.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STObjCLandShim.build/Objects-normal/arm64/STObjCLandShim.dia -c /Users/admin/builder/spi-builder-workspace/Sources/STObjCLandShim/STObjCLandShim.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STObjCLandShim.build/Objects-normal/arm64/STObjCLandShim.o -index-unit-output-path /STTextView.build/Debug/STObjCLandShim.build/Objects-normal/arm64/STObjCLandShim.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STObjCLandShim.o normal (in target 'STObjCLandShim' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STObjCLandShim.build/Objects-normal/arm64/STObjCLandShim.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STObjCLandShim.build/Objects-normal/arm64/STObjCLandShim_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STObjCLandShim.build/Objects-normal/arm64/STObjCLandShim_dependency_info.dat -fobjc-arc -fobjc-link-runtime -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STObjCLandShim.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STObjCLandShim.o (in target 'STObjCLandShim' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STObjCLandShim.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewAppKit.o normal (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewAppKit.o
ExtractAppIntentsMetadata (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name STTextViewAppKit --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.STTextViewAppKit --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewAppKit.appintents --target-triple arm64-apple-macos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewAppKit.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/STTextViewAppKit.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/STTextViewAppKit.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewAppKit.build/Objects-normal/arm64/STTextViewAppKit.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-08 16:01:09.275 appintentsmetadataprocessor[939:5120] Starting appintentsmetadataprocessor export
2025-06-08 16:01:09.307 appintentsmetadataprocessor[939:5120] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewAppKit.o (in target 'STTextViewAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewAppKit.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextView.o normal (in target 'STTextView' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextView.o
ExtractAppIntentsMetadata (in target 'STTextView' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name STTextView --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.STTextView --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextView.appintents --target-triple arm64-apple-macos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextView.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/STTextView.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/STTextView.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextView.build/Objects-normal/arm64/STTextView.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-08 16:01:09.347 appintentsmetadataprocessor[942:5135] Starting appintentsmetadataprocessor export
2025-06-08 16:01:09.378 appintentsmetadataprocessor[942:5135] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextView.o (in target 'STTextView' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextView.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUIAppKit.o normal (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUIAppKit.o
ExtractAppIntentsMetadata (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name STTextViewSwiftUIAppKit --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.STTextViewSwiftUIAppKit --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUIAppKit.appintents --target-triple arm64-apple-macos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUIAppKit.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/STTextViewSwiftUIAppKit.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/STTextViewSwiftUIAppKit.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUIAppKit.build/Objects-normal/arm64/STTextViewSwiftUIAppKit.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-08 16:01:09.419 appintentsmetadataprocessor[945:5151] Starting appintentsmetadataprocessor export
2025-06-08 16:01:09.448 appintentsmetadataprocessor[945:5151] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUIAppKit.o (in target 'STTextViewSwiftUIAppKit' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUIAppKit.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUI.o normal (in target 'STTextViewSwiftUI' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUI.o
ExtractAppIntentsMetadata (in target 'STTextViewSwiftUI' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name STTextViewSwiftUI --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.STTextViewSwiftUI --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUI.appintents --target-triple arm64-apple-macos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUI.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/STTextViewSwiftUI.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/STTextViewSwiftUI.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/STTextView.build/Debug/STTextViewSwiftUI.build/Objects-normal/arm64/STTextViewSwiftUI.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-08 16:01:09.486 appintentsmetadataprocessor[948:5166] Starting appintentsmetadataprocessor export
2025-06-08 16:01:09.515 appintentsmetadataprocessor[948:5166] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUI.o (in target 'STTextViewSwiftUI' from project 'STTextView')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/STTextViewSwiftUI.o
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:3678c7a802501fa94c470d9f64bd6a9c7d1927ce, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:3678c7a802501fa94c470d9f64bd6a9c7d1927ce, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:3678c7a802501fa94c470d9f64bd6a9c7d1927ce, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:3678c7a802501fa94c470d9f64bd6a9c7d1927ce, name:My Mac }
Build complete.
{
"dependencies" : [
{
"identity" : "sttextkitplus",
"requirement" : {
"range" : [
{
"lower_bound" : "0.1.3",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/krzyzanowskim/STTextKitPlus"
},
{
"identity" : "coretextswift",
"requirement" : {
"range" : [
{
"lower_bound" : "0.2.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/krzyzanowskim/CoreTextSwift"
}
],
"manifest_display_name" : "STTextView",
"name" : "STTextView",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "maccatalyst",
"version" : "16.0"
}
],
"products" : [
{
"name" : "STTextView",
"targets" : [
"STTextView",
"STTextViewSwiftUI"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "STTextViewUIKitTests",
"module_type" : "SwiftTarget",
"name" : "STTextViewUIKitTests",
"path" : "Tests/STTextViewUIKitTests",
"sources" : [
"TextViewTests.swift"
],
"target_dependencies" : [
"STTextViewUIKit"
],
"type" : "test"
},
{
"c99name" : "STTextViewUIKit",
"module_type" : "SwiftTarget",
"name" : "STTextViewUIKit",
"path" : "Sources/STTextViewUIKit",
"product_dependencies" : [
"STTextKitPlus",
"CoreTextSwift"
],
"product_memberships" : [
"STTextView"
],
"sources" : [
"Gutter/STGutterLineNumberCell.swift",
"Gutter/STGutterMarker.swift",
"Gutter/STGutterView.swift",
"Logger.swift",
"Overlays/STContentView.swift",
"Overlays/STLineHighlightView.swift",
"Plugin/Plugin.swift",
"Plugin/STPlugin.swift",
"Plugin/STPluginContext.swift",
"Plugin/STPluginEvents.swift",
"STTextInputTokenizer.swift",
"STTextLayoutFragment.swift",
"STTextLayoutFragmentView.swift",
"STTextLocation.swift",
"STTextLocationRange.swift",
"STTextSelectionRect.swift",
"STTextView+Gutter.swift",
"STTextView+NSTextLayoutManagerDelegate.swift",
"STTextView+NSTextViewportLayoutControllerDelegate.swift",
"STTextView+UIKeyInput.swift",
"STTextView+UIResponderStandardEditActions.swift",
"STTextView+UITextInput.swift",
"STTextView+UITextInputTraits.swift",
"STTextView+UITextInteractionDelegate.swift",
"STTextView+Undo.swift",
"STTextView.swift",
"STTextViewDelegate.swift",
"STTextViewDelegateProxy.swift",
"UITextDirection+Conversion.swift"
],
"target_dependencies" : [
"STTextViewCommon",
"STObjCLandShim"
],
"type" : "library"
},
{
"c99name" : "STTextViewSwiftUIUIKit",
"module_type" : "SwiftTarget",
"name" : "STTextViewSwiftUIUIKit",
"path" : "Sources/STTextViewSwiftUIUIKit",
"product_memberships" : [
"STTextView"
],
"sources" : [
"TextView.swift",
"TextViewModifier.swift"
],
"target_dependencies" : [
"STTextView"
],
"type" : "library"
},
{
"c99name" : "STTextViewSwiftUIAppKit",
"module_type" : "SwiftTarget",
"name" : "STTextViewSwiftUIAppKit",
"path" : "Sources/STTextViewSwiftUIAppKit",
"product_memberships" : [
"STTextView"
],
"sources" : [
"TextView.swift",
"TextViewModifier.swift"
],
"target_dependencies" : [
"STTextView"
],
"type" : "library"
},
{
"c99name" : "STTextViewSwiftUI",
"module_type" : "SwiftTarget",
"name" : "STTextViewSwiftUI",
"path" : "Sources/STTextViewSwiftUI",
"product_memberships" : [
"STTextView"
],
"sources" : [
"module.swift"
],
"target_dependencies" : [
"STTextViewSwiftUIAppKit",
"STTextViewSwiftUIUIKit"
],
"type" : "library"
},
{
"c99name" : "STTextViewCommon",
"module_type" : "SwiftTarget",
"name" : "STTextViewCommon",
"path" : "Sources/STTextViewCommon",
"product_dependencies" : [
"STTextKitPlus"
],
"product_memberships" : [
"STTextView"
],
"sources" : [
"CoalescingUndoManager.swift",
"Extensions/Geometric+Helpers.swift",
"Extensions/NSAttributedString+Helpers.swift",
"Extensions/NSParagraphStyle+Helpers.swift",
"Extensions/NSRange+Helpers.swift",
"Extensions/NSTextLayoutManager+Selection.swift",
"Extensions/NStextLayoutFragment+isExtraLineFragment.swift",
"STAttributedTextElement.swift",
"STMarkedText.swift",
"STTextContentStorage.swift",
"STTextLayoutManager.swift",
"STTextViewProtocol.swift",
"Utilities/ApproximateEquality.swift",
"Utilities/LineHeight.swift",
"Utilities/PixelAlign.swift",
"Utilities/STRulerInsets.swift",
"Utilities/Throttler/Actor/Throttler.swift",
"Utilities/Throttler/debounce.swift",
"Utilities/Throttler/delay.swift",
"Utilities/Throttler/throttle.swift"
],
"type" : "library"
},
{
"c99name" : "STTextViewAppKitTests",
"module_type" : "SwiftTarget",
"name" : "STTextViewAppKitTests",
"path" : "Tests/STTextViewAppKitTests",
"sources" : [
"ContentTests.swift",
"Helpers/NSEvent+Create.swift",
"TextSelectionNavigationTests.swift",
"TextViewTests.swift",
"TypingAttributesTests.swift",
"UndoTests.swift"
],
"target_dependencies" : [
"STTextViewAppKit"
],
"type" : "test"
},
{
"c99name" : "STTextViewAppKit",
"module_type" : "SwiftTarget",
"name" : "STTextViewAppKit",
"path" : "Sources/STTextViewAppKit",
"product_dependencies" : [
"STTextKitPlus",
"CoreTextSwift"
],
"product_memberships" : [
"STTextView"
],
"sources" : [
"DragSelectedTextGestureRecognizer.swift",
"Extensions/NSEdgeInsets+orientation.swift",
"Extensions/NSResponder+debug.swift",
"Extensions/NSTextContentManager+Helpers.swift",
"Extensions/NSTextLayoutManager+Helpers.swift",
"Extensions/NSTextLayoutManager+InsertionPoint.swift",
"Extensions/NSView+Image.swift",
"Gutter/STGutterContainerView.swift",
"Gutter/STGutterLineNumberCell.swift",
"Gutter/STGutterMarker.swift",
"Gutter/STGutterMarkerContainerView.swift",
"Gutter/STGutterSeparatorView.swift",
"Gutter/STGutterView.swift",
"Logger.swift",
"Overlays/STContentView.swift",
"Overlays/STLineHighlightView.swift",
"Overlays/STSelectionHighlightView.swift",
"Overlays/STSelectionView.swift",
"Plugin/Plugin.swift",
"Plugin/STPlugin.swift",
"Plugin/STPluginContext.swift",
"Plugin/STPluginEvents.swift",
"STCompletion/STCompletionItem.swift",
"STCompletion/STCompletionViewController.swift",
"STCompletion/STCompletionViewControllerDelegate.swift",
"STCompletion/STCompletionViewControllerProtocol.swift",
"STCompletion/Window/STCompletionWindow.swift",
"STCompletion/Window/STCompletionWindowController.swift",
"STInsertionPointIndicatorProtocol.swift",
"STInsertionPointView.swift",
"STTextAttachmentViewInteraction.swift",
"STTextContainer.swift",
"STTextFinderBarContainer.swift",
"STTextFinderClient.swift",
"STTextLayoutFragment.swift",
"STTextLayoutFragmentView.swift",
"STTextRenderView.swift",
"STTextView+Accessibility.swift",
"STTextView+Attachment.swift",
"STTextView+Capitalization.swift",
"STTextView+Complete.swift",
"STTextView+CopyPaste.swift",
"STTextView+Delete.swift",
"STTextView+DragGestureRecognizer.swift",
"STTextView+Find.swift",
"STTextView+FontPanel.swift",
"STTextView+Format.swift",
"STTextView+Gutter.swift",
"STTextView+Insert.swift",
"STTextView+InsertionPoint.swift",
"STTextView+Key.swift",
"STTextView+Mouse.swift",
"STTextView+NSColorChanging.swift",
"STTextView+NSDraggingDestination.swift",
"STTextView+NSDraggingSource.swift",
"STTextView+NSServicesMenuRequestor.swift",
"STTextView+NSTextCheckingClient.swift",
"STTextView+NSTextInputClient.swift",
"STTextView+NSTextLayoutManagerDelegate.swift",
"STTextView+NSTextLayoutOrientationProvider.swift",
"STTextView+NSTextViewportLayoutControllerDelegate.swift",
"STTextView+NSUserInterfaceValidations.swift",
"STTextView+Scrolling.swift",
"STTextView+Select.swift",
"STTextView+Speech.swift",
"STTextView+Undo.swift",
"STTextView+Yank.swift",
"STTextView.swift",
"STTextViewDelegate.swift",
"STTextViewDelegateProxy.swift",
"Utility/NSColor+TextInsertionPoint.swift",
"YankingManager.swift"
],
"target_dependencies" : [
"STTextViewCommon",
"STObjCLandShim"
],
"type" : "library"
},
{
"c99name" : "STTextView",
"module_type" : "SwiftTarget",
"name" : "STTextView",
"path" : "Sources/STTextView",
"product_memberships" : [
"STTextView"
],
"sources" : [
"module.swift"
],
"target_dependencies" : [
"STTextViewAppKit",
"STTextViewUIKit"
],
"type" : "library"
},
{
"c99name" : "STObjCLandShim",
"module_type" : "ClangTarget",
"name" : "STObjCLandShim",
"path" : "Sources/STObjCLandShim",
"product_memberships" : [
"STTextView"
],
"sources" : [
"STObjCLandShim.m"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.