Build Information
Successful build of AAInfographics-Pro, reference 10.1.0 (bca837), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 23 Apr 2026 04:17:29 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme AAInfographics-ProDemo -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 InferSendableFromCapturesBuild Log
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:887:16: warning: call to main actor-isolated class method 'animateKeyframes(withDuration:delay:options:animations:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
UIView.animateKeyframes(
^
UIKit.UIView.animateKeyframes:3:30: note: calls to class method 'animateKeyframes(withDuration:delay:options:animations:completion:)' from outside of its actor context are implicitly asynchronous
@MainActor open class func animateKeyframes(withDuration duration: TimeInterval, delay: TimeInterval, options: UIView.KeyframeAnimationOptions = [], animations: @escaping () -> Void, completion: ((Bool) -> Void)? = nil)}
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:797:17: note: add '@MainActor' to make static method 'animate(to:on:applyTheme:)' part of global actor 'MainActor'
static func animate(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:892:20: warning: call to main actor-isolated class method 'addKeyframe(withRelativeStartTime:relativeDuration:animations:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
UIView.addKeyframe(withRelativeStartTime: 0.00, relativeDuration: 0.22) {
^
UIKit.UIView.addKeyframe:3:30: note: calls to class method 'addKeyframe(withRelativeStartTime:relativeDuration:animations:)' from outside of its actor context are implicitly asynchronous
@MainActor open class func addKeyframe(withRelativeStartTime frameStartTime: Double, relativeDuration frameDuration: Double, animations: @escaping () -> Void)}
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:893:26: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
tintView.alpha = targetScheme == .dark ? 0.18 : 0.24
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:304:56: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGFloat alpha; // animatable. default is 1.0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:894:26: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
glowView.alpha = 0.48
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:304:56: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGFloat alpha; // animatable. default is 1.0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:895:26: warning: main actor-isolated property 'transform' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
glowView.transform = CGAffineTransform(scaleX: 1.7, y: 1.7)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:190:40: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGAffineTransform transform; // default is CGAffineTransformIdentity. animatable. Please use this property instead of the affineTransform property on the layer
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:896:27: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
badgeView.alpha = 1
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:304:56: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGFloat alpha; // animatable. default is 1.0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:897:27: warning: main actor-isolated property 'transform' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
badgeView.transform = CGAffineTransform(scaleX: 1.08, y: 1.08)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:190:40: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGAffineTransform transform; // default is CGAffineTransformIdentity. animatable. Please use this property instead of the affineTransform property on the layer
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:900:20: warning: call to main actor-isolated class method 'addKeyframe(withRelativeStartTime:relativeDuration:animations:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
UIView.addKeyframe(withRelativeStartTime: 0.03, relativeDuration: 0.60) {
^
UIKit.UIView.addKeyframe:3:30: note: calls to class method 'addKeyframe(withRelativeStartTime:relativeDuration:animations:)' from outside of its actor context are implicitly asynchronous
@MainActor open class func addKeyframe(withRelativeStartTime frameStartTime: Double, relativeDuration frameDuration: Double, animations: @escaping () -> Void)}
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:901:28: warning: main actor-isolated property 'transform' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
primaryOrb.transform = CGAffineTransform(scaleX: primaryScale, y: primaryScale)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:190:40: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGAffineTransform transform; // default is CGAffineTransformIdentity. animatable. Please use this property instead of the affineTransform property on the layer
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:902:28: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
primaryOrb.alpha = 0
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:304:56: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGFloat alpha; // animatable. default is 1.0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:903:30: warning: main actor-isolated property 'transform' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
secondaryOrb.transform = CGAffineTransform(scaleX: secondaryScale, y: secondaryScale)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:190:40: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGAffineTransform transform; // default is CGAffineTransformIdentity. animatable. Please use this property instead of the affineTransform property on the layer
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:904:30: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
secondaryOrb.alpha = 0
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:304:56: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGFloat alpha; // animatable. default is 1.0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:907:20: warning: call to main actor-isolated class method 'addKeyframe(withRelativeStartTime:relativeDuration:animations:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
UIView.addKeyframe(withRelativeStartTime: 0.14, relativeDuration: 0.38) {
^
UIKit.UIView.addKeyframe:3:30: note: calls to class method 'addKeyframe(withRelativeStartTime:relativeDuration:animations:)' from outside of its actor context are implicitly asynchronous
@MainActor open class func addKeyframe(withRelativeStartTime frameStartTime: Double, relativeDuration frameDuration: Double, animations: @escaping () -> Void)}
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:908:30: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
snapshotView.alpha = 0
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:304:56: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGFloat alpha; // animatable. default is 1.0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:911:20: warning: call to main actor-isolated class method 'addKeyframe(withRelativeStartTime:relativeDuration:animations:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
UIView.addKeyframe(withRelativeStartTime: 0.18, relativeDuration: 0.28) {
^
UIKit.UIView.addKeyframe:3:30: note: calls to class method 'addKeyframe(withRelativeStartTime:relativeDuration:animations:)' from outside of its actor context are implicitly asynchronous
@MainActor open class func addKeyframe(withRelativeStartTime frameStartTime: Double, relativeDuration frameDuration: Double, animations: @escaping () -> Void)}
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:912:27: warning: main actor-isolated property 'transform' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
badgeView.transform = CGAffineTransform(translationX: 0, y: -16).scaledBy(x: 0.9, y: 0.9)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:190:40: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGAffineTransform transform; // default is CGAffineTransformIdentity. animatable. Please use this property instead of the affineTransform property on the layer
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:913:27: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
badgeView.alpha = 0
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:304:56: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGFloat alpha; // animatable. default is 1.0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:914:26: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
glowView.alpha = 0
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:304:56: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGFloat alpha; // animatable. default is 1.0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:917:20: warning: call to main actor-isolated class method 'addKeyframe(withRelativeStartTime:relativeDuration:animations:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
UIView.addKeyframe(withRelativeStartTime: 0.46, relativeDuration: 0.24) {
^
UIKit.UIView.addKeyframe:3:30: note: calls to class method 'addKeyframe(withRelativeStartTime:relativeDuration:animations:)' from outside of its actor context are implicitly asynchronous
@MainActor open class func addKeyframe(withRelativeStartTime frameStartTime: Double, relativeDuration frameDuration: Double, animations: @escaping () -> Void)}
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:918:26: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
tintView.alpha = 0
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:304:56: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGFloat alpha; // animatable. default is 1.0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:921:21: warning: call to main actor-isolated instance method 'removeFromSuperview()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
overlay.removeFromSuperview()
^
UIKit.UIView.removeFromSuperview:2:22: note: calls to instance method 'removeFromSuperview()' from outside of its actor context are implicitly asynchronous
@MainActor open func removeFromSuperview()}
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:803:20: warning: sending value of non-Sendable type '() -> Void' risks causing data races; this is an error in the Swift 6 language mode
UIView.transition(
~~~~~~~^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:803:20: note: sending task-isolated value of non-Sendable type '() -> Void' to main actor-isolated class method 'transition(with:duration:options:animations:completion:)' risks causing races in between task-isolated and main actor-isolated uses
UIView.transition(
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:884:13: warning: sending 'applyTheme' risks causing data races; this is an error in the Swift 6 language mode
applyTheme()
~~~~~~~~~~~~^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/MainVC.swift:884:13: note: task-isolated 'applyTheme' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
applyTheme()
^~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AALabels.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AASolidgauge.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AAColorAxis.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/DataSource/AAOptionsCSV.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AADrilldown/AADrilldownChartVC.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:73:24: warning: static property 'scriptCache' is not concurrency-safe because non-'Sendable' type 'NSCache<NSString, NSString>' may have shared mutable state; this is an error in the Swift 6 language mode
private static let scriptCache: NSCache<NSString, NSString> = {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h:13:12: note: generic class 'NSCache' does not conform to the 'Sendable' protocol
@interface NSCache <KeyType, ObjectType> : NSObject
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:73:24: note: add '@MainActor' to make static property 'scriptCache' part of global actor 'MainActor'
private static let scriptCache: NSCache<NSString, NSString> = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:73:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static let scriptCache: NSCache<NSString, NSString> = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:65:47: warning: passing non-sendable parameter 'completion' to function expecting a @Sendable closure
DispatchQueue.main.async(execute: completion)
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:61:41: note: parameter 'completion' is implicitly non-sendable
private func completeOnMainThread(_ completion: @escaping () -> Void) {
^
@Sendable
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:133:55: warning: passing non-sendable parameter 'completion' to function expecting a @Sendable closure
DispatchQueue.main.async(execute: completion)
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:106:9: note: parameter 'completion' is implicitly non-sendable
completion: @escaping () -> Void
^
@Sendable
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:348:23: warning: capture of 'self' with non-sendable type 'AAChartViewPluginLoader?' in a '@Sendable' closure
guard let self else {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:71:22: note: class 'AAChartViewPluginLoader' does not conform to the 'Sendable' protocol
internal final class AAChartViewPluginLoader: AAChartViewPluginLoaderProtocol {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:350:21: warning: capture of 'completion' with non-sendable type '(Set<String>) -> Void' in a '@Sendable' closure
completion(Set())
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:350:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completion(Set())
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:413:72: warning: capture of 'completion' with non-sendable type '(Set<String>) -> Void' in an isolated closure; this is an error in the Swift 6 language mode
self.completeOnMainThread(with: Set(), completion: completion)
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:413:72: note: a function type must be marked '@Sendable' to conform to 'Sendable'
self.completeOnMainThread(with: Set(), completion: completion)
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:446:21: warning: call to main actor-isolated instance method 'evaluateJavaScript(_:completionHandler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
webView.evaluateJavaScript(javaScript) { _, error in
^
WebKit.WKWebView.evaluateJavaScript:2:22: note: calls to instance method 'evaluateJavaScript(_:completionHandler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func evaluateJavaScript(_ javaScriptString: String, completionHandler: (@MainActor @Sendable (Any?, (any Error)?) -> Void)? = nil)}
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:486:47: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
DispatchQueue.main.async(execute: block)
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:482:33: note: parameter 'block' is implicitly non-sendable
private func onMainThread(_ block: @escaping () -> Void) {
^
@Sendable
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:447:17: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
completion(error)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:447:17: note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
completion(error)
^~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AACustomStageChartComposer.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1776917837388597-swift-frontend-AAInfographics_ProDemo-AASeries_Envelope.swift-arm64_apple_ios13.1_macabi-o-Onone-1435703874.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 9.3670 seconds (14.3928 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
2.3544 ( 30.8%) 0.6341 ( 36.6%) 2.9885 ( 31.9%) 5.4834 ( 38.1%) parse-and-resolve-imports
2.3516 ( 30.8%) 0.6290 ( 36.3%) 2.9806 ( 31.8%) 5.4729 ( 38.0%) Import resolution
0.6877 ( 9.0%) 0.1086 ( 6.3%) 0.7963 ( 8.5%) 0.8047 ( 5.6%) perform-sema
0.6868 ( 9.0%) 0.1084 ( 6.3%) 0.7952 ( 8.5%) 0.8035 ( 5.6%) Type checking and Semantic analysis
0.3581 ( 4.7%) 0.0526 ( 3.0%) 0.4107 ( 4.4%) 0.4122 ( 2.9%) typecheck-stmt
0.2407 ( 3.2%) 0.0386 ( 2.2%) 0.2793 ( 3.0%) 0.2803 ( 1.9%) typecheck-expr
0.1903 ( 2.5%) 0.0505 ( 2.9%) 0.2408 ( 2.6%) 0.2477 ( 1.7%) typecheck-decl
0.1777 ( 2.3%) 0.0152 ( 0.9%) 0.1930 ( 2.1%) 0.1996 ( 1.4%) IRGen
0.1292 ( 1.7%) 0.0273 ( 1.6%) 0.1566 ( 1.7%) 0.1580 ( 1.1%) build-rewrite-system
0.1372 ( 1.8%) 0.0105 ( 0.6%) 0.1477 ( 1.6%) 0.1490 ( 1.0%) SILGen
0.0970 ( 1.3%) 0.0145 ( 0.8%) 0.1115 ( 1.2%) 0.1116 ( 0.8%) precheck-target
0.0986 ( 1.3%) 0.0051 ( 0.3%) 0.1037 ( 1.1%) 0.1042 ( 0.7%) SILGen-function
0.0470 ( 0.6%) 0.0312 ( 1.8%) 0.0782 ( 0.8%) 0.0789 ( 0.5%) import-clang-decl
0.0640 ( 0.8%) 0.0014 ( 0.1%) 0.0654 ( 0.7%) 0.0670 ( 0.5%) SIL optimization
0.0080 ( 0.1%) 0.0027 ( 0.2%) 0.0107 ( 0.1%) 0.0109 ( 0.1%) load-all-members
0.0011 ( 0.0%) 0.0024 ( 0.1%) 0.0035 ( 0.0%) 0.0035 ( 0.0%) load-stdlib
0.0024 ( 0.0%) 0.0004 ( 0.0%) 0.0028 ( 0.0%) 0.0028 ( 0.0%) typecheck-expr-pattern
0.0016 ( 0.0%) 0.0001 ( 0.0%) 0.0017 ( 0.0%) 0.0017 ( 0.0%) typecheck-for-each
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) SIL verification, pre-optimization
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) SIL verification, post-optimization
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) get-conformance-access-path
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) populate-source-file-class-member-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) associated-type-inference
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) source-file-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
7.6343 (100.0%) 1.7326 (100.0%) 9.3670 (100.0%) 14.3928 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 7.4487 seconds (10.2479 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
5.7458 (100.0%) 1.7029 (100.0%) 7.4487 (100.0%) 10.2479 (100.0%) Building Target
5.7458 (100.0%) 1.7029 (100.0%) 7.4487 (100.0%) 10.2479 (100.0%) Total
SwiftCompile normal arm64 Compiling\ CustomClickEventCallbackMessageVC.swift,\ AAExtension.swift,\ AASubtitle.swift,\ ViewController.swift,\ AAMixedChartComposer.swift,\ AAGradientColor.swift,\ AASerializable.swift,\ AALabel.swift,\ AAPlotLinesElement.swift,\ AASeriesElement.swift,\ AAPackedbubble.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/CustomClickEventCallbackMessageVC.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AATool/AAExtension.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AASubtitle.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/ViewController.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AAMixedChartComposer.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AATool/AAGradientColor.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AASerializable.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AALabel.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AAPlotLinesElement.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartOptions/AASeriesElement.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AAPackedbubble.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1776917837373204-swift-frontend-AAInfographics_ProDemo-CustomClickEventCallbackMessageVC.swift-arm64_apple_ios13.1_macabi-o-Onone-2628633891.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 1.7329 seconds (12.4080 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0622 ( 5.3%) 0.1417 ( 24.9%) 0.2039 ( 11.8%) 5.5325 ( 44.6%) parse-and-resolve-imports
0.0591 ( 5.1%) 0.1393 ( 24.5%) 0.1984 ( 11.4%) 5.5270 ( 44.5%) Import resolution
0.1808 ( 15.5%) 0.0501 ( 8.8%) 0.2309 ( 13.3%) 0.2314 ( 1.9%) perform-sema
0.1800 ( 15.5%) 0.0500 ( 8.8%) 0.2300 ( 13.3%) 0.2305 ( 1.9%) Type checking and Semantic analysis
0.1272 ( 10.9%) 0.0322 ( 5.7%) 0.1593 ( 9.2%) 0.1597 ( 1.3%) typecheck-stmt
0.1222 ( 10.5%) 0.0307 ( 5.4%) 0.1529 ( 8.8%) 0.1533 ( 1.2%) typecheck-expr
0.0903 ( 7.8%) 0.0285 ( 5.0%) 0.1188 ( 6.9%) 0.1189 ( 1.0%) typecheck-decl
0.0761 ( 6.5%) 0.0187 ( 3.3%) 0.0948 ( 5.5%) 0.0950 ( 0.8%) build-rewrite-system
0.0744 ( 6.4%) 0.0143 ( 2.5%) 0.0887 ( 5.1%) 0.0890 ( 0.7%) IRGen
0.0370 ( 3.2%) 0.0363 ( 6.4%) 0.0733 ( 4.2%) 0.0735 ( 0.6%) import-clang-decl
0.0595 ( 5.1%) 0.0080 ( 1.4%) 0.0675 ( 3.9%) 0.0678 ( 0.5%) SILGen
0.0357 ( 3.1%) 0.0033 ( 0.6%) 0.0390 ( 2.3%) 0.0391 ( 0.3%) SILGen-function
0.0248 ( 2.1%) 0.0091 ( 1.6%) 0.0340 ( 2.0%) 0.0342 ( 0.3%) precheck-target
0.0229 ( 2.0%) 0.0006 ( 0.1%) 0.0235 ( 1.4%) 0.0236 ( 0.2%) SIL optimization
0.0014 ( 0.1%) 0.0030 ( 0.5%) 0.0044 ( 0.3%) 0.0189 ( 0.2%) load-stdlib
0.0075 ( 0.6%) 0.0024 ( 0.4%) 0.0099 ( 0.6%) 0.0099 ( 0.1%) load-all-members
0.0017 ( 0.1%) 0.0003 ( 0.1%) 0.0020 ( 0.1%) 0.0020 ( 0.0%) typecheck-expr-pattern
0.0009 ( 0.1%) 0.0001 ( 0.0%) 0.0010 ( 0.1%) 0.0010 ( 0.0%) typecheck-for-each
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) SIL verification, pre-optimization
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) SIL verification, post-optimization
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) perform-whole-module-type-checking
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
1.1644 (100.0%) 0.5685 (100.0%) 1.7329 (100.0%) 12.4080 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 4.3911 seconds (10.1393 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
2.4954 (100.0%) 1.8957 (100.0%) 4.3911 (100.0%) 10.1393 (100.0%) Building Target
2.4954 (100.0%) 1.8957 (100.0%) 4.3911 (100.0%) 10.1393 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/CustomClickEventCallbackMessageVC.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AATool/AAExtension.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AASubtitle.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/ViewController.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AAMixedChartComposer.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AATool/AAGradientColor.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AASerializable.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AALabel.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AAPlotLinesElement.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartOptions/AASeriesElement.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AAPackedbubble.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 Compiling\ AATreemap.swift,\ CustomClickEventCallbackMessageVC2.swift,\ ChartSampleProvider.swift,\ AAYAxis.swift,\ AALayoutAlgorithm.swift,\ AASolidgaugeDataElement.swift,\ AAOptions.swift,\ OfficialChartSample.swift,\ FractalChartListVC.swift,\ AAChartViewPluginProvider.swift,\ AAPlotBandsElement.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AATreemap.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/CustomClickEventCallbackMessageVC2.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AAYAxis.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AALayoutAlgorithm.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AASolidgaugeDataElement.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartOptions/AAOptions.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/OfficialChartSample.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/FractalChartListVC.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginProvider.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AAPlotBandsElement.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AATreemap.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/CustomClickEventCallbackMessageVC2.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:102:24: warning: call to main actor-isolated static method 'sunburstChart()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.sunburstChart(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:44:24: note: calls to static method 'sunburstChart()' from outside of its actor context are implicitly asynchronous
public static func sunburstChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:44:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func sunburstChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:103:24: warning: call to main actor-isolated static method 'streamgraphChart()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.streamgraphChart(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:95:24: note: calls to static method 'streamgraphChart()' from outside of its actor context are implicitly asynchronous
public static func streamgraphChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:95:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func streamgraphChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:104:24: warning: call to main actor-isolated static method 'vectorChart()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.vectorChart(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:126:24: note: calls to static method 'vectorChart()' from outside of its actor context are implicitly asynchronous
public static func vectorChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:126:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func vectorChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:105:24: warning: call to main actor-isolated static method 'bellcurveChart()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.bellcurveChart(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:140:24: note: calls to static method 'bellcurveChart()' from outside of its actor context are implicitly asynchronous
public static func bellcurveChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:140:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func bellcurveChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:106:24: warning: call to main actor-isolated static method 'timelineChart()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.timelineChart(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:180:24: note: calls to static method 'timelineChart()' from outside of its actor context are implicitly asynchronous
public static func timelineChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:180:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func timelineChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:107:24: warning: call to main actor-isolated static method 'itemChart()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.itemChart(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:324:24: note: calls to static method 'itemChart()' from outside of its actor context are implicitly asynchronous
public static func itemChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:324:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func itemChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:108:24: warning: call to main actor-isolated static method 'windbarbChart()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.windbarbChart(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:390:24: note: calls to static method 'windbarbChart()' from outside of its actor context are implicitly asynchronous
public static func windbarbChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:390:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func windbarbChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:109:24: warning: call to main actor-isolated static method 'wordcloudChart()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.wordcloudChart(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:413:24: note: calls to static method 'wordcloudChart()' from outside of its actor context are implicitly asynchronous
public static func wordcloudChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:413:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func wordcloudChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:110:24: warning: call to main actor-isolated static method 'flameChart()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.flameChart(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:427:24: note: calls to static method 'flameChart()' from outside of its actor context are implicitly asynchronous
public static func flameChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:427:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func flameChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:111:24: warning: call to main actor-isolated static method 'itemChart2()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.itemChart2(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:346:24: note: calls to static method 'itemChart2()' from outside of its actor context are implicitly asynchronous
public static func itemChart2() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:346:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func itemChart2() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:112:24: warning: call to main actor-isolated static method 'itemChart3()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.itemChart3(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:368:24: note: calls to static method 'itemChart3()' from outside of its actor context are implicitly asynchronous
public static func itemChart3() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:368:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func itemChart3() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:113:24: warning: call to main actor-isolated static method 'icicleChart()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.icicleChart(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:489:24: note: calls to static method 'icicleChart()' from outside of its actor context are implicitly asynchronous
public static func icicleChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:489:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func icicleChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:114:24: warning: call to main actor-isolated static method 'sunburstChart2()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.sunburstChart2(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:507:24: note: calls to static method 'sunburstChart2()' from outside of its actor context are implicitly asynchronous
public static func sunburstChart2() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:507:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func sunburstChart2() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:115:24: warning: call to main actor-isolated static method 'solidgaugeChart()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.solidgaugeChart(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:553:24: note: calls to static method 'solidgaugeChart()' from outside of its actor context are implicitly asynchronous
public static func solidgaugeChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:553:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func solidgaugeChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:116:24: warning: call to main actor-isolated static method 'parallelCoordinatesSplineChart()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.parallelCoordinatesSplineChart(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:730:24: note: calls to static method 'parallelCoordinatesSplineChart()' from outside of its actor context are implicitly asynchronous
public static func parallelCoordinatesSplineChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:730:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func parallelCoordinatesSplineChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:117:24: warning: call to main actor-isolated static method 'parallelCoordinatesLineChart()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.parallelCoordinatesLineChart(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:835:24: note: calls to static method 'parallelCoordinatesLineChart()' from outside of its actor context are implicitly asynchronous
public static func parallelCoordinatesLineChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:835:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func parallelCoordinatesLineChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:118:24: warning: call to main actor-isolated static method 'volinPlotChart()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.volinPlotChart(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:851:24: note: calls to static method 'volinPlotChart()' from outside of its actor context are implicitly asynchronous
public static func volinPlotChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:851:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func volinPlotChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:119:24: warning: call to main actor-isolated static method 'variablepieChart()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.variablepieChart(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:895:24: note: calls to static method 'variablepieChart()' from outside of its actor context are implicitly asynchronous
public static func variablepieChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:895:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func variablepieChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:120:24: warning: call to main actor-isolated static method 'semicircleSolidGaugeChart()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ChartProVC.semicircleSolidGaugeChart(),
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:926:24: note: calls to static method 'semicircleSolidGaugeChart()' from outside of its actor context are implicitly asynchronous
public static func semicircleSolidGaugeChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartProVC.swift:926:24: note: main actor isolation inferred from inheritance from class 'AABaseChartVC'
public static func semicircleSolidGaugeChart() -> AAOptions {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleProvider.swift:100:16: note: add '@MainActor' to make class method 'otherProChartSamples()' part of global actor 'MainActor'
class func otherProChartSamples() -> [AAOptions] {
^
@MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AAYAxis.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AALayoutAlgorithm.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AASolidgaugeDataElement.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartOptions/AAOptions.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/OfficialChartSample.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/FractalChartListVC.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginProvider.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginProvider.swift:95:24: warning: static property 'pluginConfigurations' is not concurrency-safe because non-'Sendable' type '[AAChartViewPluginProvider.AAChartPluginConfiguration]' may have shared mutable state; this is an error in the Swift 6 language mode
private static let pluginConfigurations: [AAChartPluginConfiguration] = [
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginProvider.swift:85:20: note: consider making struct 'AAChartPluginConfiguration' conform to the 'Sendable' protocol
private struct AAChartPluginConfiguration {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginProvider.swift:95:24: note: add '@MainActor' to make static property 'pluginConfigurations' part of global actor 'MainActor'
private static let pluginConfigurations: [AAChartPluginConfiguration] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginProvider.swift:95:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static let pluginConfigurations: [AAChartPluginConfiguration] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginProvider.swift:157:24: warning: static property 'scriptsByChartType' is not concurrency-safe because non-'Sendable' type '[AAChartType : Set<AAChartPluginScriptType>]' may have shared mutable state; this is an error in the Swift 6 language mode
private static let scriptsByChartType: [AAChartType: Set<AAChartPluginScriptType>] = {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartOptions/AAChartModel.swift:71:13: note: consider making enum 'AAChartType' conform to the 'Sendable' protocol
public enum AAChartType: String {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginProvider.swift:157:24: note: add '@MainActor' to make static property 'scriptsByChartType' part of global actor 'MainActor'
private static let scriptsByChartType: [AAChartType: Set<AAChartPluginScriptType>] = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginProvider.swift:157:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static let scriptsByChartType: [AAChartType: Set<AAChartPluginScriptType>] = {
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AAPlotBandsElement.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1776917837380123-swift-frontend-AAInfographics_ProDemo-AATreemap.swift-arm64_apple_ios13.1_macabi-o-Onone-3699311677.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 7.5790 seconds (14.0328 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
1.8064 ( 29.5%) 0.5790 ( 39.8%) 2.3854 ( 31.5%) 5.5975 ( 39.9%) parse-and-resolve-imports
1.8035 ( 29.4%) 0.5764 ( 39.7%) 2.3799 ( 31.4%) 5.5920 ( 39.8%) Import resolution
0.5300 ( 8.7%) 0.0526 ( 3.6%) 0.5826 ( 7.7%) 0.5853 ( 4.2%) perform-sema
0.5285 ( 8.6%) 0.0524 ( 3.6%) 0.5809 ( 7.7%) 0.5836 ( 4.2%) Type checking and Semantic analysis
0.4465 ( 7.3%) 0.0342 ( 2.4%) 0.4807 ( 6.3%) 0.4836 ( 3.4%) typecheck-stmt
0.4377 ( 7.1%) 0.0350 ( 2.4%) 0.4727 ( 6.2%) 0.4755 ( 3.4%) typecheck-expr
0.1222 ( 2.0%) 0.0278 ( 1.9%) 0.1500 ( 2.0%) 0.1501 ( 1.1%) build-rewrite-system
0.1132 ( 1.8%) 0.0244 ( 1.7%) 0.1376 ( 1.8%) 0.1381 ( 1.0%) typecheck-decl
0.0846 ( 1.4%) 0.0120 ( 0.8%) 0.0966 ( 1.3%) 0.0974 ( 0.7%) IRGen
0.0494 ( 0.8%) 0.0399 ( 2.7%) 0.0892 ( 1.2%) 0.0903 ( 0.6%) import-clang-decl
0.0657 ( 1.1%) 0.0052 ( 0.4%) 0.0709 ( 0.9%) 0.0735 ( 0.5%) SILGen
0.0535 ( 0.9%) 0.0057 ( 0.4%) 0.0593 ( 0.8%) 0.0593 ( 0.4%) precheck-target
0.0401 ( 0.7%) 0.0024 ( 0.2%) 0.0425 ( 0.6%) 0.0450 ( 0.3%) SILGen-function
0.0254 ( 0.4%) 0.0001 ( 0.0%) 0.0255 ( 0.3%) 0.0255 ( 0.2%) SIL optimization
0.0109 ( 0.2%) 0.0032 ( 0.2%) 0.0141 ( 0.2%) 0.0141 ( 0.1%) load-all-members
0.0012 ( 0.0%) 0.0027 ( 0.2%) 0.0039 ( 0.1%) 0.0140 ( 0.1%) load-stdlib
0.0041 ( 0.1%) 0.0006 ( 0.0%) 0.0046 ( 0.1%) 0.0053 ( 0.0%) typecheck-expr-pattern
0.0014 ( 0.0%) 0.0001 ( 0.0%) 0.0014 ( 0.0%) 0.0015 ( 0.0%) typecheck-for-each
0.0007 ( 0.0%) 0.0000 ( 0.0%) 0.0007 ( 0.0%) 0.0007 ( 0.0%) perform-whole-module-type-checking
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) SIL verification, pre-optimization
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, post-optimization
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
6.1253 (100.0%) 1.4537 (100.0%) 7.5790 (100.0%) 14.0328 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 6.8829 seconds (10.5166 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
4.6495 (100.0%) 2.2334 (100.0%) 6.8829 (100.0%) 10.5166 (100.0%) Building Target
4.6495 (100.0%) 2.2334 (100.0%) 6.8829 (100.0%) 10.5166 (100.0%) Total
SwiftCompile normal arm64 Compiling\ AAChartModel.swift,\ AALevelsElement.swift,\ AAParallelAxes.swift,\ AAAxis.swift,\ AABubbleChartVC.swift,\ ChartSampleTableViewCell.swift,\ AAStyle.swift,\ OfficialChartSampleVC.swift,\ AAColumnVariantChartVC.swift,\ AAOrganization.swift,\ AASankeyChartComposer.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartOptions/AAChartModel.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AALevelsElement.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AAParallelAxes.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AAAxis.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABubbleChartVC.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleTableViewCell.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AAStyle.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/OfficialChartSampleVC.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AAColumnVariantChartVC.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AAOrganization.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AASankeyChartComposer.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1776917837385082-swift-frontend-AAInfographics_ProDemo-AAChartModel.swift-arm64_apple_ios13.1_macabi-o-Onone-39085247.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 1.4972 seconds (12.2462 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0594 ( 6.1%) 0.1289 ( 24.7%) 0.1883 ( 12.6%) 5.5604 ( 45.4%) parse-and-resolve-imports
0.0563 ( 5.8%) 0.1261 ( 24.2%) 0.1824 ( 12.2%) 5.5545 ( 45.4%) Import resolution
0.1650 ( 16.9%) 0.0487 ( 9.3%) 0.2137 ( 14.3%) 0.2150 ( 1.8%) build-rewrite-system
0.1183 ( 12.1%) 0.0353 ( 6.8%) 0.1535 ( 10.3%) 0.1537 ( 1.3%) perform-sema
0.1174 ( 12.0%) 0.0351 ( 6.7%) 0.1525 ( 10.2%) 0.1527 ( 1.2%) Type checking and Semantic analysis
0.0659 ( 6.8%) 0.0209 ( 4.0%) 0.0868 ( 5.8%) 0.0868 ( 0.7%) typecheck-stmt
0.0658 ( 6.7%) 0.0204 ( 3.9%) 0.0862 ( 5.8%) 0.0864 ( 0.7%) typecheck-decl
0.0466 ( 4.8%) 0.0358 ( 6.9%) 0.0824 ( 5.5%) 0.0834 ( 0.7%) import-clang-decl
0.0668 ( 6.8%) 0.0153 ( 2.9%) 0.0820 ( 5.5%) 0.0828 ( 0.7%) IRGen
0.0643 ( 6.6%) 0.0154 ( 3.0%) 0.0798 ( 5.3%) 0.0802 ( 0.7%) SILGen
0.0540 ( 5.5%) 0.0174 ( 3.3%) 0.0714 ( 4.8%) 0.0714 ( 0.6%) typecheck-expr
0.0402 ( 4.1%) 0.0100 ( 1.9%) 0.0502 ( 3.3%) 0.0502 ( 0.4%) SILGen-function
0.0181 ( 1.9%) 0.0004 ( 0.1%) 0.0185 ( 1.2%) 0.0185 ( 0.2%) SIL optimization
0.0141 ( 1.4%) 0.0038 ( 0.7%) 0.0179 ( 1.2%) 0.0179 ( 0.1%) typecheck-expr-pattern
0.0109 ( 1.1%) 0.0033 ( 0.6%) 0.0142 ( 0.9%) 0.0142 ( 0.1%) precheck-target
0.0102 ( 1.0%) 0.0029 ( 0.6%) 0.0131 ( 0.9%) 0.0135 ( 0.1%) load-all-members
0.0012 ( 0.1%) 0.0025 ( 0.5%) 0.0037 ( 0.2%) 0.0038 ( 0.0%) load-stdlib
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) SIL verification, pre-optimization
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) SIL verification, post-optimization
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) perform-whole-module-type-checking
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.9750 (100.0%) 0.5222 (100.0%) 1.4972 (100.0%) 12.2462 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 4.6513 seconds (10.4126 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
2.7499 (100.0%) 1.9014 (100.0%) 4.6513 (100.0%) 10.4126 (100.0%) Building Target
2.7499 (100.0%) 1.9014 (100.0%) 4.6513 (100.0%) 10.4126 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartOptions/AAChartModel.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AALevelsElement.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AAParallelAxes.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AAAxis.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABubbleChartVC.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartSampleTableViewCell.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AAStyle.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/OfficialChartSampleVC.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AAColumnVariantChartVC.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AAOrganization.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AASankeyChartComposer.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 Compiling\ AABubbleStellarChartComposer.swift,\ ProChartTableGalleryVC.swift,\ ProChartCollectionGalleryVC.swift,\ ProChartCollectionCell.swift,\ AAOptions3D.swift,\ AAChart+Options3D.swift,\ AAOptions+ZAxis.swift,\ AASeries+Depth.swift,\ AAOptions3DChartComposer.swift,\ AAOptions3DChartVC.swift,\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AABubbleStellarChartComposer.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ProChartTableGalleryVC.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ProChartCollectionGalleryVC.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ProChartCollectionCell.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAOptions3D.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAChart+Options3D.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAOptions+ZAxis.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAOptions3DChartComposer.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAOptions3DChartVC.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1776917837388687-swift-frontend-AAInfographics_ProDemo-AABubbleStellarChartComposer.swift-arm64_apple_ios13.1_macabi-o-Onone-1700882637.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 2.1657 seconds (12.8279 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0599 ( 3.9%) 0.1422 ( 22.0%) 0.2021 ( 9.3%) 5.5302 ( 43.1%) parse-and-resolve-imports
0.0565 ( 3.7%) 0.1395 ( 21.5%) 0.1960 ( 9.1%) 5.5241 ( 43.1%) Import resolution
0.2756 ( 18.2%) 0.0698 ( 10.8%) 0.3454 ( 15.9%) 0.3460 ( 2.7%) perform-sema
0.2734 ( 18.0%) 0.0697 ( 10.8%) 0.3431 ( 15.8%) 0.3436 ( 2.7%) Type checking and Semantic analysis
0.2049 ( 13.5%) 0.0468 ( 7.2%) 0.2516 ( 11.6%) 0.2522 ( 2.0%) typecheck-stmt
0.1650 ( 10.9%) 0.0513 ( 7.9%) 0.2164 ( 10.0%) 0.2181 ( 1.7%) build-rewrite-system
0.1141 ( 7.5%) 0.0237 ( 3.7%) 0.1378 ( 6.4%) 0.1381 ( 1.1%) typecheck-expr
0.0868 ( 5.7%) 0.0255 ( 3.9%) 0.1123 ( 5.2%) 0.1124 ( 0.9%) typecheck-decl
0.0633 ( 4.2%) 0.0454 ( 7.0%) 0.1086 ( 5.0%) 0.1095 ( 0.9%) import-clang-decl
0.0665 ( 4.4%) 0.0114 ( 1.8%) 0.0779 ( 3.6%) 0.0784 ( 0.6%) IRGen
0.0527 ( 3.5%) 0.0045 ( 0.7%) 0.0573 ( 2.6%) 0.0576 ( 0.4%) SILGen
0.0370 ( 2.4%) 0.0028 ( 0.4%) 0.0399 ( 1.8%) 0.0400 ( 0.3%) SILGen-function
0.0308 ( 2.0%) 0.0074 ( 1.1%) 0.0381 ( 1.8%) 0.0382 ( 0.3%) precheck-target
0.0164 ( 1.1%) 0.0001 ( 0.0%) 0.0165 ( 0.8%) 0.0165 ( 0.1%) SIL optimization
0.0111 ( 0.7%) 0.0044 ( 0.7%) 0.0155 ( 0.7%) 0.0156 ( 0.1%) load-all-members
0.0011 ( 0.1%) 0.0027 ( 0.4%) 0.0037 ( 0.2%) 0.0037 ( 0.0%) load-stdlib
0.0016 ( 0.1%) 0.0003 ( 0.0%) 0.0019 ( 0.1%) 0.0019 ( 0.0%) typecheck-expr-pattern
0.0013 ( 0.1%) 0.0000 ( 0.0%) 0.0013 ( 0.1%) 0.0013 ( 0.0%) perform-whole-module-type-checking
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, pre-optimization
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
1.5182 (100.0%) 0.6475 (100.0%) 2.1657 (100.0%) 12.8279 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 4.7067 seconds (10.4366 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
2.8084 (100.0%) 1.8983 (100.0%) 4.7067 (100.0%) 10.4366 (100.0%) Building Target
2.8084 (100.0%) 1.8983 (100.0%) 4.7067 (100.0%) 10.4366 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AABubbleStellarChartComposer.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ProChartTableGalleryVC.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ProChartCollectionGalleryVC.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ProChartCollectionCell.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAOptions3D.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAChart+Options3D.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAChart+Options3D.swift:10:13: warning: var 'aaChartOptions3DKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var aaChartOptions3DKey: UInt8 = 0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAChart+Options3D.swift:10:13: note: convert 'aaChartOptions3DKey' to a 'let' constant to make 'Sendable' shared state immutable
private var aaChartOptions3DKey: UInt8 = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAChart+Options3D.swift:10:13: note: add '@MainActor' to make var 'aaChartOptions3DKey' part of global actor 'MainActor'
private var aaChartOptions3DKey: UInt8 = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAChart+Options3D.swift:10:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var aaChartOptions3DKey: UInt8 = 0
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAOptions+ZAxis.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAOptions+ZAxis.swift:10:13: warning: var 'aaOptionsZAxisKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var aaOptionsZAxisKey: UInt8 = 0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAOptions+ZAxis.swift:10:13: note: convert 'aaOptionsZAxisKey' to a 'let' constant to make 'Sendable' shared state immutable
private var aaOptionsZAxisKey: UInt8 = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAOptions+ZAxis.swift:10:13: note: add '@MainActor' to make var 'aaOptionsZAxisKey' part of global actor 'MainActor'
private var aaOptionsZAxisKey: UInt8 = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAOptions+ZAxis.swift:10:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var aaOptionsZAxisKey: UInt8 = 0
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:10:13: warning: var 'aaSeriesGroupZPaddingKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var aaSeriesGroupZPaddingKey: UInt8 = 0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:10:13: note: convert 'aaSeriesGroupZPaddingKey' to a 'let' constant to make 'Sendable' shared state immutable
private var aaSeriesGroupZPaddingKey: UInt8 = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:10:13: note: add '@MainActor' to make var 'aaSeriesGroupZPaddingKey' part of global actor 'MainActor'
private var aaSeriesGroupZPaddingKey: UInt8 = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:10:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var aaSeriesGroupZPaddingKey: UInt8 = 0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:11:13: warning: var 'aaSeriesDepthKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var aaSeriesDepthKey: UInt8 = 0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:11:13: note: convert 'aaSeriesDepthKey' to a 'let' constant to make 'Sendable' shared state immutable
private var aaSeriesDepthKey: UInt8 = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:11:13: note: add '@MainActor' to make var 'aaSeriesDepthKey' part of global actor 'MainActor'
private var aaSeriesDepthKey: UInt8 = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:11:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var aaSeriesDepthKey: UInt8 = 0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:12:13: warning: var 'aaSeriesGroupingKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var aaSeriesGroupingKey: UInt8 = 0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:12:13: note: convert 'aaSeriesGroupingKey' to a 'let' constant to make 'Sendable' shared state immutable
private var aaSeriesGroupingKey: UInt8 = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:12:13: note: add '@MainActor' to make var 'aaSeriesGroupingKey' part of global actor 'MainActor'
private var aaSeriesGroupingKey: UInt8 = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:12:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var aaSeriesGroupingKey: UInt8 = 0
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAOptions3DChartComposer.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAOptions3DChartComposer.swift:178:13: warning: variable 'chart' was never mutated; consider changing to 'let' constant
var chart = AAChart()
~~~ ^
let
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAOptions3DChartVC.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 Compiling\ AASeries.swift,\ AAEnvelope.swift,\ AACustomStageChartVC.swift,\ AAExtraFractalChartData.swift,\ AABaseChartVC.swift,\ AAColumnVariantChartComposer.swift,\ AABoostChartVC.swift,\ AAData.swift,\ AALegend.swift,\ AAPictorialChartComposer.swift,\ AAChartView+API.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AASeries.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AAStageSeriesPlugin/AAEnvelope.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AACustomStageChartVC.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AABoost/AAExtraFractalChartData.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AAColumnVariantChartComposer.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AADrilldown/AABoostChartVC.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AAData.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AALegend.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AAPictorialChartComposer.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView+API.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1776917837389445-swift-frontend-AAInfographics_ProDemo-AASeries.swift-arm64_apple_ios13.1_macabi-o-Onone-2113248952.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 3.1422 seconds (13.8330 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0568 ( 2.3%) 0.1095 ( 16.2%) 0.1664 ( 5.3%) 5.5047 ( 39.8%) parse-and-resolve-imports
0.0535 ( 2.2%) 0.1068 ( 15.8%) 0.1603 ( 5.1%) 5.4986 ( 39.8%) Import resolution
0.4839 ( 19.6%) 0.0959 ( 14.2%) 0.5798 ( 18.5%) 0.5829 ( 4.2%) perform-sema
0.4827 ( 19.6%) 0.0957 ( 14.1%) 0.5784 ( 18.4%) 0.5815 ( 4.2%) Type checking and Semantic analysis
0.4143 ( 16.8%) 0.0743 ( 11.0%) 0.4886 ( 15.5%) 0.4898 ( 3.5%) typecheck-stmt
0.3217 ( 13.1%) 0.0592 ( 8.7%) 0.3809 ( 12.1%) 0.3821 ( 2.8%) typecheck-expr
0.1935 ( 7.8%) 0.0423 ( 6.3%) 0.2358 ( 7.5%) 0.2381 ( 1.7%) typecheck-decl
0.0934 ( 3.8%) 0.0143 ( 2.1%) 0.1077 ( 3.4%) 0.1086 ( 0.8%) IRGen
0.0814 ( 3.3%) 0.0060 ( 0.9%) 0.0873 ( 2.8%) 0.0882 ( 0.6%) SILGen
0.0731 ( 3.0%) 0.0133 ( 2.0%) 0.0864 ( 2.7%) 0.0864 ( 0.6%) precheck-target
0.0480 ( 1.9%) 0.0348 ( 5.1%) 0.0828 ( 2.6%) 0.0828 ( 0.6%) import-clang-decl
0.0598 ( 2.4%) 0.0159 ( 2.4%) 0.0757 ( 2.4%) 0.0767 ( 0.6%) build-rewrite-system
0.0508 ( 2.1%) 0.0022 ( 0.3%) 0.0530 ( 1.7%) 0.0533 ( 0.4%) SILGen-function
0.0377 ( 1.5%) 0.0002 ( 0.0%) 0.0379 ( 1.2%) 0.0380 ( 0.3%) SIL optimization
0.0076 ( 0.3%) 0.0028 ( 0.4%) 0.0104 ( 0.3%) 0.0105 ( 0.1%) load-all-members
0.0012 ( 0.0%) 0.0030 ( 0.4%) 0.0042 ( 0.1%) 0.0042 ( 0.0%) load-stdlib
0.0032 ( 0.1%) 0.0002 ( 0.0%) 0.0034 ( 0.1%) 0.0034 ( 0.0%) typecheck-for-each
0.0020 ( 0.1%) 0.0003 ( 0.0%) 0.0023 ( 0.1%) 0.0023 ( 0.0%) typecheck-expr-pattern
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) perform-whole-module-type-checking
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) SIL verification, pre-optimization
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) SIL verification, post-optimization
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) get-conformance-access-path
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
2.4653 (100.0%) 0.6769 (100.0%) 3.1422 (100.0%) 13.8330 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 4.3153 seconds (10.0313 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
2.6302 (100.0%) 1.6851 (100.0%) 4.3153 (100.0%) 10.0313 (100.0%) Building Target
2.6302 (100.0%) 1.6851 (100.0%) 4.3153 (100.0%) 10.0313 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AASeries.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AAStageSeriesPlugin/AAEnvelope.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AACustomStageChartVC.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AACustomStageChartVC.swift:269:15: warning: main actor-isolated instance method 'aaChartViewDidFinishLoad' cannot be used to satisfy nonisolated requirement from protocol 'AAChartViewDelegate'; this is an error in the Swift 6 language mode
open func aaChartViewDidFinishLoad(_ aaChartView: AAChartView) {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AACustomStageChartVC.swift:269:15: note: add 'nonisolated' to 'aaChartViewDidFinishLoad' to make this instance method not isolated to the actor
open func aaChartViewDidFinishLoad(_ aaChartView: AAChartView) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AACustomStageChartVC.swift:268:33: note: add '@preconcurrency' to the 'AAChartViewDelegate' conformance to defer isolation checking to run time
extension AACustomStageChartVC: AAChartViewDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:36:25: note: mark the protocol requirement 'aaChartViewDidFinishLoad' 'async' to allow actor-isolated conformances
@objc optional func aaChartViewDidFinishLoad(_ aaChartView: AAChartView)
^
async
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AACustomStageChartVC.swift:273:15: warning: main actor-isolated instance method 'aaChartView(_:clickEventMessage:)' cannot be used to satisfy nonisolated requirement from protocol 'AAChartViewDelegate'; this is an error in the Swift 6 language mode
open func aaChartView(_ aaChartView: AAChartView, clickEventMessage: AAClickEventMessageModel) {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AACustomStageChartVC.swift:273:15: note: add 'nonisolated' to 'aaChartView(_:clickEventMessage:)' to make this instance method not isolated to the actor
open func aaChartView(_ aaChartView: AAChartView, clickEventMessage: AAClickEventMessageModel) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:38:25: note: mark the protocol requirement 'aaChartView(_:clickEventMessage:)' 'async' to allow actor-isolated conformances
@objc optional func aaChartView(_ aaChartView: AAChartView, clickEventMessage: AAClickEventMessageModel)
^
async
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AACustomStageChartVC.swift:296:15: warning: main actor-isolated instance method 'aaChartView(_:moveOverEventMessage:)' cannot be used to satisfy nonisolated requirement from protocol 'AAChartViewDelegate'; this is an error in the Swift 6 language mode
open func aaChartView(_ aaChartView: AAChartView, moveOverEventMessage: AAMoveOverEventMessageModel) {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AACustomStageChartVC.swift:296:15: note: add 'nonisolated' to 'aaChartView(_:moveOverEventMessage:)' to make this instance method not isolated to the actor
open func aaChartView(_ aaChartView: AAChartView, moveOverEventMessage: AAMoveOverEventMessageModel) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:39:25: note: mark the protocol requirement 'aaChartView(_:moveOverEventMessage:)' 'async' to allow actor-isolated conformances
@objc optional func aaChartView(_ aaChartView: AAChartView, moveOverEventMessage: AAMoveOverEventMessageModel)
^
async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AABoost/AAExtraFractalChartData.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:261:15: warning: main actor-isolated instance method 'aaChartViewDidFinishLoad' cannot be used to satisfy nonisolated requirement from protocol 'AAChartViewDelegate'; this is an error in the Swift 6 language mode
open func aaChartViewDidFinishLoad(_ aaChartView: AAChartView) {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:261:15: note: add 'nonisolated' to 'aaChartViewDidFinishLoad' to make this instance method not isolated to the actor
open func aaChartViewDidFinishLoad(_ aaChartView: AAChartView) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:260:26: note: add '@preconcurrency' to the 'AAChartViewDelegate' conformance to defer isolation checking to run time
extension AABaseChartVC: AAChartViewDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:36:25: note: mark the protocol requirement 'aaChartViewDidFinishLoad' 'async' to allow actor-isolated conformances
@objc optional func aaChartViewDidFinishLoad(_ aaChartView: AAChartView)
^
async
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:265:15: warning: main actor-isolated instance method 'aaChartView(_:clickEventMessage:)' cannot be used to satisfy nonisolated requirement from protocol 'AAChartViewDelegate'; this is an error in the Swift 6 language mode
open func aaChartView(_ aaChartView: AAChartView, clickEventMessage: AAClickEventMessageModel) {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:265:15: note: add 'nonisolated' to 'aaChartView(_:clickEventMessage:)' to make this instance method not isolated to the actor
open func aaChartView(_ aaChartView: AAChartView, clickEventMessage: AAClickEventMessageModel) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:38:25: note: mark the protocol requirement 'aaChartView(_:clickEventMessage:)' 'async' to allow actor-isolated conformances
@objc optional func aaChartView(_ aaChartView: AAChartView, clickEventMessage: AAClickEventMessageModel)
^
async
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:288:15: warning: main actor-isolated instance method 'aaChartView(_:moveOverEventMessage:)' cannot be used to satisfy nonisolated requirement from protocol 'AAChartViewDelegate'; this is an error in the Swift 6 language mode
open func aaChartView(_ aaChartView: AAChartView, moveOverEventMessage: AAMoveOverEventMessageModel) {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:288:15: note: add 'nonisolated' to 'aaChartView(_:moveOverEventMessage:)' to make this instance method not isolated to the actor
open func aaChartView(_ aaChartView: AAChartView, moveOverEventMessage: AAMoveOverEventMessageModel) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:39:25: note: mark the protocol requirement 'aaChartView(_:moveOverEventMessage:)' 'async' to allow actor-isolated conformances
@objc optional func aaChartView(_ aaChartView: AAChartView, moveOverEventMessage: AAMoveOverEventMessageModel)
^
async
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:107:51: warning: 'statusBarFrame' was deprecated in Mac Catalyst 13.1: Use the statusBarManager property of the window scene instead.
let statusBarFrame = UIApplication.shared.statusBarFrame
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:169:25: warning: call to main actor-isolated instance method 'handleDeviceOrientationChangeEvent()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
self?.handleDeviceOrientationChangeEvent()
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:174:18: note: calls to instance method 'handleDeviceOrientationChangeEvent()' from outside of its actor context are implicitly asynchronous
private func handleDeviceOrientationChangeEvent() {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:174:18: note: main actor isolation inferred from inheritance from class 'UIViewController'
private func handleDeviceOrientationChangeEvent() {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:175:48: warning: 'statusBarOrientation' was deprecated in Mac Catalyst 13.1: Use the interfaceOrientation property of the window scene instead.
let orientation = UIApplication.shared.statusBarOrientation
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AAColumnVariantChartComposer.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AADrilldown/AABoostChartVC.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AAData.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AALegend.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AAPictorialChartComposer.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView+API.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 Compiling\ AAOptionsSeries.swift,\ AABoost.swift,\ AAHeatOrTreeMapChartComposer.swift,\ AAColor.swift,\ AppDelegate.swift,\ SceneDelegate.swift,\ AAPane.swift,\ AARelationshipChartVC.swift,\ AACredits.swift,\ AAHeatOrTreeMapChartVC.swift,\ AAOptionsData.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/DataSource/AAOptionsSeries.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AABoost/AABoost.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AAHeatOrTreeMapChartComposer.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AATool/AAColor.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/AppDelegate.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/SceneDelegate.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AAPane.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AARelationshipChartVC.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AACredits.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AAHeatOrTreeMapChartVC.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/DataSource/AAOptionsData.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1776917837382164-swift-frontend-AAInfographics_ProDemo-AAOptionsSeries.swift-arm64_apple_ios13.1_macabi-o-Onone-267334639.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 1.8044 seconds (12.4955 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0563 ( 4.4%) 0.1074 ( 20.8%) 0.1638 ( 9.1%) 5.4999 ( 44.0%) parse-and-resolve-imports
0.0528 ( 4.1%) 0.1052 ( 20.3%) 0.1580 ( 8.8%) 5.4941 ( 44.0%) Import resolution
0.2399 ( 18.6%) 0.0599 ( 11.6%) 0.2998 ( 16.6%) 0.3004 ( 2.4%) perform-sema
0.2385 ( 18.5%) 0.0597 ( 11.5%) 0.2982 ( 16.5%) 0.2988 ( 2.4%) Type checking and Semantic analysis
0.1941 ( 15.1%) 0.0460 ( 8.9%) 0.2401 ( 13.3%) 0.2408 ( 1.9%) typecheck-stmt
0.0918 ( 7.1%) 0.0243 ( 4.7%) 0.1161 ( 6.4%) 0.1167 ( 0.9%) typecheck-expr
0.0869 ( 6.8%) 0.0270 ( 5.2%) 0.1139 ( 6.3%) 0.1143 ( 0.9%) typecheck-decl
0.0792 ( 6.2%) 0.0197 ( 3.8%) 0.0989 ( 5.5%) 0.0990 ( 0.8%) build-rewrite-system
0.0629 ( 4.9%) 0.0141 ( 2.7%) 0.0770 ( 4.3%) 0.0773 ( 0.6%) IRGen
0.0413 ( 3.2%) 0.0310 ( 6.0%) 0.0723 ( 4.0%) 0.0723 ( 0.6%) import-clang-decl
0.0477 ( 3.7%) 0.0052 ( 1.0%) 0.0529 ( 2.9%) 0.0539 ( 0.4%) SILGen
0.0346 ( 2.7%) 0.0092 ( 1.8%) 0.0438 ( 2.4%) 0.0438 ( 0.4%) precheck-target
0.0257 ( 2.0%) 0.0023 ( 0.4%) 0.0279 ( 1.5%) 0.0288 ( 0.2%) SILGen-function
0.0182 ( 1.4%) 0.0002 ( 0.0%) 0.0184 ( 1.0%) 0.0184 ( 0.1%) SIL optimization
0.0012 ( 0.1%) 0.0029 ( 0.6%) 0.0041 ( 0.2%) 0.0166 ( 0.1%) load-stdlib
0.0079 ( 0.6%) 0.0023 ( 0.4%) 0.0102 ( 0.6%) 0.0113 ( 0.1%) load-all-members
0.0046 ( 0.4%) 0.0010 ( 0.2%) 0.0056 ( 0.3%) 0.0056 ( 0.0%) typecheck-expr-pattern
0.0022 ( 0.2%) 0.0001 ( 0.0%) 0.0023 ( 0.1%) 0.0023 ( 0.0%) typecheck-for-each
0.0007 ( 0.1%) 0.0000 ( 0.0%) 0.0007 ( 0.0%) 0.0007 ( 0.0%) perform-whole-module-type-checking
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) SIL verification, pre-optimization
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
1.2870 (100.0%) 0.5174 (100.0%) 1.8044 (100.0%) 12.4955 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 4.2397 seconds (9.9996 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
2.3916 (100.0%) 1.8481 (100.0%) 4.2397 (100.0%) 9.9996 (100.0%) Building Target
2.3916 (100.0%) 1.8481 (100.0%) 4.2397 (100.0%) 9.9996 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/DataSource/AAOptionsSeries.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AABoost/AABoost.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AAHeatOrTreeMapChartComposer.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AATool/AAColor.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/AppDelegate.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/SceneDelegate.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AAPane.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AARelationshipChartVC.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AACredits.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AAHeatOrTreeMapChartVC.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/DataSource/AAOptionsData.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftEmitModule normal arm64 Emitting\ module\ for\ AAInfographics_ProDemo (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1776917837345054-swift-frontend-AAInfographics_ProDemo-all-arm64_apple_ios13.1_macabi-swiftmodule-Onone-2444222325.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 2.4692 seconds (13.4282 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0608 ( 3.3%) 0.1159 ( 17.9%) 0.1767 ( 7.2%) 5.6459 ( 42.0%) parse-and-resolve-imports
0.0577 ( 3.2%) 0.1134 ( 17.6%) 0.1711 ( 6.9%) 5.6403 ( 42.0%) Import resolution
0.3805 ( 20.9%) 0.0866 ( 13.4%) 0.4671 ( 18.9%) 0.4687 ( 3.5%) perform-sema
0.3741 ( 20.5%) 0.0857 ( 13.3%) 0.4598 ( 18.6%) 0.4613 ( 3.4%) Type checking and Semantic analysis
0.3604 ( 19.8%) 0.0828 ( 12.8%) 0.4432 ( 17.9%) 0.4447 ( 3.3%) typecheck-decl
0.1570 ( 8.6%) 0.0343 ( 5.3%) 0.1913 ( 7.7%) 0.1924 ( 1.4%) SILGen
0.0867 ( 4.8%) 0.0258 ( 4.0%) 0.1125 ( 4.6%) 0.1127 ( 0.8%) typecheck-expr
0.0895 ( 4.9%) 0.0135 ( 2.1%) 0.1031 ( 4.2%) 0.1047 ( 0.8%) SIL optimization
0.0754 ( 4.1%) 0.0128 ( 2.0%) 0.0882 ( 3.6%) 0.0882 ( 0.7%) SILGen-function
0.0364 ( 2.0%) 0.0261 ( 4.0%) 0.0624 ( 2.5%) 0.0624 ( 0.5%) import-clang-decl
0.0370 ( 2.0%) 0.0092 ( 1.4%) 0.0462 ( 1.9%) 0.0464 ( 0.3%) typecheck-stmt
0.0134 ( 0.7%) 0.0191 ( 3.0%) 0.0326 ( 1.3%) 0.0440 ( 0.3%) load-stdlib
0.0258 ( 1.4%) 0.0071 ( 1.1%) 0.0330 ( 1.3%) 0.0340 ( 0.3%) Serialization, swiftmodule
0.0133 ( 0.7%) 0.0025 ( 0.4%) 0.0158 ( 0.6%) 0.0159 ( 0.1%) typecheck-expr-pattern
0.0115 ( 0.6%) 0.0034 ( 0.5%) 0.0148 ( 0.6%) 0.0150 ( 0.1%) load-all-members
0.0112 ( 0.6%) 0.0030 ( 0.5%) 0.0142 ( 0.6%) 0.0142 ( 0.1%) build-rewrite-system
0.0106 ( 0.6%) 0.0021 ( 0.3%) 0.0126 ( 0.5%) 0.0126 ( 0.1%) precheck-target
0.0113 ( 0.6%) 0.0013 ( 0.2%) 0.0125 ( 0.5%) 0.0126 ( 0.1%) Serialization, swiftsourceinfo
0.0037 ( 0.2%) 0.0009 ( 0.1%) 0.0046 ( 0.2%) 0.0046 ( 0.0%) Serialization, swiftdoc
0.0038 ( 0.2%) 0.0000 ( 0.0%) 0.0038 ( 0.2%) 0.0038 ( 0.0%) perform-whole-module-type-checking
0.0014 ( 0.1%) 0.0002 ( 0.0%) 0.0015 ( 0.1%) 0.0015 ( 0.0%) SIL verification, post-optimization
0.0014 ( 0.1%) 0.0000 ( 0.0%) 0.0014 ( 0.1%) 0.0014 ( 0.0%) SIL verification, pre-optimization
0.0003 ( 0.0%) 0.0000 ( 0.0%) 0.0003 ( 0.0%) 0.0003 ( 0.0%) source-file-populate-cache
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) populate-module-class-member-cache
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) AST verification
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
1.8235 (100.0%) 0.6457 (100.0%) 2.4692 (100.0%) 13.4282 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 1.1657 seconds (6.6509 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.8802 (100.0%) 0.2854 (100.0%) 1.1657 (100.0%) 6.6509 (100.0%) Building Target
0.8802 (100.0%) 0.2854 (100.0%) 1.1657 (100.0%) 6.6509 (100.0%) Total
EmitSwiftModule normal arm64 (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AAStageSeriesPlugin/AASeries+Envelope.swift:5:20: warning: static property 'envelope' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var envelope: UInt8 = 0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AAStageSeriesPlugin/AASeries+Envelope.swift:5:20: note: convert 'envelope' to a 'let' constant to make 'Sendable' shared state immutable
static var envelope: UInt8 = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AAStageSeriesPlugin/AASeries+Envelope.swift:5:20: note: add '@MainActor' to make static property 'envelope' part of global actor 'MainActor'
static var envelope: UInt8 = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AAStageSeriesPlugin/AASeries+Envelope.swift:5:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var envelope: UInt8 = 0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:73:24: warning: static property 'scriptCache' is not concurrency-safe because non-'Sendable' type 'NSCache<NSString, NSString>' may have shared mutable state; this is an error in the Swift 6 language mode
private static let scriptCache: NSCache<NSString, NSString> = {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h:13:12: note: generic class 'NSCache' does not conform to the 'Sendable' protocol
@interface NSCache <KeyType, ObjectType> : NSObject
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:73:24: note: add '@MainActor' to make static property 'scriptCache' part of global actor 'MainActor'
private static let scriptCache: NSCache<NSString, NSString> = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginLoader.swift:73:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static let scriptCache: NSCache<NSString, NSString> = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AADrilldown/AAOptions+Drilldown.swift:13:13: warning: var 'drilldownKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var drilldownKey: UInt8 = 0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AADrilldown/AAOptions+Drilldown.swift:13:13: note: convert 'drilldownKey' to a 'let' constant to make 'Sendable' shared state immutable
private var drilldownKey: UInt8 = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AADrilldown/AAOptions+Drilldown.swift:13:13: note: add '@MainActor' to make var 'drilldownKey' part of global actor 'MainActor'
private var drilldownKey: UInt8 = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AADrilldown/AAOptions+Drilldown.swift:13:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var drilldownKey: UInt8 = 0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AADrilldown/AAOptions+Boost.swift:13:13: warning: var 'boostKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var boostKey: UInt8 = 0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AADrilldown/AAOptions+Boost.swift:13:13: note: convert 'boostKey' to a 'let' constant to make 'Sendable' shared state immutable
private var boostKey: UInt8 = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AADrilldown/AAOptions+Boost.swift:13:13: note: add '@MainActor' to make var 'boostKey' part of global actor 'MainActor'
private var boostKey: UInt8 = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AADrilldown/AAOptions+Boost.swift:13:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var boostKey: UInt8 = 0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:420:5: warning: non-'@objc' instance method in extensions cannot be overridden; use 'public' instead
open func webView(
^~~~
public
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:420:15: warning: instance method 'webView(_:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:)' nearly matches optional requirement 'webView(_:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:)' of protocol 'WKUIDelegate'
open func webView(
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:420:15: note: candidate has non-matching type '(WKWebView, String, WKFrameInfo, @escaping () -> Void) -> ()'
open func webView(
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:420:15: note: move 'webView(_:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:)' to another extension to silence this warning
open func webView(
^
WebKit.WKUIDelegate.webView:3:28: note: requirement 'webView(_:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:)' declared here
@MainActor optional func webView(_ webView: WKWebView, runJavaScriptAlertPanelWithMessage message: String, initiatedByFrame frame: WKFrameInfo, completionHandler: @escaping @MainActor @Sendable () -> Void)}
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginProvider.swift:95:24: warning: static property 'pluginConfigurations' is not concurrency-safe because non-'Sendable' type '[AAChartViewPluginProvider.AAChartPluginConfiguration]' may have shared mutable state; this is an error in the Swift 6 language mode
private static let pluginConfigurations: [AAChartPluginConfiguration] = [
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginProvider.swift:85:20: note: consider making struct 'AAChartPluginConfiguration' conform to the 'Sendable' protocol
private struct AAChartPluginConfiguration {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginProvider.swift:95:24: note: add '@MainActor' to make static property 'pluginConfigurations' part of global actor 'MainActor'
private static let pluginConfigurations: [AAChartPluginConfiguration] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginProvider.swift:95:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static let pluginConfigurations: [AAChartPluginConfiguration] = [
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginProvider.swift:157:24: warning: static property 'scriptsByChartType' is not concurrency-safe because non-'Sendable' type '[AAChartType : Set<AAChartPluginScriptType>]' may have shared mutable state; this is an error in the Swift 6 language mode
private static let scriptsByChartType: [AAChartType: Set<AAChartPluginScriptType>] = {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartOptions/AAChartModel.swift:71:13: note: consider making enum 'AAChartType' conform to the 'Sendable' protocol
public enum AAChartType: String {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginProvider.swift:157:24: note: add '@MainActor' to make static property 'scriptsByChartType' part of global actor 'MainActor'
private static let scriptsByChartType: [AAChartType: Set<AAChartPluginScriptType>] = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartViewPluginProvider.swift:157:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static let scriptsByChartType: [AAChartType: Set<AAChartPluginScriptType>] = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AACustomStageChartVC.swift:269:15: warning: main actor-isolated instance method 'aaChartViewDidFinishLoad' cannot be used to satisfy nonisolated requirement from protocol 'AAChartViewDelegate'; this is an error in the Swift 6 language mode
open func aaChartViewDidFinishLoad(_ aaChartView: AAChartView) {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AACustomStageChartVC.swift:269:15: note: add 'nonisolated' to 'aaChartViewDidFinishLoad' to make this instance method not isolated to the actor
open func aaChartViewDidFinishLoad(_ aaChartView: AAChartView) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AACustomStageChartVC.swift:268:33: note: add '@preconcurrency' to the 'AAChartViewDelegate' conformance to defer isolation checking to run time
extension AACustomStageChartVC: AAChartViewDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:36:25: note: mark the protocol requirement 'aaChartViewDidFinishLoad' 'async' to allow actor-isolated conformances
@objc optional func aaChartViewDidFinishLoad(_ aaChartView: AAChartView)
^
async
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AACustomStageChartVC.swift:273:15: warning: main actor-isolated instance method 'aaChartView(_:clickEventMessage:)' cannot be used to satisfy nonisolated requirement from protocol 'AAChartViewDelegate'; this is an error in the Swift 6 language mode
open func aaChartView(_ aaChartView: AAChartView, clickEventMessage: AAClickEventMessageModel) {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AACustomStageChartVC.swift:273:15: note: add 'nonisolated' to 'aaChartView(_:clickEventMessage:)' to make this instance method not isolated to the actor
open func aaChartView(_ aaChartView: AAChartView, clickEventMessage: AAClickEventMessageModel) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:38:25: note: mark the protocol requirement 'aaChartView(_:clickEventMessage:)' 'async' to allow actor-isolated conformances
@objc optional func aaChartView(_ aaChartView: AAChartView, clickEventMessage: AAClickEventMessageModel)
^
async
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AACustomStageChartVC.swift:296:15: warning: main actor-isolated instance method 'aaChartView(_:moveOverEventMessage:)' cannot be used to satisfy nonisolated requirement from protocol 'AAChartViewDelegate'; this is an error in the Swift 6 language mode
open func aaChartView(_ aaChartView: AAChartView, moveOverEventMessage: AAMoveOverEventMessageModel) {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AACustomStageChartVC.swift:296:15: note: add 'nonisolated' to 'aaChartView(_:moveOverEventMessage:)' to make this instance method not isolated to the actor
open func aaChartView(_ aaChartView: AAChartView, moveOverEventMessage: AAMoveOverEventMessageModel) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:39:25: note: mark the protocol requirement 'aaChartView(_:moveOverEventMessage:)' 'async' to allow actor-isolated conformances
@objc optional func aaChartView(_ aaChartView: AAChartView, moveOverEventMessage: AAMoveOverEventMessageModel)
^
async
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:261:15: warning: main actor-isolated instance method 'aaChartViewDidFinishLoad' cannot be used to satisfy nonisolated requirement from protocol 'AAChartViewDelegate'; this is an error in the Swift 6 language mode
open func aaChartViewDidFinishLoad(_ aaChartView: AAChartView) {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:261:15: note: add 'nonisolated' to 'aaChartViewDidFinishLoad' to make this instance method not isolated to the actor
open func aaChartViewDidFinishLoad(_ aaChartView: AAChartView) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:260:26: note: add '@preconcurrency' to the 'AAChartViewDelegate' conformance to defer isolation checking to run time
extension AABaseChartVC: AAChartViewDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:36:25: note: mark the protocol requirement 'aaChartViewDidFinishLoad' 'async' to allow actor-isolated conformances
@objc optional func aaChartViewDidFinishLoad(_ aaChartView: AAChartView)
^
async
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:265:15: warning: main actor-isolated instance method 'aaChartView(_:clickEventMessage:)' cannot be used to satisfy nonisolated requirement from protocol 'AAChartViewDelegate'; this is an error in the Swift 6 language mode
open func aaChartView(_ aaChartView: AAChartView, clickEventMessage: AAClickEventMessageModel) {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:265:15: note: add 'nonisolated' to 'aaChartView(_:clickEventMessage:)' to make this instance method not isolated to the actor
open func aaChartView(_ aaChartView: AAChartView, clickEventMessage: AAClickEventMessageModel) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:38:25: note: mark the protocol requirement 'aaChartView(_:clickEventMessage:)' 'async' to allow actor-isolated conformances
@objc optional func aaChartView(_ aaChartView: AAChartView, clickEventMessage: AAClickEventMessageModel)
^
async
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:288:15: warning: main actor-isolated instance method 'aaChartView(_:moveOverEventMessage:)' cannot be used to satisfy nonisolated requirement from protocol 'AAChartViewDelegate'; this is an error in the Swift 6 language mode
open func aaChartView(_ aaChartView: AAChartView, moveOverEventMessage: AAMoveOverEventMessageModel) {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/AABaseChartVC.swift:288:15: note: add 'nonisolated' to 'aaChartView(_:moveOverEventMessage:)' to make this instance method not isolated to the actor
open func aaChartView(_ aaChartView: AAChartView, moveOverEventMessage: AAMoveOverEventMessageModel) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:39:25: note: mark the protocol requirement 'aaChartView(_:moveOverEventMessage:)' 'async' to allow actor-isolated conformances
@objc optional func aaChartView(_ aaChartView: AAChartView, moveOverEventMessage: AAMoveOverEventMessageModel)
^
async
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAChart+Options3D.swift:10:13: warning: var 'aaChartOptions3DKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var aaChartOptions3DKey: UInt8 = 0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAChart+Options3D.swift:10:13: note: convert 'aaChartOptions3DKey' to a 'let' constant to make 'Sendable' shared state immutable
private var aaChartOptions3DKey: UInt8 = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAChart+Options3D.swift:10:13: note: add '@MainActor' to make var 'aaChartOptions3DKey' part of global actor 'MainActor'
private var aaChartOptions3DKey: UInt8 = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAChart+Options3D.swift:10:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var aaChartOptions3DKey: UInt8 = 0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAOptions+ZAxis.swift:10:13: warning: var 'aaOptionsZAxisKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var aaOptionsZAxisKey: UInt8 = 0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAOptions+ZAxis.swift:10:13: note: convert 'aaOptionsZAxisKey' to a 'let' constant to make 'Sendable' shared state immutable
private var aaOptionsZAxisKey: UInt8 = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAOptions+ZAxis.swift:10:13: note: add '@MainActor' to make var 'aaOptionsZAxisKey' part of global actor 'MainActor'
private var aaOptionsZAxisKey: UInt8 = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AAOptions+ZAxis.swift:10:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var aaOptionsZAxisKey: UInt8 = 0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:10:13: warning: var 'aaSeriesGroupZPaddingKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var aaSeriesGroupZPaddingKey: UInt8 = 0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:10:13: note: convert 'aaSeriesGroupZPaddingKey' to a 'let' constant to make 'Sendable' shared state immutable
private var aaSeriesGroupZPaddingKey: UInt8 = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:10:13: note: add '@MainActor' to make var 'aaSeriesGroupZPaddingKey' part of global actor 'MainActor'
private var aaSeriesGroupZPaddingKey: UInt8 = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:10:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var aaSeriesGroupZPaddingKey: UInt8 = 0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:11:13: warning: var 'aaSeriesDepthKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var aaSeriesDepthKey: UInt8 = 0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:11:13: note: convert 'aaSeriesDepthKey' to a 'let' constant to make 'Sendable' shared state immutable
private var aaSeriesDepthKey: UInt8 = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:11:13: note: add '@MainActor' to make var 'aaSeriesDepthKey' part of global actor 'MainActor'
private var aaSeriesDepthKey: UInt8 = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:11:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var aaSeriesDepthKey: UInt8 = 0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:12:13: warning: var 'aaSeriesGroupingKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var aaSeriesGroupingKey: UInt8 = 0
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:12:13: note: convert 'aaSeriesGroupingKey' to a 'let' constant to make 'Sendable' shared state immutable
private var aaSeriesGroupingKey: UInt8 = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:12:13: note: add '@MainActor' to make var 'aaSeriesGroupingKey' part of global actor 'MainActor'
private var aaSeriesGroupingKey: UInt8 = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAOptions3D/AASeries+Depth.swift:12:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var aaSeriesGroupingKey: UInt8 = 0
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ AADrilldownChartComposer.swift,\ AAStageControlsView.swift,\ AAItem.swift,\ ChartExampleCell.swift,\ AABubbleChartComposer.swift,\ AALang.swift,\ AAMarker.swift,\ AABoostFractalChartComposer.swift,\ AAFractalJuliaSetData.swift,\ SpecialChartComposer.swift,\ AAPictorial.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AADrilldown/AADrilldownChartComposer.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AAStageControlsView.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AAItem.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartExampleCell.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AABubbleChartComposer.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AALang.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AAMarker.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AABoost/AABoostFractalChartComposer.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AABoost/AAFractalJuliaSetData.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/SpecialChartComposer.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AAPictorial.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1776917844102043-swift-frontend-AAInfographics_ProDemo-AADrilldownChartComposer.swift-arm64_apple_ios13.1_macabi-o-Onone-2365924847.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 2.4460 seconds (2.5080 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.4257 ( 22.0%) 0.1033 ( 20.3%) 0.5290 ( 21.6%) 0.5428 ( 21.6%) perform-sema
0.4248 ( 21.9%) 0.1032 ( 20.3%) 0.5280 ( 21.6%) 0.5418 ( 21.6%) Type checking and Semantic analysis
0.3305 ( 17.1%) 0.0825 ( 16.2%) 0.4130 ( 16.9%) 0.4225 ( 16.8%) typecheck-stmt
0.1103 ( 5.7%) 0.0232 ( 4.6%) 0.1335 ( 5.5%) 0.1389 ( 5.5%) IRGen
0.1030 ( 5.3%) 0.0212 ( 4.2%) 0.1242 ( 5.1%) 0.1266 ( 5.0%) build-rewrite-system
0.0574 ( 3.0%) 0.0550 ( 10.8%) 0.1125 ( 4.6%) 0.1146 ( 4.6%) parse-and-resolve-imports
0.0546 ( 2.8%) 0.0527 ( 10.4%) 0.1072 ( 4.4%) 0.1093 ( 4.4%) Import resolution
0.0848 ( 4.4%) 0.0178 ( 3.5%) 0.1026 ( 4.2%) 0.1037 ( 4.1%) typecheck-decl
0.0854 ( 4.4%) 0.0066 ( 1.3%) 0.0920 ( 3.8%) 0.0945 ( 3.8%) SILGen
0.0783 ( 4.0%) 0.0099 ( 2.0%) 0.0882 ( 3.6%) 0.0898 ( 3.6%) typecheck-expr
0.0641 ( 3.3%) 0.0037 ( 0.7%) 0.0678 ( 2.8%) 0.0695 ( 2.8%) SILGen-function
0.0501 ( 2.6%) 0.0008 ( 0.2%) 0.0508 ( 2.1%) 0.0520 ( 2.1%) SIL optimization
0.0283 ( 1.5%) 0.0217 ( 4.3%) 0.0500 ( 2.0%) 0.0510 ( 2.0%) import-clang-decl
0.0295 ( 1.5%) 0.0033 ( 0.7%) 0.0328 ( 1.3%) 0.0366 ( 1.5%) precheck-target
0.0081 ( 0.4%) 0.0023 ( 0.5%) 0.0104 ( 0.4%) 0.0104 ( 0.4%) load-all-members
0.0010 ( 0.0%) 0.0012 ( 0.2%) 0.0021 ( 0.1%) 0.0021 ( 0.1%) load-stdlib
0.0007 ( 0.0%) 0.0001 ( 0.0%) 0.0008 ( 0.0%) 0.0008 ( 0.0%) typecheck-expr-pattern
0.0005 ( 0.0%) 0.0000 ( 0.0%) 0.0005 ( 0.0%) 0.0005 ( 0.0%) typecheck-for-each
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, pre-optimization
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, post-optimization
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) get-conformance-access-path
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
1.9376 (100.0%) 0.5083 (100.0%) 2.4460 (100.0%) 2.5080 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 3.2357 seconds (3.5059 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
2.3209 (100.0%) 0.9148 (100.0%) 3.2357 (100.0%) 3.5059 (100.0%) Building Target
2.3209 (100.0%) 0.9148 (100.0%) 3.2357 (100.0%) 3.5059 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AADrilldown/AADrilldownChartComposer.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AAStageSeries/AAStageControlsView.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AAItem.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartExampleCell.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AABubbleChartComposer.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AALang.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AAMarker.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AABoost/AABoostFractalChartComposer.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AABoost/AAFractalJuliaSetData.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AABoost/AAFractalJuliaSetData.swift:168:13: warning: initialization of immutable value 'xRange' was never used; consider replacing with assignment to '_' or removing it
let xRange = xMax - xMin
~~~~^~~~~~
_
/Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/AAPlugins/AABoost/AAFractalJuliaSetData.swift:169:13: warning: initialization of immutable value 'yRange' was never used; consider replacing with assignment to '_' or removing it
let yRange = yMax - yMin
~~~~^~~~~~
_
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/SpecialChartComposer.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AAPictorial.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
SwiftDriverJobDiscovery normal arm64 Emitting module for AAInfographics_ProDemo (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
SwiftDriver\ Compilation\ Requirements AAInfographics-ProDemo normal arm64 com.apple.xcode.tools.swift.compiler (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AAInfographics_ProDemo -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics-ProDemo.SwiftFileList -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-ios13.1-macabi -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-maccatalyst -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -Fsystem /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/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/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics-ProDemo-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/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics_ProDemo.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics-ProDemo_const_extract_protocols.json -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/AAInfographics-ProDemo-generated-files.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/AAInfographics-ProDemo-own-target-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/AAInfographics-ProDemo-all-target-headers.hmap -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/AAInfographics-ProDemo-project-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/include -Xcc -isystem -Xcc /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/usr/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics_ProDemo-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling AAFractalChartData.swift, AATooltip.swift, AAOptions+Drilldown.swift, ChartProVC.swift, AABoostChartComposer.swift, AADataLabels.swift, AAOptions+Boost.swift, AADrilldown.swift, AATitle.swift, AACrosshair.swift, AAStates.swift, AAAnimation.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
SwiftDriverJobDiscovery normal arm64 Compiling AAOptionsSeries.swift, AABoost.swift, AAHeatOrTreeMapChartComposer.swift, AAColor.swift, AppDelegate.swift, SceneDelegate.swift, AAPane.swift, AARelationshipChartVC.swift, AACredits.swift, AAHeatOrTreeMapChartVC.swift, AAOptionsData.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
SwiftDriverJobDiscovery normal arm64 Compiling AASeries.swift, AAEnvelope.swift, AACustomStageChartVC.swift, AAExtraFractalChartData.swift, AABaseChartVC.swift, AAColumnVariantChartComposer.swift, AABoostChartVC.swift, AAData.swift, AALegend.swift, AAPictorialChartComposer.swift, AAChartView+API.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/DerivedSources/AAInfographics_ProDemo-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics_ProDemo-Swift.h (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics_ProDemo-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/DerivedSources/AAInfographics_ProDemo-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics_ProDemo.swiftmodule/arm64-apple-ios-macabi.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics_ProDemo.swiftmodule (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
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/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics_ProDemo.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics_ProDemo.swiftmodule/arm64-apple-ios-macabi.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics_ProDemo.swiftmodule/arm64-apple-ios-macabi.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics_ProDemo.swiftdoc (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
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/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics_ProDemo.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics_ProDemo.swiftmodule/arm64-apple-ios-macabi.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics_ProDemo.swiftmodule/arm64-apple-ios-macabi.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics_ProDemo.abi.json (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
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/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics_ProDemo.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics_ProDemo.swiftmodule/arm64-apple-ios-macabi.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics_ProDemo.swiftmodule/Project/arm64-apple-ios-macabi.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics_ProDemo.swiftsourceinfo (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
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/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics_ProDemo.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics_ProDemo.swiftmodule/Project/arm64-apple-ios-macabi.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling CustomClickEventCallbackMessageVC.swift, AAExtension.swift, AASubtitle.swift, ViewController.swift, AAMixedChartComposer.swift, AAGradientColor.swift, AASerializable.swift, AALabel.swift, AAPlotLinesElement.swift, AASeriesElement.swift, AAPackedbubble.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
SwiftDriverJobDiscovery normal arm64 Compiling AABulletDataElement.swift, AARelationshipChartComposer.swift, AAPlotOptions.swift, AATreegraphChartComposer.swift, AAPictorialPaths.swift, AAXAxis.swift, ProjectBundlePathLoader.swift, AAOrganizationChartComposer.swift, AAChart.swift, AAChartView.swift, ChartListTableViewVC.swift, AABoxplot.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
SwiftDriverJobDiscovery normal arm64 Compiling AADrilldownChartComposer.swift, AAStageControlsView.swift, AAItem.swift, ChartExampleCell.swift, AABubbleChartComposer.swift, AALang.swift, AAMarker.swift, AABoostFractalChartComposer.swift, AAFractalJuliaSetData.swift, SpecialChartComposer.swift, AAPictorial.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
SwiftDriverJobDiscovery normal arm64 Compiling AASeries+Envelope.swift, AASectionedList.swift, AAHeatmap.swift, AAScrollablePlotArea.swift, MainVC.swift, AALabels.swift, AASolidgauge.swift, AAColorAxis.swift, AAOptionsCSV.swift, AADrilldownChartVC.swift, AAChartViewPluginLoader.swift, AACustomStageChartComposer.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
SwiftDriverJobDiscovery normal arm64 Compiling AAChartModel.swift, AALevelsElement.swift, AAParallelAxes.swift, AAAxis.swift, AABubbleChartVC.swift, ChartSampleTableViewCell.swift, AAStyle.swift, OfficialChartSampleVC.swift, AAColumnVariantChartVC.swift, AAOrganization.swift, AASankeyChartComposer.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
SwiftDriverJobDiscovery normal arm64 Compiling AABubbleStellarChartComposer.swift, ProChartTableGalleryVC.swift, ProChartCollectionGalleryVC.swift, ProChartCollectionCell.swift, AAOptions3D.swift, AAChart+Options3D.swift, AAOptions+ZAxis.swift, AASeries+Depth.swift, AAOptions3DChartComposer.swift, AAOptions3DChartVC.swift, GeneratedAssetSymbols.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
SwiftDriverJobDiscovery normal arm64 Compiling AATreemap.swift, CustomClickEventCallbackMessageVC2.swift, ChartSampleProvider.swift, AAYAxis.swift, AALayoutAlgorithm.swift, AASolidgaugeDataElement.swift, AAOptions.swift, OfficialChartSample.swift, FractalChartListVC.swift, AAChartViewPluginProvider.swift, AAPlotBandsElement.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
SwiftDriver\ Compilation AAInfographics-ProDemo normal arm64 com.apple.xcode.tools.swift.compiler (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AAInfographics_ProDemo -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics-ProDemo.SwiftFileList -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-ios13.1-macabi -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-maccatalyst -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -Fsystem /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/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/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics-ProDemo-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/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics_ProDemo.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics-ProDemo_const_extract_protocols.json -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/AAInfographics-ProDemo-generated-files.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/AAInfographics-ProDemo-own-target-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/AAInfographics-ProDemo-all-target-headers.hmap -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/AAInfographics-ProDemo-project-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/include -Xcc -isystem -Xcc /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/usr/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics_ProDemo-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/MacOS/AAInfographics-ProDemo.debug.dylib normal (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
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-ios13.1-macabi -dynamiclib -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-maccatalyst -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/usr/lib -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/maccatalyst -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/usr/lib -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/maccatalyst -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-maccatalyst -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics-ProDemo.LinkFileList -install_name @rpath/AAInfographics-ProDemo.debug.dylib -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker @loader_path/../Frameworks -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics-ProDemo_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics-ProDemo_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/System/iOSSupport/usr/lib/swift -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics_ProDemo.swiftmodule -Xlinker -alias -Xlinker _main -Xlinker ___debug_main_executable_dylib_entry_point -Xlinker -no_adhoc_codesign -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/MacOS/AAInfographics-ProDemo.debug.dylib
ConstructStubExecutorLinkFileList /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/AAInfographics-ProDemo-ExecutorLinkFileList-normal-arm64.txt (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
construct-stub-executor-link-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/MacOS/AAInfographics-ProDemo.debug.dylib /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/iOSSupport/usr/lib/libPreviewsJITStubExecutor_no_swift_entry_point.a /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/iOSSupport/usr/lib/libPreviewsJITStubExecutor.a --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/AAInfographics-ProDemo-ExecutorLinkFileList-normal-arm64.txt
note: Using stub executor library with Swift entry point. (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/MacOS/AAInfographics-ProDemo normal (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
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-ios13.1-macabi -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/Products/Debug-maccatalyst -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/usr/lib -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/maccatalyst -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/usr/lib -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/maccatalyst -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks -Xlinker -rpath -Xlinker @executable_path -Xlinker -rpath -Xlinker @loader_path/../Frameworks -Xlinker -rpath -Xlinker @executable_path/Frameworks -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -e ___debug_blank_executor_main -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __debug_dylib -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/AAInfographics-ProDemo-DebugDylibPath-normal-arm64.txt -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __debug_instlnm -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/AAInfographics-ProDemo-DebugDylibInstallName-normal-arm64.txt -Xlinker -filelist -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/AAInfographics-ProDemo-ExecutorLinkFileList-normal-arm64.txt /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/MacOS/AAInfographics-ProDemo.debug.dylib -Xlinker -no_adhoc_codesign -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/MacOS/AAInfographics-ProDemo
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftStdLibTool --copy --verbose --sign - --scan-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/MacOS/AAInfographics-ProDemo.debug.dylib --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/Library/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/Extensions --platform macosx --toolchain /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/Frameworks --strip-bitcode --strip-bitcode-tool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os --back-deploy-swift-concurrency
Copying /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-5.5/macosx/libswift_Concurrency.dylib to /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/Frameworks/libswift_Concurrency.dylib
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-5.5/macosx/libswift_Concurrency.dylib -r -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/Frameworks/libswift_Concurrency.dylib
Probing signature of /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/Frameworks/libswift_Concurrency.dylib
/usr/bin/codesign -r- --display /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/Frameworks/libswift_Concurrency.dylib
Codesigning /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/Frameworks/libswift_Concurrency.dylib
/usr/bin/codesign --force --sign - --verbose /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/Frameworks/libswift_Concurrency.dylib
Probing signature of /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/Frameworks/libswift_Concurrency.dylib
/usr/bin/codesign -r- --display /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/Frameworks/libswift_Concurrency.dylib
ExtractAppIntentsMetadata (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
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 AAInfographics_ProDemo --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 10.15 --bundle-identifier fdafdas --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/Resources --target-triple arm64-apple-ios13.1-macabi --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/MacOS/AAInfographics-ProDemo --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics-ProDemo_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics-ProDemo.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/AAInfographics-ProDemo.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/AAInfographics-ProDemo.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/Objects-normal/arm64/AAInfographics-ProDemo.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-04-22 21:17:28.536 appintentsmetadataprocessor[731:4449] Starting appintentsmetadataprocessor export
2026-04-22 21:17:28.540 appintentsmetadataprocessor[731:4449] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
CodeSign /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/MacOS/AAInfographics-ProDemo.debug.dylib (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
Signing Identity: "Sign to Run Locally"
/usr/bin/codesign --force --sign - --timestamp\=none --generate-entitlement-der /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/MacOS/AAInfographics-ProDemo.debug.dylib
CodeSign /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/MacOS/__preview.dylib (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
Signing Identity: "Sign to Run Locally"
/usr/bin/codesign --force --sign - --timestamp\=none --generate-entitlement-der /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app/Contents/MacOS/__preview.dylib
CodeSign /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
Signing Identity: "Sign to Run Locally"
/usr/bin/codesign --force --sign - --entitlements /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AAInfographics-ProDemo.build/Debug-maccatalyst/AAInfographics-ProDemo.build/AAInfographics-ProDemo.app.xcent --timestamp\=none --generate-entitlement-der /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app
Validate /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
builtin-validationUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app -no-validate-extension -infoplist-subpath Contents/Info.plist
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app
RegisterWithLaunchServices /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
cd /Users/admin/builder/spi-builder-workspace
/System/Library/Frameworks/CoreServices.framework/Versions/Current/Frameworks/LaunchServices.framework/Versions/Current/Support/lsregister -f -R -trusted /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/AAInfographics-ProDemo.app
note: Disabling hardened runtime with ad-hoc codesigning. (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:14f12ecc91fcc29aed0f71db27b003e90a8a4209, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:14f12ecc91fcc29aed0f71db27b003e90a8a4209, name:My Mac }
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "AAInfographics-Pro",
"name" : "AAInfographics-Pro",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.13"
}
],
"products" : [
{
"name" : "AAInfographics-Pro",
"targets" : [
"AAInfographics-Pro"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "AAInfographicsProTests",
"module_type" : "SwiftTarget",
"name" : "AAInfographicsProTests",
"path" : "Tests/AAInfographicsProTests",
"sources" : [
"AAChartViewPluginLoaderTests.swift",
"AAChartViewPluginProviderTests.swift"
],
"target_dependencies" : [
"AAInfographics-Pro"
],
"type" : "test"
},
{
"c99name" : "AAInfographics_Pro",
"module_type" : "SwiftTarget",
"name" : "AAInfographics-Pro",
"path" : "AAInfographics-Pro",
"product_memberships" : [
"AAInfographics-Pro"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAJSFiles.bundle",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"AAChartCreator/AAChartOptions/AAChartModel.swift",
"AAChartCreator/AAChartOptions/AAOptions.swift",
"AAChartCreator/AAChartOptions/AASeriesElement.swift",
"AAChartCreator/AAChartView/AAChartView+API.swift",
"AAChartCreator/AAChartView/AAChartView.swift",
"AAChartCreator/AAChartView/AAChartViewPluginLoader.swift",
"AAChartCreator/AAChartView/AAChartViewPluginProvider.swift",
"AAChartCreator/AASerializable.swift",
"AAOptionsModel/AAAnimation.swift",
"AAOptionsModel/AAAxis.swift",
"AAOptionsModel/AABoxplot.swift",
"AAOptionsModel/AAChart.swift",
"AAOptionsModel/AACredits.swift",
"AAOptionsModel/AACrosshair.swift",
"AAOptionsModel/AADataLabels.swift",
"AAOptionsModel/AALabel.swift",
"AAOptionsModel/AALabels.swift",
"AAOptionsModel/AALang.swift",
"AAOptionsModel/AALegend.swift",
"AAOptionsModel/AAMarker.swift",
"AAOptionsModel/AAPane.swift",
"AAOptionsModel/AAPlotBandsElement.swift",
"AAOptionsModel/AAPlotLinesElement.swift",
"AAOptionsModel/AAPlotOptions.swift",
"AAOptionsModel/AAScrollablePlotArea.swift",
"AAOptionsModel/AASeries.swift",
"AAOptionsModel/AAStates.swift",
"AAOptionsModel/AAStyle.swift",
"AAOptionsModel/AASubtitle.swift",
"AAOptionsModel/AATitle.swift",
"AAOptionsModel/AATooltip.swift",
"AAOptionsModel/AAXAxis.swift",
"AAOptionsModel/AAYAxis.swift",
"AAOptionsProModel/AABulletDataElement.swift",
"AAOptionsProModel/AAColorAxis.swift",
"AAOptionsProModel/AAData.swift",
"AAOptionsProModel/AAHeatmap.swift",
"AAOptionsProModel/AAItem.swift",
"AAOptionsProModel/AALayoutAlgorithm.swift",
"AAOptionsProModel/AALevelsElement.swift",
"AAOptionsProModel/AAOrganization.swift",
"AAOptionsProModel/AAPackedbubble.swift",
"AAOptionsProModel/AAParallelAxes.swift",
"AAOptionsProModel/AAPictorial.swift",
"AAOptionsProModel/AASolidgauge.swift",
"AAOptionsProModel/AASolidgaugeDataElement.swift",
"AAOptionsProModel/AATreemap.swift",
"AATool/AAColor.swift",
"AATool/AAExtension.swift",
"AATool/AAGradientColor.swift",
"PackageBundlePathLoader.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
Done.