Build Information
Successful build of AAInfographics-Pro, reference master (f777af), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 28 Apr 2026 10:18:50 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
@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-1777371519324423-swift-frontend-AAInfographics_ProDemo-AASeries_Envelope.swift-arm64_apple_ios13.1_macabi-o-Onone-1771241714.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 3.7266 seconds (13.8649 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0558 ( 1.9%) 0.1634 ( 22.4%) 0.2192 ( 5.9%) 5.2582 ( 37.9%) parse-and-resolve-imports
0.0531 ( 1.8%) 0.1612 ( 22.1%) 0.2143 ( 5.8%) 5.2532 ( 37.9%) Import resolution
0.6757 ( 22.5%) 0.0883 ( 12.1%) 0.7640 ( 20.5%) 0.7672 ( 5.5%) perform-sema
0.6748 ( 22.5%) 0.0881 ( 12.1%) 0.7629 ( 20.5%) 0.7660 ( 5.5%) Type checking and Semantic analysis
0.3576 ( 11.9%) 0.0465 ( 6.4%) 0.4041 ( 10.8%) 0.4061 ( 2.9%) typecheck-stmt
0.2427 ( 8.1%) 0.0356 ( 4.9%) 0.2783 ( 7.5%) 0.2799 ( 2.0%) typecheck-expr
0.1918 ( 6.4%) 0.0340 ( 4.7%) 0.2258 ( 6.1%) 0.2275 ( 1.6%) typecheck-decl
0.1761 ( 5.9%) 0.0165 ( 2.3%) 0.1926 ( 5.2%) 0.1972 ( 1.4%) IRGen
0.1284 ( 4.3%) 0.0342 ( 4.7%) 0.1626 ( 4.4%) 0.1664 ( 1.2%) build-rewrite-system
0.1333 ( 4.4%) 0.0091 ( 1.3%) 0.1425 ( 3.8%) 0.1427 ( 1.0%) SILGen
0.0967 ( 3.2%) 0.0136 ( 1.9%) 0.1103 ( 3.0%) 0.1107 ( 0.8%) precheck-target
0.0962 ( 3.2%) 0.0051 ( 0.7%) 0.1013 ( 2.7%) 0.1015 ( 0.7%) SILGen-function
0.0399 ( 1.3%) 0.0270 ( 3.7%) 0.0668 ( 1.8%) 0.0672 ( 0.5%) import-clang-decl
0.0620 ( 2.1%) 0.0012 ( 0.2%) 0.0632 ( 1.7%) 0.0650 ( 0.5%) SIL optimization
0.0013 ( 0.0%) 0.0018 ( 0.2%) 0.0031 ( 0.1%) 0.0402 ( 0.3%) load-stdlib
0.0080 ( 0.3%) 0.0023 ( 0.3%) 0.0102 ( 0.3%) 0.0103 ( 0.1%) load-all-members
0.0022 ( 0.1%) 0.0003 ( 0.0%) 0.0026 ( 0.1%) 0.0026 ( 0.0%) typecheck-expr-pattern
0.0019 ( 0.1%) 0.0001 ( 0.0%) 0.0020 ( 0.1%) 0.0021 ( 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%) associated-type-inference
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.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 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%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
2.9982 (100.0%) 0.7284 (100.0%) 3.7266 (100.0%) 13.8649 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 4.2354 seconds (9.5016 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
3.1772 (100.0%) 1.0582 (100.0%) 4.2354 (100.0%) 9.5016 (100.0%) Building Target
3.1772 (100.0%) 1.0582 (100.0%) 4.2354 (100.0%) 9.5016 (100.0%) Total
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-1777371519344141-swift-frontend-AAInfographics_ProDemo-AADrilldownChartComposer.swift-arm64_apple_ios13.1_macabi-o-Onone-2391730382.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 2.6915 seconds (12.8156 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0569 ( 3.0%) 0.1520 ( 19.0%) 0.2088 ( 7.8%) 5.2610 ( 41.1%) parse-and-resolve-imports
0.0542 ( 2.9%) 0.1494 ( 18.7%) 0.2037 ( 7.6%) 5.2558 ( 41.0%) Import resolution
0.4017 ( 21.2%) 0.1278 ( 16.0%) 0.5296 ( 19.7%) 0.5342 ( 4.2%) perform-sema
0.4009 ( 21.2%) 0.1277 ( 16.0%) 0.5286 ( 19.6%) 0.5332 ( 4.2%) Type checking and Semantic analysis
0.3165 ( 16.7%) 0.1077 ( 13.5%) 0.4241 ( 15.8%) 0.4284 ( 3.3%) typecheck-stmt
0.1346 ( 7.1%) 0.0327 ( 4.1%) 0.1672 ( 6.2%) 0.1688 ( 1.3%) build-rewrite-system
0.1004 ( 5.3%) 0.0211 ( 2.6%) 0.1215 ( 4.5%) 0.1221 ( 1.0%) IRGen
0.0807 ( 4.3%) 0.0193 ( 2.4%) 0.0999 ( 3.7%) 0.1003 ( 0.8%) typecheck-decl
0.0830 ( 4.4%) 0.0069 ( 0.9%) 0.0899 ( 3.3%) 0.0912 ( 0.7%) SILGen
0.0756 ( 4.0%) 0.0148 ( 1.9%) 0.0904 ( 3.4%) 0.0905 ( 0.7%) typecheck-expr
0.0633 ( 3.3%) 0.0049 ( 0.6%) 0.0682 ( 2.5%) 0.0693 ( 0.5%) SILGen-function
0.0358 ( 1.9%) 0.0256 ( 3.2%) 0.0615 ( 2.3%) 0.0624 ( 0.5%) import-clang-decl
0.0492 ( 2.6%) 0.0004 ( 0.0%) 0.0496 ( 1.8%) 0.0496 ( 0.4%) SIL optimization
0.0271 ( 1.4%) 0.0052 ( 0.7%) 0.0323 ( 1.2%) 0.0323 ( 0.3%) precheck-target
0.0087 ( 0.5%) 0.0022 ( 0.3%) 0.0109 ( 0.4%) 0.0111 ( 0.1%) load-all-members
0.0011 ( 0.1%) 0.0022 ( 0.3%) 0.0032 ( 0.1%) 0.0032 ( 0.0%) load-stdlib
0.0009 ( 0.0%) 0.0001 ( 0.0%) 0.0010 ( 0.0%) 0.0010 ( 0.0%) typecheck-expr-pattern
0.0006 ( 0.0%) 0.0000 ( 0.0%) 0.0006 ( 0.0%) 0.0006 ( 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%) perform-whole-module-type-checking
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.8915 (100.0%) 0.8000 (100.0%) 2.6915 (100.0%) 12.8156 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 4.1984 seconds (9.4643 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
2.8428 (100.0%) 1.3557 (100.0%) 4.1984 (100.0%) 9.4643 (100.0%) Building Target
2.8428 (100.0%) 1.3557 (100.0%) 4.1984 (100.0%) 9.4643 (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
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-1777371519337988-swift-frontend-AAInfographics_ProDemo-CustomClickEventCallbackMessageVC.swift-arm64_apple_ios13.1_macabi-o-Onone-3839604250.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 1.7000 seconds (11.8090 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0556 ( 4.9%) 0.1440 ( 25.1%) 0.1997 ( 11.7%) 5.2365 ( 44.3%) parse-and-resolve-imports
0.0531 ( 4.7%) 0.1422 ( 24.8%) 0.1953 ( 11.5%) 5.2321 ( 44.3%) Import resolution
0.1756 ( 15.6%) 0.0518 ( 9.0%) 0.2274 ( 13.4%) 0.2321 ( 2.0%) perform-sema
0.1748 ( 15.5%) 0.0517 ( 9.0%) 0.2266 ( 13.3%) 0.2312 ( 2.0%) Type checking and Semantic analysis
0.1234 ( 10.9%) 0.0321 ( 5.6%) 0.1555 ( 9.1%) 0.1576 ( 1.3%) typecheck-stmt
0.1196 ( 10.6%) 0.0339 ( 5.9%) 0.1535 ( 9.0%) 0.1561 ( 1.3%) typecheck-expr
0.0868 ( 7.7%) 0.0302 ( 5.3%) 0.1170 ( 6.9%) 0.1202 ( 1.0%) typecheck-decl
0.0756 ( 6.7%) 0.0197 ( 3.4%) 0.0953 ( 5.6%) 0.0957 ( 0.8%) build-rewrite-system
0.0749 ( 6.6%) 0.0137 ( 2.4%) 0.0886 ( 5.2%) 0.0888 ( 0.8%) IRGen
0.0360 ( 3.2%) 0.0280 ( 4.9%) 0.0640 ( 3.8%) 0.0654 ( 0.6%) import-clang-decl
0.0571 ( 5.1%) 0.0069 ( 1.2%) 0.0641 ( 3.8%) 0.0643 ( 0.5%) SILGen
0.0342 ( 3.0%) 0.0032 ( 0.6%) 0.0374 ( 2.2%) 0.0374 ( 0.3%) SILGen-function
0.0244 ( 2.2%) 0.0087 ( 1.5%) 0.0332 ( 2.0%) 0.0349 ( 0.3%) precheck-target
0.0233 ( 2.1%) 0.0004 ( 0.1%) 0.0237 ( 1.4%) 0.0238 ( 0.2%) SIL optimization
0.0012 ( 0.1%) 0.0031 ( 0.5%) 0.0043 ( 0.3%) 0.0172 ( 0.1%) load-stdlib
0.0079 ( 0.7%) 0.0029 ( 0.5%) 0.0108 ( 0.6%) 0.0121 ( 0.1%) load-all-members
0.0015 ( 0.1%) 0.0002 ( 0.0%) 0.0017 ( 0.1%) 0.0017 ( 0.0%) typecheck-expr-pattern
0.0010 ( 0.1%) 0.0002 ( 0.0%) 0.0011 ( 0.1%) 0.0011 ( 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.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 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%) 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.1268 (100.0%) 0.5732 (100.0%) 1.7000 (100.0%) 11.8090 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 4.0733 seconds (9.3677 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
2.3519 (100.0%) 1.7214 (100.0%) 4.0733 (100.0%) 9.3677 (100.0%) Building Target
2.3519 (100.0%) 1.7214 (100.0%) 4.0733 (100.0%) 9.3677 (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\ 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-1777371519351063-swift-frontend-AAInfographics_ProDemo-AASeries.swift-arm64_apple_ios13.1_macabi-o-Onone-4050702680.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 3.0925 seconds (13.2280 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0563 ( 2.4%) 0.1455 ( 20.6%) 0.2018 ( 6.5%) 5.2643 ( 39.8%) parse-and-resolve-imports
0.0535 ( 2.2%) 0.1433 ( 20.3%) 0.1967 ( 6.4%) 5.2592 ( 39.8%) Import resolution
0.4689 ( 19.7%) 0.0864 ( 12.2%) 0.5554 ( 18.0%) 0.5565 ( 4.2%) perform-sema
0.4677 ( 19.6%) 0.0862 ( 12.2%) 0.5539 ( 17.9%) 0.5551 ( 4.2%) Type checking and Semantic analysis
0.4009 ( 16.8%) 0.0709 ( 10.0%) 0.4717 ( 15.3%) 0.4724 ( 3.6%) typecheck-stmt
0.3100 ( 13.0%) 0.0564 ( 8.0%) 0.3664 ( 11.8%) 0.3670 ( 2.8%) typecheck-expr
0.1889 ( 7.9%) 0.0340 ( 4.8%) 0.2228 ( 7.2%) 0.2233 ( 1.7%) typecheck-decl
0.0879 ( 3.7%) 0.0128 ( 1.8%) 0.1007 ( 3.3%) 0.1064 ( 0.8%) IRGen
0.0782 ( 3.3%) 0.0062 ( 0.9%) 0.0844 ( 2.7%) 0.0847 ( 0.6%) SILGen
0.0706 ( 3.0%) 0.0118 ( 1.7%) 0.0824 ( 2.7%) 0.0825 ( 0.6%) precheck-target
0.0453 ( 1.9%) 0.0345 ( 4.9%) 0.0799 ( 2.6%) 0.0801 ( 0.6%) import-clang-decl
0.0583 ( 2.4%) 0.0125 ( 1.8%) 0.0708 ( 2.3%) 0.0709 ( 0.5%) build-rewrite-system
0.0484 ( 2.0%) 0.0021 ( 0.3%) 0.0504 ( 1.6%) 0.0505 ( 0.4%) SILGen-function
0.0364 ( 1.5%) 0.0003 ( 0.0%) 0.0367 ( 1.2%) 0.0368 ( 0.3%) SIL optimization
0.0068 ( 0.3%) 0.0028 ( 0.4%) 0.0096 ( 0.3%) 0.0096 ( 0.1%) load-all-members
0.0029 ( 0.1%) 0.0001 ( 0.0%) 0.0031 ( 0.1%) 0.0031 ( 0.0%) typecheck-for-each
0.0022 ( 0.1%) 0.0004 ( 0.1%) 0.0026 ( 0.1%) 0.0026 ( 0.0%) typecheck-expr-pattern
0.0010 ( 0.0%) 0.0015 ( 0.2%) 0.0024 ( 0.1%) 0.0024 ( 0.0%) load-stdlib
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.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%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
2.3850 (100.0%) 0.7076 (100.0%) 3.0925 (100.0%) 13.2280 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 3.9829 seconds (9.2726 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
2.5115 (100.0%) 1.4715 (100.0%) 3.9829 (100.0%) 9.2726 (100.0%) Building Target
2.5115 (100.0%) 1.4715 (100.0%) 3.9829 (100.0%) 9.2726 (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\ 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-1777371519352936-swift-frontend-AAInfographics_ProDemo-AATreemap.swift-arm64_apple_ios13.1_macabi-o-Onone-32259374.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 7.3380 seconds (13.2991 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
1.7194 ( 29.4%) 0.5907 ( 39.5%) 2.3101 ( 31.5%) 5.2841 ( 39.7%) parse-and-resolve-imports
1.7168 ( 29.4%) 0.5890 ( 39.4%) 2.3058 ( 31.4%) 5.2798 ( 39.7%) Import resolution
0.5082 ( 8.7%) 0.0581 ( 3.9%) 0.5663 ( 7.7%) 0.5689 ( 4.3%) perform-sema
0.5067 ( 8.7%) 0.0579 ( 3.9%) 0.5647 ( 7.7%) 0.5673 ( 4.3%) Type checking and Semantic analysis
0.4211 ( 7.2%) 0.0386 ( 2.6%) 0.4598 ( 6.3%) 0.4613 ( 3.5%) typecheck-stmt
0.4137 ( 7.1%) 0.0381 ( 2.6%) 0.4518 ( 6.2%) 0.4534 ( 3.4%) typecheck-expr
0.1178 ( 2.0%) 0.0294 ( 2.0%) 0.1472 ( 2.0%) 0.1473 ( 1.1%) build-rewrite-system
0.1127 ( 1.9%) 0.0265 ( 1.8%) 0.1392 ( 1.9%) 0.1403 ( 1.1%) typecheck-decl
0.0811 ( 1.4%) 0.0107 ( 0.7%) 0.0918 ( 1.3%) 0.0924 ( 0.7%) IRGen
0.0495 ( 0.8%) 0.0338 ( 2.3%) 0.0832 ( 1.1%) 0.0847 ( 0.6%) import-clang-decl
0.0630 ( 1.1%) 0.0047 ( 0.3%) 0.0678 ( 0.9%) 0.0686 ( 0.5%) SILGen
0.0517 ( 0.9%) 0.0080 ( 0.5%) 0.0597 ( 0.8%) 0.0597 ( 0.4%) precheck-target
0.0384 ( 0.7%) 0.0022 ( 0.2%) 0.0406 ( 0.6%) 0.0412 ( 0.3%) SILGen-function
0.0256 ( 0.4%) 0.0001 ( 0.0%) 0.0258 ( 0.4%) 0.0258 ( 0.2%) SIL optimization
0.0109 ( 0.2%) 0.0044 ( 0.3%) 0.0154 ( 0.2%) 0.0154 ( 0.1%) load-all-members
0.0033 ( 0.1%) 0.0004 ( 0.0%) 0.0037 ( 0.1%) 0.0037 ( 0.0%) typecheck-expr-pattern
0.0009 ( 0.0%) 0.0018 ( 0.1%) 0.0027 ( 0.0%) 0.0027 ( 0.0%) load-stdlib
0.0012 ( 0.0%) 0.0002 ( 0.0%) 0.0013 ( 0.0%) 0.0013 ( 0.0%) typecheck-for-each
0.0006 ( 0.0%) 0.0000 ( 0.0%) 0.0006 ( 0.0%) 0.0006 ( 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.0001 ( 0.0%) 0.0001 ( 0.0%) get-conformance-access-path
0.0000 ( 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%) associated-type-inference
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%) AST verification
5.8432 (100.0%) 1.4948 (100.0%) 7.3380 (100.0%) 13.2991 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 6.5278 seconds (9.7291 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
4.4156 (100.0%) 2.1122 (100.0%) 6.5278 (100.0%) 9.7291 (100.0%) Building Target
4.4156 (100.0%) 2.1122 (100.0%) 6.5278 (100.0%) 9.7291 (100.0%) Total
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-1777371519302967-swift-frontend-AAInfographics_ProDemo-all-arm64_apple_ios13.1_macabi-swiftmodule-Onone-1577340499.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 2.6479 seconds (12.5822 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.1132 ( 6.1%) 0.2004 ( 25.0%) 0.3136 ( 11.8%) 5.2613 ( 41.8%) parse-and-resolve-imports
0.1106 ( 6.0%) 0.1991 ( 24.8%) 0.3097 ( 11.7%) 5.2574 ( 41.8%) Import resolution
0.3627 ( 19.6%) 0.0804 ( 10.0%) 0.4431 ( 16.7%) 0.4518 ( 3.6%) perform-sema
0.3565 ( 19.3%) 0.0793 ( 9.9%) 0.4357 ( 16.5%) 0.4445 ( 3.5%) Type checking and Semantic analysis
0.3432 ( 18.6%) 0.0767 ( 9.6%) 0.4199 ( 15.9%) 0.4285 ( 3.4%) typecheck-decl
0.1491 ( 8.1%) 0.0360 ( 4.5%) 0.1850 ( 7.0%) 0.1859 ( 1.5%) SILGen
0.0807 ( 4.4%) 0.0265 ( 3.3%) 0.1072 ( 4.0%) 0.1083 ( 0.9%) typecheck-expr
0.0880 ( 4.8%) 0.0130 ( 1.6%) 0.1009 ( 3.8%) 0.1018 ( 0.8%) SIL optimization
0.0706 ( 3.8%) 0.0147 ( 1.8%) 0.0854 ( 3.2%) 0.0854 ( 0.7%) SILGen-function
0.0345 ( 1.9%) 0.0235 ( 2.9%) 0.0580 ( 2.2%) 0.0580 ( 0.5%) import-clang-decl
0.0337 ( 1.8%) 0.0114 ( 1.4%) 0.0451 ( 1.7%) 0.0454 ( 0.4%) typecheck-stmt
0.0126 ( 0.7%) 0.0187 ( 2.3%) 0.0313 ( 1.2%) 0.0400 ( 0.3%) load-stdlib
0.0245 ( 1.3%) 0.0064 ( 0.8%) 0.0309 ( 1.2%) 0.0317 ( 0.3%) Serialization, swiftmodule
0.0120 ( 0.6%) 0.0047 ( 0.6%) 0.0167 ( 0.6%) 0.0167 ( 0.1%) typecheck-expr-pattern
0.0116 ( 0.6%) 0.0032 ( 0.4%) 0.0148 ( 0.6%) 0.0148 ( 0.1%) load-all-members
0.0108 ( 0.6%) 0.0027 ( 0.3%) 0.0135 ( 0.5%) 0.0136 ( 0.1%) build-rewrite-system
0.0100 ( 0.5%) 0.0023 ( 0.3%) 0.0123 ( 0.5%) 0.0124 ( 0.1%) precheck-target
0.0109 ( 0.6%) 0.0011 ( 0.1%) 0.0121 ( 0.5%) 0.0121 ( 0.1%) Serialization, swiftsourceinfo
0.0037 ( 0.2%) 0.0011 ( 0.1%) 0.0048 ( 0.2%) 0.0049 ( 0.0%) Serialization, swiftdoc
0.0038 ( 0.2%) 0.0001 ( 0.0%) 0.0039 ( 0.1%) 0.0039 ( 0.0%) perform-whole-module-type-checking
0.0014 ( 0.1%) 0.0003 ( 0.0%) 0.0017 ( 0.1%) 0.0017 ( 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.0000 ( 0.0%) 0.0001 ( 0.0%) AST verification
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%) get-conformance-access-path
1.8463 (100.0%) 0.8016 (100.0%) 2.6479 (100.0%) 12.5822 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 1.2720 seconds (6.2400 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.9035 (100.0%) 0.3685 (100.0%) 1.2720 (100.0%) 6.2400 (100.0%) Building Target
0.9035 (100.0%) 0.3685 (100.0%) 1.2720 (100.0%) 6.2400 (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\ 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-1777371519352393-swift-frontend-AAInfographics_ProDemo-AAChartModel.swift-arm64_apple_ios13.1_macabi-o-Onone-3227197234.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 1.5237 seconds (11.6090 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0568 ( 6.0%) 0.1574 ( 27.0%) 0.2142 ( 14.1%) 5.2398 ( 45.1%) parse-and-resolve-imports
0.0539 ( 5.7%) 0.1553 ( 26.7%) 0.2093 ( 13.7%) 5.2348 ( 45.1%) Import resolution
0.1563 ( 16.6%) 0.0454 ( 7.8%) 0.2017 ( 13.2%) 0.2046 ( 1.8%) build-rewrite-system
0.1150 ( 12.2%) 0.0395 ( 6.8%) 0.1545 ( 10.1%) 0.1640 ( 1.4%) perform-sema
0.1142 ( 12.1%) 0.0393 ( 6.8%) 0.1535 ( 10.1%) 0.1630 ( 1.4%) Type checking and Semantic analysis
0.0640 ( 6.8%) 0.0250 ( 4.3%) 0.0890 ( 5.8%) 0.0982 ( 0.8%) typecheck-decl
0.0639 ( 6.8%) 0.0199 ( 3.4%) 0.0838 ( 5.5%) 0.0840 ( 0.7%) typecheck-stmt
0.0457 ( 4.9%) 0.0354 ( 6.1%) 0.0812 ( 5.3%) 0.0825 ( 0.7%) import-clang-decl
0.0655 ( 7.0%) 0.0138 ( 2.4%) 0.0793 ( 5.2%) 0.0802 ( 0.7%) IRGen
0.0614 ( 6.5%) 0.0138 ( 2.4%) 0.0752 ( 4.9%) 0.0753 ( 0.6%) SILGen
0.0526 ( 5.6%) 0.0167 ( 2.9%) 0.0693 ( 4.5%) 0.0696 ( 0.6%) typecheck-expr
0.0381 ( 4.0%) 0.0086 ( 1.5%) 0.0467 ( 3.1%) 0.0467 ( 0.4%) SILGen-function
0.0176 ( 1.9%) 0.0003 ( 0.1%) 0.0179 ( 1.2%) 0.0181 ( 0.2%) SIL optimization
0.0147 ( 1.6%) 0.0033 ( 0.6%) 0.0180 ( 1.2%) 0.0180 ( 0.2%) typecheck-expr-pattern
0.0105 ( 1.1%) 0.0035 ( 0.6%) 0.0141 ( 0.9%) 0.0140 ( 0.1%) precheck-target
0.0098 ( 1.0%) 0.0031 ( 0.5%) 0.0129 ( 0.8%) 0.0129 ( 0.1%) load-all-members
0.0009 ( 0.1%) 0.0016 ( 0.3%) 0.0026 ( 0.2%) 0.0026 ( 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.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%) 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%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.9417 (100.0%) 0.5821 (100.0%) 1.5237 (100.0%) 11.6090 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 4.3215 seconds (9.6164 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
2.5916 (100.0%) 1.7298 (100.0%) 4.3215 (100.0%) 9.6164 (100.0%) Building Target
2.5916 (100.0%) 1.7298 (100.0%) 4.3215 (100.0%) 9.6164 (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\ 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-1777371519345298-swift-frontend-AAInfographics_ProDemo-AAOptionsSeries.swift-arm64_apple_ios13.1_macabi-o-Onone-1559500415.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 6.5290 seconds (11.8781 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
2.0219 ( 39.4%) 0.5607 ( 40.0%) 2.5827 ( 39.6%) 5.2394 ( 44.1%) parse-and-resolve-imports
2.0192 ( 39.4%) 0.5573 ( 39.8%) 2.5766 ( 39.5%) 5.2289 ( 44.0%) Import resolution
0.2168 ( 4.2%) 0.0567 ( 4.0%) 0.2735 ( 4.2%) 0.2815 ( 2.4%) perform-sema
0.2155 ( 4.2%) 0.0566 ( 4.0%) 0.2721 ( 4.2%) 0.2800 ( 2.4%) Type checking and Semantic analysis
0.1750 ( 3.4%) 0.0421 ( 3.0%) 0.2171 ( 3.3%) 0.2243 ( 1.9%) typecheck-stmt
0.0805 ( 1.6%) 0.0307 ( 2.2%) 0.1111 ( 1.7%) 0.1189 ( 1.0%) typecheck-decl
0.0861 ( 1.7%) 0.0242 ( 1.7%) 0.1104 ( 1.7%) 0.1174 ( 1.0%) typecheck-expr
0.0768 ( 1.5%) 0.0158 ( 1.1%) 0.0925 ( 1.4%) 0.0928 ( 0.8%) build-rewrite-system
0.0607 ( 1.2%) 0.0096 ( 0.7%) 0.0703 ( 1.1%) 0.0704 ( 0.6%) IRGen
0.0376 ( 0.7%) 0.0272 ( 1.9%) 0.0647 ( 1.0%) 0.0651 ( 0.5%) import-clang-decl
0.0465 ( 0.9%) 0.0043 ( 0.3%) 0.0508 ( 0.8%) 0.0515 ( 0.4%) SILGen
0.0318 ( 0.6%) 0.0086 ( 0.6%) 0.0405 ( 0.6%) 0.0404 ( 0.3%) precheck-target
0.0252 ( 0.5%) 0.0019 ( 0.1%) 0.0270 ( 0.4%) 0.0276 ( 0.2%) SILGen-function
0.0180 ( 0.4%) 0.0001 ( 0.0%) 0.0180 ( 0.3%) 0.0181 ( 0.2%) SIL optimization
0.0078 ( 0.2%) 0.0024 ( 0.2%) 0.0102 ( 0.2%) 0.0103 ( 0.1%) load-all-members
0.0041 ( 0.1%) 0.0008 ( 0.1%) 0.0048 ( 0.1%) 0.0048 ( 0.0%) typecheck-expr-pattern
0.0011 ( 0.0%) 0.0024 ( 0.2%) 0.0035 ( 0.1%) 0.0035 ( 0.0%) load-stdlib
0.0021 ( 0.0%) 0.0001 ( 0.0%) 0.0022 ( 0.0%) 0.0022 ( 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.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%) 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
5.1276 (100.0%) 1.4014 (100.0%) 6.5290 (100.0%) 11.8781 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 6.3230 seconds (9.2349 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
4.2494 (100.0%) 2.0736 (100.0%) 6.3230 (100.0%) 9.2349 (100.0%) Building Target
4.2494 (100.0%) 2.0736 (100.0%) 6.3230 (100.0%) 9.2349 (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
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-1777371519336594-swift-frontend-AAInfographics_ProDemo-AABubbleStellarChartComposer.swift-arm64_apple_ios13.1_macabi-o-Onone-2753123931.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 2.0131 seconds (12.2113 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0548 ( 3.9%) 0.1441 ( 23.7%) 0.1989 ( 9.9%) 5.2876 ( 43.3%) parse-and-resolve-imports
0.0519 ( 3.7%) 0.1416 ( 23.3%) 0.1936 ( 9.6%) 5.2823 ( 43.3%) Import resolution
0.2534 ( 18.0%) 0.0617 ( 10.2%) 0.3152 ( 15.7%) 0.3158 ( 2.6%) perform-sema
0.2513 ( 17.9%) 0.0616 ( 10.1%) 0.3128 ( 15.5%) 0.3135 ( 2.6%) Type checking and Semantic analysis
0.1885 ( 13.4%) 0.0422 ( 6.9%) 0.2307 ( 11.5%) 0.2312 ( 1.9%) typecheck-stmt
0.1531 ( 10.9%) 0.0428 ( 7.1%) 0.1959 ( 9.7%) 0.1979 ( 1.6%) build-rewrite-system
0.1038 ( 7.4%) 0.0218 ( 3.6%) 0.1256 ( 6.2%) 0.1262 ( 1.0%) typecheck-expr
0.0789 ( 5.6%) 0.0216 ( 3.6%) 0.1005 ( 5.0%) 0.1009 ( 0.8%) typecheck-decl
0.0587 ( 4.2%) 0.0407 ( 6.7%) 0.0994 ( 4.9%) 0.1008 ( 0.8%) import-clang-decl
0.0674 ( 4.8%) 0.0099 ( 1.6%) 0.0773 ( 3.8%) 0.0775 ( 0.6%) IRGen
0.0507 ( 3.6%) 0.0041 ( 0.7%) 0.0549 ( 2.7%) 0.0551 ( 0.5%) SILGen
0.0364 ( 2.6%) 0.0027 ( 0.4%) 0.0390 ( 1.9%) 0.0393 ( 0.3%) SILGen-function
0.0270 ( 1.9%) 0.0060 ( 1.0%) 0.0330 ( 1.6%) 0.0329 ( 0.3%) precheck-target
0.0011 ( 0.1%) 0.0024 ( 0.4%) 0.0035 ( 0.2%) 0.0168 ( 0.1%) load-stdlib
0.0161 ( 1.1%) 0.0002 ( 0.0%) 0.0163 ( 0.8%) 0.0164 ( 0.1%) SIL optimization
0.0099 ( 0.7%) 0.0037 ( 0.6%) 0.0136 ( 0.7%) 0.0141 ( 0.1%) load-all-members
0.0013 ( 0.1%) 0.0000 ( 0.0%) 0.0014 ( 0.1%) 0.0013 ( 0.0%) perform-whole-module-type-checking
0.0010 ( 0.1%) 0.0002 ( 0.0%) 0.0012 ( 0.1%) 0.0012 ( 0.0%) typecheck-expr-pattern
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%) 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%) 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.4057 (100.0%) 0.6074 (100.0%) 2.0131 (100.0%) 12.2113 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 4.2995 seconds (9.6527 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
2.6064 (100.0%) 1.6931 (100.0%) 4.2995 (100.0%) 9.6527 (100.0%) Building Target
2.6064 (100.0%) 1.6931 (100.0%) 4.2995 (100.0%) 9.6527 (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\ AABulletDataElement.swift,\ AARelationshipChartComposer.swift,\ AAPlotOptions.swift,\ AATreegraphChartComposer.swift,\ AAPictorialPaths.swift,\ AAXAxis.swift,\ ProjectBundlePathLoader.swift,\ AAOrganizationChartComposer.swift,\ AAChart.swift,\ AAChartView.swift,\ ChartListTableViewVC.swift,\ AABoxplot.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AABulletDataElement.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AARelationshipChartComposer.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AAPlotOptions.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AATreegraphChartComposer.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AAPictorialPaths.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AAXAxis.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/ProjectBundlePathLoader.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AAOrganizationChartComposer.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AAChart.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartListTableViewVC.swift /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AABoxplot.swift (in target 'AAInfographics-ProDemo' from project 'AAInfographics-ProDemo')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1777371525640716-swift-frontend-AAInfographics_ProDemo-AABulletDataElement.swift-arm64_apple_ios13.1_macabi-o-Onone-3272504143.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 2.0358 seconds (2.0560 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.3219 ( 19.4%) 0.0585 ( 15.4%) 0.3804 ( 18.7%) 0.3831 ( 18.6%) perform-sema
0.3200 ( 19.3%) 0.0583 ( 15.4%) 0.3784 ( 18.6%) 0.3810 ( 18.5%) Type checking and Semantic analysis
0.2317 ( 14.0%) 0.0407 ( 10.7%) 0.2724 ( 13.4%) 0.2748 ( 13.4%) typecheck-stmt
0.1675 ( 10.1%) 0.0275 ( 7.3%) 0.1950 ( 9.6%) 0.1974 ( 9.6%) typecheck-expr
0.1187 ( 7.2%) 0.0244 ( 6.4%) 0.1431 ( 7.0%) 0.1450 ( 7.1%) typecheck-decl
0.0913 ( 5.5%) 0.0142 ( 3.8%) 0.1055 ( 5.2%) 0.1072 ( 5.2%) IRGen
0.0526 ( 3.2%) 0.0429 ( 11.3%) 0.0955 ( 4.7%) 0.0958 ( 4.7%) parse-and-resolve-imports
0.0497 ( 3.0%) 0.0410 ( 10.8%) 0.0907 ( 4.5%) 0.0910 ( 4.4%) Import resolution
0.0497 ( 3.0%) 0.0348 ( 9.2%) 0.0844 ( 4.1%) 0.0848 ( 4.1%) import-clang-decl
0.0736 ( 4.4%) 0.0068 ( 1.8%) 0.0804 ( 3.9%) 0.0819 ( 4.0%) SILGen
0.0507 ( 3.1%) 0.0123 ( 3.3%) 0.0630 ( 3.1%) 0.0632 ( 3.1%) precheck-target
0.0490 ( 3.0%) 0.0094 ( 2.5%) 0.0584 ( 2.9%) 0.0595 ( 2.9%) build-rewrite-system
0.0408 ( 2.5%) 0.0026 ( 0.7%) 0.0434 ( 2.1%) 0.0440 ( 2.1%) SILGen-function
0.0274 ( 1.7%) 0.0003 ( 0.1%) 0.0277 ( 1.4%) 0.0279 ( 1.4%) SIL optimization
0.0096 ( 0.6%) 0.0027 ( 0.7%) 0.0123 ( 0.6%) 0.0140 ( 0.7%) load-all-members
0.0011 ( 0.1%) 0.0023 ( 0.6%) 0.0035 ( 0.2%) 0.0035 ( 0.2%) load-stdlib
0.0010 ( 0.1%) 0.0000 ( 0.0%) 0.0011 ( 0.1%) 0.0011 ( 0.1%) perform-whole-module-type-checking
0.0003 ( 0.0%) 0.0000 ( 0.0%) 0.0003 ( 0.0%) 0.0003 ( 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%) typecheck-for-each
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%) 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.6572 (100.0%) 0.3787 (100.0%) 2.0358 (100.0%) 2.0560 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 2.8916 seconds (3.0746 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
1.8854 (100.0%) 1.0062 (100.0%) 2.8916 (100.0%) 3.0746 (100.0%) Building Target
1.8854 (100.0%) 1.0062 (100.0%) 2.8916 (100.0%) 3.0746 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsProModel/AABulletDataElement.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/AARelationshipChartComposer.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/AAPlotOptions.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/AATreegraphChartComposer.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/Composer/AATreegraphChartComposer.swift:13:13: warning: variable 'aaOptions' was never mutated; consider changing to 'let' constant
var aaOptions = invertedTreegraph()
~~~ ^
let
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/Composer/AAPictorialPaths.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/AAXAxis.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/ProjectBundlePathLoader.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/AAOrganizationChartComposer.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/AAChart.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.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/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/AAChartView.swift:411:45: warning: call to main actor-isolated instance method 'removeAllUserScripts()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
configuration.userContentController.removeAllUserScripts()
^
WebKit.WKUserContentController.removeAllUserScripts:2:22: note: calls to instance method 'removeAllUserScripts()' from outside of its actor context are implicitly asynchronous
@MainActor open func removeAllUserScripts()}
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:411:23: warning: main actor-isolated property 'userContentController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
configuration.userContentController.removeAllUserScripts()
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/WebKit.framework/Headers/WKWebViewConfiguration.h:118:56: note: property declared here
@property (nonatomic, strong) WKUserContentController *userContentController;
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:411:9: warning: main actor-isolated property 'configuration' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
configuration.userContentController.removeAllUserScripts()
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/WebKit.framework/Headers/WKWebView.h:91:63: note: property declared here
@property (nonatomic, readonly, copy) WKWebViewConfiguration *configuration;
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:413:9: warning: call to main actor-isolated instance method 'debugLog' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
debugLog("👻👻👻 AAChartView instance \(self) has been destroyed!")
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:391:18: note: calls to instance method 'debugLog' from outside of its actor context are implicitly asynchronous
private func debugLog(_ message: String) {
^
/Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAChartCreator/AAChartView/AAChartView.swift:391:18: note: main actor isolation inferred from inheritance from class 'WKWebView'
private func debugLog(_ message: String) {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-ProDemo/Demo/ViewController/ChartListTableViewVC.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/ChartListTableViewVC.swift:129:13: warning: initialization of immutable value 'chartOptionsWithoutAnimation' was never used; consider replacing with assignment to '_' or removing it
let chartOptionsWithoutAnimation = optionsItemsWithoutAnimation(chartOptions: chartOptions)
~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
_
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/AAInfographics-Pro/AAOptionsModel/AABoxplot.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 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 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')
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 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')
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 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 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 -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 -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 --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
Ignoring --strip-bitcode because --sign was not passed
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
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 com.aachartmodel.AAInfographics-ProDemo --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-28 03:18:49.639 appintentsmetadataprocessor[729:4423] Starting appintentsmetadataprocessor export
2026-04-28 03:18:49.642 appintentsmetadataprocessor[729:4423] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
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
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
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
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:54bc95928a01d71414b25ed69aacc9b8c5bd873e, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:54bc95928a01d71414b25ed69aacc9b8c5bd873e, 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.