Build Information
Successful build of SwiftyCreatives, reference main (1fde69
), with Swift 6.2 (beta) for macOS (SPM) on 22 Jun 2025 01:24:29 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/yukiny0811/swifty-creatives.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/yukiny0811/swifty-creatives
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 1fde692 Merge pull request #148 from yukiny0811/codex/-9uuc9i
Cloned https://github.com/yukiny0811/swifty-creatives.git
Revision (git rev-parse @):
1fde692911f82731bfda7db57318e33ea273d687
SUCCESS checkout https://github.com/yukiny0811/swifty-creatives.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/yukiny0811/swifty-creatives.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/39] Write sources
[8/39] Copying Types.metal
[8/39] Write sources
[10/39] Copying TransparentShaderVision.metal
[10/39] Copying NormalShader.metal
[10/39] Copying Functions.metal
[10/39] Copying AddShader.metal
[10/39] Write sources
[10/39] Copying SharedIndices.h
[11/39] Write sources
[11/39] Copying TransparentShader.metal
[12/39] Write sources
[33/39] Compiling _SwiftSyntaxCShims dummy.c
[34/39] Write swift-version-1EA4D86E10B52AF.txt
[36/78] Emitting module SwiftSyntax509
[37/78] Compiling SwiftSyntax509 Empty.swift
[38/78] Compiling SwiftSyntax510 Empty.swift
[39/78] Compiling SwiftSyntax600 Empty.swift
[40/78] Emitting module SwiftSyntax510
[41/78] Emitting module SwiftSyntax600
[42/143] Compiling SwiftSyntax AbsolutePosition.swift
[43/143] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[44/143] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[45/143] Compiling SwiftSyntax Assert.swift
[46/143] Compiling SwiftSyntax BumpPtrAllocator.swift
[47/143] Compiling SwiftSyntax CommonAncestor.swift
[48/143] Compiling SwiftSyntax Convenience.swift
[49/143] Compiling SwiftSyntax CustomTraits.swift
[50/150] Compiling SwiftSyntax SyntaxProtocol.swift
[51/150] Compiling SwiftSyntax SyntaxText.swift
[52/150] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[53/150] Compiling SwiftSyntax TokenDiagnostic.swift
[54/150] Compiling SwiftSyntax TokenSequence.swift
[55/150] Compiling SwiftSyntax TokenSyntax.swift
[56/150] Compiling SwiftSyntax Trivia.swift
[57/150] Compiling SimpleSimdSwift Simd+MemorySize.swift
[58/150] Compiling SimpleSimdSwift EXPORTER.swift
[59/150] Compiling SimpleSimdSwift Simd+3DTransform.swift
[60/150] Compiling SimpleSimdSwift Simd+RandomPoint.swift
[61/150] Compiling SimpleSimdSwift Alias.swift
[62/150] Compiling SimpleSimdSwift CastShortcuts.swift
[63/150] Emitting module SimpleSimdSwift
[64/150] Emitting module SwiftyCoreText
[67/151] Compiling SwiftyCoreText WorkingWithFontVariations.swift
[68/151] Compiling SwiftyCoreText WorkingWithEncoding.swift
[73/151] Compiling SwiftyCoreText GettingTypeIdentifier.swift
[74/151] Compiling SwiftyCoreText GettingFontNames.swift
[75/151] Compiling SwiftyCoreText GettingFontTableData.swift
[76/151] Compiling SwiftyCoreText GettingGlyphData.swift
[77/172] Compiling SwiftyCoreText WorkingWithGlyphs.swift
[78/172] Compiling SVGPath SVGPath.swift
[79/172] Compiling SVGPath SVGPath+CoreGraphics.swift
[80/172] Emitting module SVGPath
[81/172] Compiling SwiftyCreativesSound TempiFFTWindowType.swift
[82/173] Compiling SwiftyCreativesSound FFTNoiseExtractionMethod.swift
[83/173] Compiling SwiftyCreativesSound FFTBandCalculationMethod.swift
[84/173] Emitting module SwiftSyntax
[85/173] Compiling iGeometry Shape.swift
[86/173] Compiling iGeometry Vertex.swift
[87/175] Compiling SwiftyCreativesSound NoiseExtractor.swift
[88/175] Compiling iGeometry DBPoint.swift
[89/175] Compiling iGeometry IntGeom.swift
[90/175] Compiling SwiftyCreativesSound TempiFFT.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreativesSound/FFT/TempiFFT.swift:81:53: warning: cannot use inout expression here; argument 'realp' must be a pointer that outlives the call to 'init(realp:imagp:)' [#TemporaryPointers]
79 | var real = [Float](repeating: 0.0, count: self.halfSize)
80 | var imaginary = [Float](repeating: 0.0, count: self.halfSize)
81 | self.complexBuffer = DSPSplitComplex(realp: &real, imagp: &imaginary)
| |- warning: cannot use inout expression here; argument 'realp' must be a pointer that outlives the call to 'init(realp:imagp:)' [#TemporaryPointers]
| |- note: implicit argument conversion from '[Float]' to 'UnsafeMutablePointer<Float>' produces a pointer valid only for the duration of the call to 'init(realp:imagp:)'
| `- note: use the 'withUnsafeMutableBufferPointer' method on Array in order to explicitly convert argument to buffer pointer valid for a defined scope
82 | }
83 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreativesSound/FFT/TempiFFT.swift:81:67: warning: cannot use inout expression here; argument 'imagp' must be a pointer that outlives the call to 'init(realp:imagp:)' [#TemporaryPointers]
79 | var real = [Float](repeating: 0.0, count: self.halfSize)
80 | var imaginary = [Float](repeating: 0.0, count: self.halfSize)
81 | self.complexBuffer = DSPSplitComplex(realp: &real, imagp: &imaginary)
| |- warning: cannot use inout expression here; argument 'imagp' must be a pointer that outlives the call to 'init(realp:imagp:)' [#TemporaryPointers]
| |- note: implicit argument conversion from '[Float]' to 'UnsafeMutablePointer<Float>' produces a pointer valid only for the duration of the call to 'init(realp:imagp:)'
| `- note: use the 'withUnsafeMutableBufferPointer' method on Array in order to explicitly convert argument to buffer pointer valid for a defined scope
82 | }
83 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreativesSound/FFT/TempiFFT.swift:68:13: warning: initialization of immutable value 'lg2' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
66 |
67 | // Check if the size is a power of two
68 | let lg2 = logbf(sizeFloat)
| `- warning: initialization of immutable value 'lg2' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
69 | // assert(remainderf(sizeFloat, powf(2.0, lg2)) == 0, "size \(sizeFloat) must be a power of 2. exInfo: sampleRate:\(inSampleRate), size:\(inSize)")
70 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreativesSound/FFT/TempiFFT.swift:132:53: warning: initialization of 'UnsafeMutablePointer<Float>' results in a dangling pointer [#TemporaryPointers]
130 | }
131 | }
132 | self.complexBuffer = DSPSplitComplex(realp: UnsafeMutablePointer(mutating: reals), imagp: UnsafeMutablePointer(mutating: imags))
| | |- note: implicit argument conversion from '[Float]' to 'UnsafePointer<Float>' produces a pointer valid only for the duration of the call to 'init(mutating:)'
| | `- note: use the 'withUnsafeBufferPointer' method on Array in order to explicitly convert argument to buffer pointer valid for a defined scope
| `- warning: initialization of 'UnsafeMutablePointer<Float>' results in a dangling pointer [#TemporaryPointers]
133 |
134 | // This compiles without error but doesn't actually work. It results in garbage values being stored to the complexBuffer's real and imag parts. Why? The above workaround is undoubtedly tons slower so it would be good to get vDSP_ctoz working again.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreativesSound/FFT/TempiFFT.swift:132:99: warning: initialization of 'UnsafeMutablePointer<Float>' results in a dangling pointer [#TemporaryPointers]
130 | }
131 | }
132 | self.complexBuffer = DSPSplitComplex(realp: UnsafeMutablePointer(mutating: reals), imagp: UnsafeMutablePointer(mutating: imags))
| | |- note: implicit argument conversion from '[Float]' to 'UnsafePointer<Float>' produces a pointer valid only for the duration of the call to 'init(mutating:)'
| | `- note: use the 'withUnsafeBufferPointer' method on Array in order to explicitly convert argument to buffer pointer valid for a defined scope
| `- warning: initialization of 'UnsafeMutablePointer<Float>' results in a dangling pointer [#TemporaryPointers]
133 |
134 | // This compiles without error but doesn't actually work. It results in garbage values being stored to the complexBuffer's real and imag parts. Why? The above workaround is undoubtedly tons slower so it would be good to get vDSP_ctoz working again.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreativesSound/FFT/TempiFFT.swift:250:19: warning: initialization of 'UnsafePointer<Float>' results in a dangling pointer [#TemporaryPointers]
248 | private func fastAverage(_ array:[Float], _ startIdx: Int, _ stopIdx: Int) -> Float {
249 | var mean: Float = 0
250 | let ptr = UnsafePointer<Float>(array)
| | |- note: implicit argument conversion from '[Float]' to 'UnsafePointer<Float>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use the 'withUnsafeBufferPointer' method on Array in order to explicitly convert argument to buffer pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<Float>' results in a dangling pointer [#TemporaryPointers]
251 | vDSP_meanv(ptr + startIdx, 1, &mean, UInt(stopIdx - startIdx))
252 |
[#TemporaryPointers]: <https://docs.swift.org/compiler/documentation/diagnostics/temporary-pointers>
[91/175] Compiling SwiftyCreativesSound FFTResultComponent.swift
[92/175] Compiling iGeometry Simplificator+Angle.swift
[93/175] Compiling iGeometry Simplificator+Area.swift
[94/175] Compiling iGeometry Rect.swift
[95/175] Compiling iGeometry Triangle.swift
[96/175] Compiling iGeometry IntPoint.swift
[97/175] Compiling iGeometry IntPoint+Array.swift
[98/175] Compiling iGeometry IntShape.swift
[99/175] Compiling iGeometry PlainShape+Initializers.swift
[102/175] Compiling iGeometry Int+Empty.swift
[103/175] Compiling iGeometry PathList.swift
[104/175] Compiling iGeometry RingSet.swift
[105/175] Compiling iGeometry Simplificator+Linear.swift
[106/175] Compiling iGeometry Simplificator.swift
[110/175] Compiling iGeometry PlainShape+Validation.swift
[111/175] Compiling iGeometry Circle.swift
[112/175] Compiling iGeometry IntPoint+Geom.swift
[113/175] Emitting module iGeometry
[114/175] Compiling iGeometry PlainShape.swift
[115/175] Compiling iGeometry PlainShapeList.swift
[118/194] Compiling SwiftyCreativesSound AudioCapturer.swift
[119/194] Emitting module SwiftyCreativesSound
[120/194] Compiling SwiftyCreativesSound DetailedAudioCapturer.swift
[121/194] Compiling SwiftyCreativesSound FFTVisualizer.swift
[122/194] Compiling SwiftyCreativesSound FastAudioCapturer.swift
[123/194] Compiling iShapeTriangulation Triangulator.swift
[124/194] Compiling iShapeTriangulation IntPoint+Monotone.swift
[125/195] Emitting module iShapeTriangulation
[126/195] Compiling iShapeTriangulation IntTriangle.swift
[127/195] Compiling iShapeTriangulation PlainShape+ShapeNavigator.swift
[128/195] Compiling iShapeTriangulation PlainShape+Triangulation.swift
[129/195] Compiling iShapeTriangulation PlainShape+Delaunay.swift
[130/195] Compiling iShapeTriangulation PlainShape+SliceBuffer.swift
[131/195] Compiling iShapeTriangulation Delaunay+Tesselation.swift
[132/195] Compiling iShapeTriangulation Delaunay+Triangle.swift
[133/195] Compiling iShapeTriangulation TessellationError.swift
[134/195] Compiling iShapeTriangulation TriangulationError.swift
[135/195] Compiling iShapeTriangulation Delaunay.swift
[136/195] Compiling iShapeTriangulation IndexBuffer.swift
[137/195] Compiling iShapeTriangulation Delaunay+Centroid.swift
[138/195] Compiling iShapeTriangulation Delaunay+Polygon.swift
[139/195] Compiling iShapeTriangulation PlainShape+Layout.swift
[140/195] Compiling iShapeTriangulation PlainShape+Modification.swift
[141/195] Compiling iShapeTriangulation CentroidNetError.swift
[142/195] Compiling iShapeTriangulation DelaunayError.swift
[143/207] Compiling SVGVertexBuilder SVGUtil.swift
[144/207] Compiling SVGVertexBuilder SVGUtil+HelperFunctions.swift
[145/207] Compiling SVGVertexBuilder SVGPathAlias.swift
[146/207] Compiling SVGVertexBuilder SVGUtil+MainFunctions.swift
[147/207] Emitting module SVGVertexBuilder
[148/207] Compiling SVGVertexBuilder SVG.swift
[149/207] Compiling SwiftSyntax SyntaxCollections.swift
[150/207] Compiling SwiftSyntax SyntaxEnum.swift
[151/207] Compiling SwiftSyntax SyntaxKind.swift
[152/207] Compiling SwiftSyntax SyntaxRewriter.swift
[153/207] Compiling SwiftSyntax SyntaxTraits.swift
[154/207] Compiling SwiftSyntax SyntaxVisitor.swift
[155/207] Compiling SwiftSyntax TokenKind.swift
[156/207] Compiling SwiftSyntax SourceEdit.swift
[157/207] Compiling SwiftSyntax SourceLength.swift
[158/207] Compiling SwiftSyntax SourceLocation.swift
[159/207] Compiling SwiftSyntax SourcePresence.swift
[160/207] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[161/207] Compiling SwiftSyntax Syntax.swift
[162/207] Compiling SwiftSyntax SyntaxArena.swift
[163/207] Compiling SwiftSyntax Identifier.swift
[164/207] Compiling SwiftSyntax MemoryLayout.swift
[165/207] Compiling SwiftSyntax MissingNodeInitializers.swift
[166/207] Compiling SwiftSyntax RawSyntax.swift
[167/207] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[168/207] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[169/207] Compiling SwiftSyntax RawSyntaxTokenView.swift
[170/207] Compiling FontVertexBuilder GlyphUtil+HelperFunctions.swift
[171/207] Compiling FontVertexBuilder GlyphUtil.swift
[172/207] Compiling FontVertexBuilder GlyphAlias.swift
[173/207] Emitting module FontVertexBuilder
[174/207] Compiling FontVertexBuilder GlyphUtil+MainFunctions.swift
[175/207] Compiling FontVertexBuilder PathText.swift
[176/207] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
[177/207] Compiling SwiftSyntax SyntaxChildren.swift
[178/207] Compiling SwiftSyntax SyntaxCollection.swift
[179/207] Compiling SwiftSyntax SyntaxHashable.swift
[180/207] Compiling SwiftSyntax SyntaxIdentifier.swift
[181/207] Compiling SwiftSyntax SyntaxNodeFactory.swift
[182/207] Compiling SwiftSyntax SyntaxNodeStructure.swift
[183/207] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[184/207] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[185/207] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[186/207] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[187/207] Compiling SwiftSyntax RawSyntaxValidation.swift
[188/207] Compiling SwiftSyntax SyntaxNodesAB.swift
[189/207] Compiling SwiftSyntax SyntaxNodesC.swift
[190/207] Compiling SwiftSyntax Utils.swift
[191/207] Compiling SwiftSyntax ChildNameForKeyPath.swift
[192/207] Compiling SwiftSyntax Keyword.swift
[193/207] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[194/207] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[195/207] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[196/207] Compiling SwiftSyntax SyntaxBaseNodes.swift
[197/207] Compiling SwiftSyntax SyntaxNodesD.swift
[198/207] Compiling SwiftSyntax SyntaxNodesEF.swift
[199/207] Compiling SwiftSyntax SyntaxNodesGHI.swift
[200/207] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[201/207] Compiling SwiftSyntax SyntaxNodesOP.swift
[202/207] Compiling SwiftSyntax SyntaxNodesQRS.swift
[203/207] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[204/265] Compiling SwiftDiagnostics Message.swift
[205/266] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[206/266] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[207/266] Compiling SwiftBasicFormat Syntax+Extensions.swift
[208/266] Compiling SwiftDiagnostics Note.swift
[209/266] Compiling SwiftDiagnostics Diagnostic.swift
[210/266] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[211/266] Emitting module SwiftDiagnostics
[212/266] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[213/266] Compiling SwiftDiagnostics Convenience.swift
[214/266] Compiling SwiftDiagnostics FixIt.swift
[215/266] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[216/266] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[217/266] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[218/266] Emitting module SwiftBasicFormat
[219/266] Compiling SwiftBasicFormat InferIndentation.swift
[220/266] Compiling SwiftBasicFormat BasicFormat.swift
[221/266] Compiling SwiftParser StringLiterals.swift
[222/266] Compiling SwiftParser SwiftParserCompatibility.swift
[223/266] Compiling SwiftParser SwiftVersion.swift
[224/266] Compiling SwiftParser SyntaxUtils.swift
[225/270] Compiling SwiftParser TopLevel.swift
[226/270] Compiling SwiftParser TriviaParser.swift
[227/270] Compiling SwiftParser Types.swift
[228/270] Compiling SwiftParser ExperimentalFeatures.swift
[229/270] Compiling SwiftParser UnicodeScalarExtensions.swift
[230/270] Compiling SwiftParser Lookahead.swift
[231/270] Compiling SwiftParser LoopProgressCondition.swift
[232/270] Compiling SwiftParser Modifiers.swift
[233/270] Compiling SwiftParser Names.swift
[234/270] Compiling SwiftParser Nominals.swift
[235/270] Compiling SwiftParser Parameters.swift
[236/270] Compiling SwiftParser ParseSourceFile.swift
[237/270] Compiling SwiftParser Parser.swift
[238/270] Compiling SwiftParser Patterns.swift
[239/270] Compiling SwiftParser TokenConsumer.swift
[240/270] Compiling SwiftParser TokenPrecedence.swift
[241/270] Compiling SwiftParser TokenSpec.swift
[242/270] Compiling SwiftParser TokenSpecSet.swift
[243/270] Compiling SwiftParser Recovery.swift
[244/270] Compiling SwiftParser Specifiers.swift
[245/270] Compiling SwiftParser Statements.swift
[246/270] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[247/270] Emitting module SwiftParser
[248/270] Compiling SwiftParser Directives.swift
[249/270] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[250/270] Compiling SwiftParser Expressions.swift
[251/270] Compiling SwiftParser IncrementalParseTransition.swift
[252/270] Compiling SwiftParser IsValidIdentifier.swift
[253/270] Compiling SwiftParser Attributes.swift
[254/270] Compiling SwiftParser Availability.swift
[255/270] Compiling SwiftParser CharacterInfo.swift
[256/270] Compiling SwiftParser CollectionNodes+Parsable.swift
[257/270] Compiling SwiftParser Declarations.swift
[258/270] Compiling SwiftParser Cursor.swift
[259/270] Compiling SwiftParser Lexeme.swift
[260/270] Compiling SwiftParser LexemeSequence.swift
[261/270] Compiling SwiftParser Lexer.swift
[262/270] Compiling SwiftParser RegexLiteralLexer.swift
[263/270] Compiling SwiftParser IsLexerClassified.swift
[264/270] Compiling SwiftParser LayoutNodes+Parsable.swift
[265/270] Compiling SwiftParser Parser+TokenSpecSet.swift
[266/270] Compiling SwiftParser TokenSpecStaticMembers.swift
[267/293] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[268/294] Compiling SwiftOperators OperatorTable.swift
[269/294] Compiling SwiftOperators PrecedenceGroup.swift
[270/295] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[271/295] Emitting module SwiftOperators
[272/295] Compiling SwiftOperators PrecedenceGraph.swift
[273/295] Compiling SwiftOperators OperatorTable+Defaults.swift
[274/295] Compiling SwiftOperators OperatorTable+Semantics.swift
[275/295] Compiling SwiftOperators OperatorError.swift
[276/295] Compiling SwiftOperators Operator.swift
[277/295] Compiling SwiftOperators OperatorError+Diagnostics.swift
[278/295] Compiling SwiftOperators OperatorTable+Folding.swift
[279/295] Compiling SwiftOperators SyntaxSynthesis.swift
[280/295] Compiling SwiftParserDiagnostics PresenceUtils.swift
[281/295] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[282/295] Compiling SwiftParserDiagnostics Utils.swift
[283/295] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[284/295] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[285/295] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[286/295] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[287/295] Compiling SwiftParserDiagnostics MissingNodesError.swift
[288/295] Compiling SwiftParserDiagnostics MissingTokenError.swift
[289/295] Emitting module SwiftParserDiagnostics
[290/295] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[291/295] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[292/310] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[293/311] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[294/311] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[295/311] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[296/311] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[297/311] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[298/311] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[299/311] Compiling SwiftSyntaxBuilder Indenter.swift
[300/311] Compiling SwiftSyntaxBuilder ListBuilder.swift
[301/311] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[302/311] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[303/311] Emitting module SwiftSyntaxBuilder
[304/311] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[305/311] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[306/311] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[307/311] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[308/329] Compiling SwiftSyntaxMacros MemberMacro.swift
[309/329] Compiling SwiftSyntaxMacros PeerMacro.swift
[310/330] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[311/330] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[312/330] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[313/330] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[314/330] Compiling SwiftSyntaxMacros PreambleMacro.swift
[315/330] Compiling SwiftSyntaxMacros Macro.swift
[316/330] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[317/330] Compiling SwiftSyntaxMacros AttachedMacro.swift
[318/330] Compiling SwiftSyntaxMacros BodyMacro.swift
[319/330] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[320/330] Compiling SwiftSyntaxMacros Macro+Format.swift
[321/330] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[322/330] Compiling SwiftSyntaxMacros AccessorMacro.swift
[323/330] Emitting module SwiftSyntaxMacros
[324/330] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[325/330] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[326/330] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[327/340] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[328/340] Emitting module SwiftSyntaxMacroExpansion
[329/340] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[330/340] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[331/340] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[332/340] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[333/340] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[334/340] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[335/340] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[336/340] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[337/352] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[338/353] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[339/353] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[340/353] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[341/353] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[342/353] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[343/353] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[344/353] Emitting module SwiftCompilerPluginMessageHandling
[345/353] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[346/353] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[347/353] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[348/353] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[349/353] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[350/355] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[351/355] Emitting module SwiftCompilerPlugin
[352/381] Compiling SwiftyCreativesMacro String+Error.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreativesMacro/Utils/String+Error.swift:10:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension String: Error {}
| |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 |
[353/381] Compiling SwiftyCreativesMacro SwiftyCreativesMacroPlugin.swift
[354/381] Emitting module SwiftyCreativesMacro
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreativesMacro/Utils/String+Error.swift:10:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension String: Error {}
| |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 |
[355/381] Compiling SwiftyCreativesMacro SketchObject.swift
[355/381] Write Objects.LinkFileList
[356/381] Linking SwiftyCreativesMacro-tool
[358/381] Emitting module EasyMetalShaderMacro
[359/383] Compiling EasyMetalShaderMacro EMTextureArgument.swift
[360/383] Compiling EasyMetalShaderMacro EasyMetalShaderMacroPlugin.swift
[361/383] Compiling EasyMetalShaderMacro EMComputeShader3D+ExtensionMacro.swift
[362/383] Compiling EasyMetalShaderMacro EMComputeShader3D+MemberAttributeMacro.swift
[363/383] Compiling EasyMetalShaderMacro EMRenderShader+ExtensionMacro.swift
[364/383] Compiling EasyMetalShaderMacro EMRenderShader+MemberAttributeMacro.swift
[365/383] Compiling EasyMetalShaderMacro EMComputeShader.swift
[366/383] Compiling EasyMetalShaderMacro ComputeFunctionStrings3D.swift
[367/383] Compiling EasyMetalShaderMacro InitCompute3D.swift
[368/383] Compiling EasyMetalShaderMacro InitRender.swift
[369/383] Compiling EasyMetalShaderMacro RenderFunctionStrings.swift
[370/383] Compiling EasyMetalShaderMacro EMRenderShader+MemberMacro.swift
[371/383] Compiling EasyMetalShaderMacro EMRenderShader.swift
[372/383] Compiling EasyMetalShaderMacro EMComputeShader3D+MemberMacro.swift
[373/383] Compiling EasyMetalShaderMacro EMComputeShader3D.swift
[374/383] Compiling EasyMetalShaderMacro EMComputeShader+ExtensionMacro.swift
[375/383] Compiling EasyMetalShaderMacro EMComputeShader+MemberAttributeMacro.swift
[376/383] Compiling EasyMetalShaderMacro EMComputeShader+MemberMacro.swift
[377/383] Compiling EasyMetalShaderMacro EMArgument.swift
[378/383] Compiling EasyMetalShaderMacro ComputeFunctionStrings.swift
[379/383] Compiling EasyMetalShaderMacro InitCompute.swift
[380/383] Compiling EasyMetalShaderMacro String+Error.swift
[381/383] Compiling EasyMetalShaderMacro Util.swift
[381/383] Write Objects.LinkFileList
[382/383] Linking EasyMetalShaderMacro-tool
[384/408] Compiling EasyMetalShader MetalPreLibrary.swift
[385/408] Compiling EasyMetalShader Rand.swift
[386/408] Compiling EasyMetalShader RasterizerData.swift
[387/410] Compiling EasyMetalShader EMIgnore.swift
[388/410] Compiling EasyMetalShader ShaderCore_EasyMetalShaderLib.swift
[389/410] Compiling EasyMetalShader VertexInput.swift
[390/410] Compiling EasyMetalShader ArrayBuffer.swift
[391/410] Compiling EasyMetalShader EMMetalArgument.swift
[392/410] Compiling EasyMetalShader EMMetalRenderFunction.swift
[393/410] Compiling EasyMetalShader ShaderRenderer.swift
[394/410] Compiling EasyMetalShader EMMetalTexture.swift
[395/410] Compiling EasyMetalShader EMMetalTextureUsage.swift
[396/410] Compiling EasyMetalShader EMMetalComputeFunction.swift
[397/410] Compiling EasyMetalShader EMMetalDispatch.swift
[398/410] Compiling EasyMetalShader EMMetalFunction.swift
[399/410] Compiling EasyMetalShader EMArgument.swift
[400/410] Compiling EasyMetalShader EMComputeShader.swift
[401/410] Compiling EasyMetalShader EMComputeShader3D.swift
[402/410] Compiling EasyMetalShader EMRenderShader.swift
[403/410] Compiling EasyMetalShader EMTextureArgument.swift
[404/410] Compiling EasyMetalShader Include.swift
[405/410] Compiling EasyMetalShader ShaderStringBuilder.swift
[406/410] Compiling EasyMetalShader EXPORTER.swift
[407/410] Compiling EasyMetalShader MTLTexture+.swift
[408/410] Emitting module EasyMetalShader
[409/410] Compiling EasyMetalShader EasyShaderView.swift
[410/410] Compiling EasyMetalShader ShaderMTKView.swift
[411/500] Compiling SwiftyCreatives FunctionBase+BoldLine.swift
[412/500] Compiling SwiftyCreatives FunctionBase+Box.swift
[413/500] Compiling SwiftyCreatives FunctionBase+Circle.swift
[414/500] Compiling SwiftyCreatives FunctionBase+Color.swift
[415/500] Compiling SwiftyCreatives FunctionBase+Fog.swift
[416/500] Compiling SwiftyCreatives FunctionBase+HitTestableBox.swift
[417/500] Compiling SwiftyCreatives FunctionBase+HitTestableImg.swift
[418/500] Compiling SwiftyCreatives FunctionBase+Img.swift
[419/500] Compiling SwiftyCreatives FunctionBase+Line.swift
[420/500] Compiling SwiftyCreatives FunctionBase+Mesh.swift
[421/509] Compiling SwiftyCreatives ImageAdjuster.swift
[422/509] Compiling SwiftyCreatives ImageLoadable.swift
[423/509] Compiling SwiftyCreatives RectanglePlanePrimitive.swift
[424/509] Compiling SwiftyCreatives ScaleSettable.swift
[425/509] Compiling SwiftyCreatives BoxInfo.swift
[426/509] Compiling SwiftyCreatives CircleInfo.swift
[427/509] Compiling SwiftyCreatives ModelObjectInfo.swift
[428/509] Compiling SwiftyCreatives PrimitiveInfo.swift
[429/509] Compiling SwiftyCreatives RectShapeInfo.swift
[430/509] Compiling SwiftyCreatives TriangleInfo.swift
[431/509] Compiling SwiftyCreatives RendererBase+Functions.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
56 | tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
57 | tileDesc.threadgroupSizeMatchesTileSize = true
58 | resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
59 |
60 | tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
59 |
60 | tileDesc.tileFunction = clearFunction
61 | clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
62 |
63 | // MARK: - Depth Descriptor
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[432/509] Compiling SwiftyCreatives RendererBase+StaticFunctions.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
56 | tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
57 | tileDesc.threadgroupSizeMatchesTileSize = true
58 | resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
59 |
60 | tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
59 |
60 | tileDesc.tileFunction = clearFunction
61 | clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
62 |
63 | // MARK: - Depth Descriptor
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[433/509] Compiling SwiftyCreatives RendererBase.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
56 | tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
57 | tileDesc.threadgroupSizeMatchesTileSize = true
58 | resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
59 |
60 | tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
59 |
60 | tileDesc.tileFunction = clearFunction
61 | clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
62 |
63 | // MARK: - Depth Descriptor
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[434/509] Compiling SwiftyCreatives NormalBlendRenderer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
56 | tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
57 | tileDesc.threadgroupSizeMatchesTileSize = true
58 | resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
59 |
60 | tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
59 |
60 | tileDesc.tileFunction = clearFunction
61 | clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
62 |
63 | // MARK: - Depth Descriptor
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[435/509] Compiling SwiftyCreatives TransparentRenderer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
56 | tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
57 | tileDesc.threadgroupSizeMatchesTileSize = true
58 | resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
59 |
60 | tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
59 |
60 | tileDesc.tileFunction = clearFunction
61 | clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
62 |
63 | // MARK: - Depth Descriptor
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[436/509] Compiling SwiftyCreatives AddBlendRendererVision.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
56 | tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
57 | tileDesc.threadgroupSizeMatchesTileSize = true
58 | resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
59 |
60 | tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
59 |
60 | tileDesc.tileFunction = clearFunction
61 | clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
62 |
63 | // MARK: - Depth Descriptor
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[437/509] Compiling SwiftyCreatives NormalBlendRendererVision.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
56 | tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
57 | tileDesc.threadgroupSizeMatchesTileSize = true
58 | resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
59 |
60 | tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
59 |
60 | tileDesc.tileFunction = clearFunction
61 | clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
62 |
63 | // MARK: - Depth Descriptor
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[438/509] Compiling SwiftyCreatives TransparentRendererVision.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
56 | tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
57 | tileDesc.threadgroupSizeMatchesTileSize = true
58 | resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
59 |
60 | tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
59 |
60 | tileDesc.tileFunction = clearFunction
61 | clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
62 |
63 | // MARK: - Depth Descriptor
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[439/509] Compiling SwiftyCreatives visionOSSettings.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
56 | tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
57 | tileDesc.threadgroupSizeMatchesTileSize = true
58 | resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
59 |
60 | tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
59 |
60 | tileDesc.tileFunction = clearFunction
61 | clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
62 |
63 | // MARK: - Depth Descriptor
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[440/509] Compiling SwiftyCreatives ShaderCore.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
56 | tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
57 | tileDesc.threadgroupSizeMatchesTileSize = true
58 | resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
59 |
60 | tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
59 |
60 | tileDesc.tileFunction = clearFunction
61 | clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
| |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo' [#DeprecatedDeclaration]
| `- note: use 'MTLPipelineOption.bindingInfo' instead
62 |
63 | // MARK: - Depth Descriptor
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[441/509] Compiling SwiftyCreatives SCPacket.swift
[442/509] Compiling SwiftyCreatives Sketch.swift
[443/509] Compiling SwiftyCreatives Sketch+UtilFunctions.swift
[444/509] Compiling SwiftyCreatives Alias.swift
[445/509] Compiling SwiftyCreatives AssetUtil.swift
[446/509] Compiling SwiftyCreatives BlendMode.swift
[447/509] Compiling SwiftyCreatives DefaultBuffers.swift
[448/509] Compiling SwiftyCreatives EXPORTER.swift
[449/509] Compiling SwiftyCreatives MathUtil.swift
[450/509] Compiling SwiftyCreatives SharedIndices.swift
[451/509] Compiling SwiftyCreatives KitSketchView.swift
[452/509] Compiling SwiftyCreatives SketchView.swift
[453/509] Compiling SwiftyCreatives TouchableMTKView+Configure.swift
[454/509] Compiling SwiftyCreatives TouchableMTKView+Deinitializer.swift
[455/509] Compiling SwiftyCreatives TouchableMTKView+Initializer.swift
[456/509] Compiling SwiftyCreatives TouchableMTKView+Utils.swift
[457/509] Compiling SwiftyCreatives TouchableMTKView.swift
[458/509] Compiling SwiftyCreatives resource_bundle_accessor.swift
[459/509] Compiling SwiftyCreatives CameraConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
8 | import CoreGraphics
9 |
10 | extension CGSize: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | public static func + (lhs: Self, rhs: Self) -> Self {
12 | return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[460/509] Compiling SwiftyCreatives DefaultOrthographicConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
8 | import CoreGraphics
9 |
10 | extension CGSize: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | public static func + (lhs: Self, rhs: Self) -> Self {
12 | return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[461/509] Compiling SwiftyCreatives DefaultPerspectiveConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
8 | import CoreGraphics
9 |
10 | extension CGSize: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | public static func + (lhs: Self, rhs: Self) -> Self {
12 | return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[462/509] Compiling SwiftyCreatives EasyCameraType.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
8 | import CoreGraphics
9 |
10 | extension CGSize: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | public static func + (lhs: Self, rhs: Self) -> Self {
12 | return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[463/509] Compiling SwiftyCreatives MainCamera.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
8 | import CoreGraphics
9 |
10 | extension CGSize: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | public static func + (lhs: Self, rhs: Self) -> Self {
12 | return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[464/509] Compiling SwiftyCreatives DefaultDrawConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
8 | import CoreGraphics
9 |
10 | extension CGSize: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | public static func + (lhs: Self, rhs: Self) -> Self {
12 | return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[465/509] Compiling SwiftyCreatives DrawConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
8 | import CoreGraphics
9 |
10 | extension CGSize: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | public static func + (lhs: Self, rhs: Self) -> Self {
12 | return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[466/509] Compiling SwiftyCreatives Bool+.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
8 | import CoreGraphics
9 |
10 | extension CGSize: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | public static func + (lhs: Self, rhs: Self) -> Self {
12 | return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[467/509] Compiling SwiftyCreatives CGPoint+.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
8 | import CoreGraphics
9 |
10 | extension CGSize: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | public static func + (lhs: Self, rhs: Self) -> Self {
12 | return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[468/509] Compiling SwiftyCreatives CGSize+.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
8 | import CoreGraphics
9 |
10 | extension CGSize: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | public static func + (lhs: Self, rhs: Self) -> Self {
12 | return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[469/509] Compiling SwiftyCreatives CornerRadiusPostProcessor.swift
[470/509] Compiling SwiftyCreatives Img.swift
[471/509] Compiling SwiftyCreatives ModelObject.swift
[472/509] Compiling SwiftyCreatives SVGObj.swift
[473/509] Compiling SwiftyCreatives HitTestableBox.swift
[474/509] Compiling SwiftyCreatives HitTestableImg.swift
[475/509] Compiling SwiftyCreatives HitTestableRect.swift
[476/509] Compiling SwiftyCreatives UIViewObject.swift
[477/509] Compiling SwiftyCreatives HitTestablePrimitive.swift
[478/509] Compiling SwiftyCreatives ImageAdjustOption.swift
[479/509] Emitting module SwiftyCreatives
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
8 | import CoreGraphics
9 |
10 | extension CGSize: AdditiveArithmetic {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | public static func + (lhs: Self, rhs: Self) -> Self {
12 | return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[480/509] Compiling SwiftyCreatives FunctionBase+ModelObject.swift
[481/509] Compiling SwiftyCreatives FunctionBase+PushPop.swift
[482/509] Compiling SwiftyCreatives FunctionBase+Rect.swift
[483/509] Compiling SwiftyCreatives FunctionBase+Rotate.swift
[484/509] Compiling SwiftyCreatives FunctionBase+SVG.swift
[485/509] Compiling SwiftyCreatives FunctionBase+Scale.swift
[486/509] Compiling SwiftyCreatives FunctionBase+Text.swift
[487/509] Compiling SwiftyCreatives FunctionBase+Translate.swift
[488/509] Compiling SwiftyCreatives FunctionBase+Triangle.swift
[489/509] Compiling SwiftyCreatives FunctionBase.swift
[490/509] Compiling SwiftyCreatives Primitive.swift
[491/509] Compiling SwiftyCreatives RawTextFactory.swift
[492/509] Compiling SwiftyCreatives TextFactory.swift
[493/509] Compiling SwiftyCreatives LetterCache.swift
[494/509] Compiling SwiftyCreatives Text2D.swift
[495/509] Compiling SwiftyCreatives Text3D.swift
[496/509] Compiling SwiftyCreatives Text3DRaw.swift
[497/509] Compiling SwiftyCreatives TextBufferCreationError.swift
[498/509] Compiling SwiftyCreatives SCAnimatable.swift
[499/509] Compiling SwiftyCreatives AddRenderer.swift
[500/509] Compiling SwiftyCreatives Comparable+.swift
[501/509] Compiling SwiftyCreatives Float+.swift
[502/509] Compiling SwiftyCreatives MTLCommandBuffer+.swift
[503/509] Compiling SwiftyCreatives MTLTexture+.swift
[504/509] Compiling SwiftyCreatives Numeric+.swift
[505/509] Compiling SwiftyCreatives UIView+.swift
[506/509] Compiling SwiftyCreatives Box.swift
[507/509] Compiling SwiftyCreatives SketchObject.swift
[508/509] Compiling SwiftyCreatives SketchObjectHasDraw.swift
[509/509] Compiling SwiftyCreatives BloomPostProcessor.swift
Build complete! (49.84s)
Fetching https://github.com/apple/swift-syntax.git
Fetching https://github.com/yukiny0811/SimpleSimdSwift
Fetching https://github.com/yukiny0811/EasyMetalShader.git
Fetching https://github.com/pointfreeco/swift-snapshot-testing
Fetching https://github.com/yukiny0811/FontVertexBuilder
[1/955] Fetching easymetalshader
[183/1006] Fetching easymetalshader, simplesimdswift
[219/1196] Fetching easymetalshader, simplesimdswift, fontvertexbuilder
[1182/14994] Fetching easymetalshader, simplesimdswift, fontvertexbuilder, swift-snapshot-testing
[2562/85918] Fetching easymetalshader, simplesimdswift, fontvertexbuilder, swift-snapshot-testing, swift-syntax
Fetched https://github.com/yukiny0811/FontVertexBuilder from cache (2.57s)
Fetched https://github.com/pointfreeco/swift-snapshot-testing from cache (2.57s)
Fetched https://github.com/yukiny0811/EasyMetalShader.git from cache (3.33s)
Fetched https://github.com/apple/swift-syntax.git from cache (3.33s)
Fetched https://github.com/yukiny0811/SimpleSimdSwift from cache (3.33s)
Computing version for https://github.com/apple/swift-syntax.git
Computed https://github.com/apple/swift-syntax.git at 600.0.1 (5.87s)
Computing version for https://github.com/yukiny0811/EasyMetalShader.git
Computed https://github.com/yukiny0811/EasyMetalShader.git at 3.3.1 (0.40s)
Computing version for https://github.com/yukiny0811/FontVertexBuilder
Computed https://github.com/yukiny0811/FontVertexBuilder at 1.2.5 (0.39s)
Fetching https://github.com/yukiny0811/SVGPath
Fetching https://github.com/yukiny0811/SwiftyCoreText
[1/173] Fetching svgpath
[174/224] Fetching svgpath, swiftycoretext
Fetched https://github.com/yukiny0811/SVGPath from cache (0.63s)
Fetched https://github.com/yukiny0811/SwiftyCoreText from cache (0.63s)
Computing version for https://github.com/yukiny0811/SimpleSimdSwift
Computed https://github.com/yukiny0811/SimpleSimdSwift at 1.0.1 (1.03s)
Computing version for https://github.com/pointfreeco/swift-snapshot-testing
Computed https://github.com/pointfreeco/swift-snapshot-testing at 1.17.4 (0.49s)
Computing version for https://github.com/yukiny0811/SVGPath
Computed https://github.com/yukiny0811/SVGPath at 1.0.0 (0.46s)
Computing version for https://github.com/yukiny0811/SwiftyCoreText
Computed https://github.com/yukiny0811/SwiftyCoreText at 1.0.0 (0.37s)
Creating working copy for https://github.com/pointfreeco/swift-snapshot-testing
Working copy of https://github.com/pointfreeco/swift-snapshot-testing resolved at 1.17.4
Creating working copy for https://github.com/yukiny0811/SwiftyCoreText
Working copy of https://github.com/yukiny0811/SwiftyCoreText resolved at 1.0.0
Creating working copy for https://github.com/yukiny0811/FontVertexBuilder
Working copy of https://github.com/yukiny0811/FontVertexBuilder resolved at 1.2.5
Creating working copy for https://github.com/yukiny0811/SimpleSimdSwift
Working copy of https://github.com/yukiny0811/SimpleSimdSwift resolved at 1.0.1
Creating working copy for https://github.com/yukiny0811/SVGPath
Working copy of https://github.com/yukiny0811/SVGPath resolved at 1.0.0
Creating working copy for https://github.com/yukiny0811/EasyMetalShader.git
Working copy of https://github.com/yukiny0811/EasyMetalShader.git resolved at 3.3.1
Creating working copy for https://github.com/apple/swift-syntax.git
Working copy of https://github.com/apple/swift-syntax.git resolved at 600.0.1
warning: 'swift-snapshot-testing': Conflicting identity for swift-syntax: dependency 'github.com/swiftlang/swift-syntax' and dependency 'github.com/apple/swift-syntax' both point to the same package identity 'swift-syntax'. The dependencies are introduced through the following chains: (A) /users/admin/builder/spi-builder-workspace->github.com/pointfreeco/swift-snapshot-testing->github.com/swiftlang/swift-syntax (B) /users/admin/builder/spi-builder-workspace->github.com/apple/swift-syntax. If there are multiple chains that lead to the same dependency, only the first chain is shown here. To see all chains use debug output option. To resolve the conflict, coordinate with the maintainer of the package that introduces the conflicting dependency. This will be escalated to an error in future versions of SwiftPM.
warning: 'fontvertexbuilder': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/.build/checkouts/FontVertexBuilder/Sources/iShapeTriangulation/iShapeTriangulation_LICENSE
warning: 'fontvertexbuilder': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/.build/checkouts/FontVertexBuilder/Sources/iGeometry/iGeometry_LICENSE
Build complete.
{
"dependencies" : [
{
"identity" : "swift-snapshot-testing",
"requirement" : {
"exact" : [
"1.17.4"
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-snapshot-testing"
},
{
"identity" : "simplesimdswift",
"requirement" : {
"exact" : [
"1.0.1"
]
},
"type" : "sourceControl",
"url" : "https://github.com/yukiny0811/SimpleSimdSwift"
},
{
"identity" : "fontvertexbuilder",
"requirement" : {
"exact" : [
"1.2.5"
]
},
"type" : "sourceControl",
"url" : "https://github.com/yukiny0811/FontVertexBuilder"
},
{
"identity" : "easymetalshader",
"requirement" : {
"exact" : [
"3.3.1"
]
},
"type" : "sourceControl",
"url" : "https://github.com/yukiny0811/EasyMetalShader.git"
},
{
"identity" : "swift-syntax",
"requirement" : {
"range" : [
{
"lower_bound" : "600.0.1",
"upper_bound" : "601.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-syntax.git"
}
],
"manifest_display_name" : "SwiftyCreatives",
"name" : "SwiftyCreatives",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "17.0"
},
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "17.0"
},
{
"name" : "visionos",
"version" : "1.0"
}
],
"products" : [
{
"name" : "SwiftyCreatives",
"targets" : [
"SwiftyCreatives"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SwiftyCreativesMacro",
"targets" : [
"SwiftyCreativesMacro"
],
"type" : {
"macro" : null
}
}
],
"targets" : [
{
"c99name" : "SwiftyCreativesTests",
"module_type" : "SwiftTarget",
"name" : "SwiftyCreativesTests",
"path" : "Tests/SwiftyCreativesTests",
"product_dependencies" : [
"SnapshotTesting"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftyCreativesTests/Resources/Media.xcassets",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftyCreativesTests/Resources/SampleObject.mtl",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftyCreativesTests/Resources/SampleObject.obj",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftyCreativesTests/Resources/SampleObjectWithTexture.mtl",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftyCreativesTests/Resources/SampleObjectWithTexture.obj",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftyCreativesTests/Resources/sampleSvg.svg",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"SnapshotTests/Functions/BoldLineTests.swift",
"SnapshotTests/Functions/BoxTests.swift",
"SnapshotTests/Functions/CircleTests.swift",
"SnapshotTests/Functions/ColorTests.swift",
"SnapshotTests/Functions/FogTests.swift",
"SnapshotTests/Functions/HitTestableBoxTests.swift",
"SnapshotTests/Functions/HitTestableImgTests.swift",
"SnapshotTests/Functions/ImgTests.swift",
"SnapshotTests/Functions/LineTests.swift",
"SnapshotTests/Functions/MeshTests.swift",
"SnapshotTests/Functions/ModelTests.swift",
"SnapshotTests/Functions/PushPopTests.swift",
"SnapshotTests/Functions/RectTests.swift",
"SnapshotTests/Functions/SVGTests.swift",
"SnapshotTests/Functions/SketchForTest.swift",
"SnapshotTests/Functions/TextTests.swift",
"SnapshotTests/Functions/TriangleTests.swift",
"SnapshotTests/Renderers/AddRendererTests.swift",
"SnapshotTests/Renderers/NormalRendererTests.swift",
"SnapshotTests/Renderers/TransparentRendererTests.swift",
"SnapshotTests/SnapshotTestUtil.swift"
],
"target_dependencies" : [
"SwiftyCreatives"
],
"type" : "test"
},
{
"c99name" : "SwiftyCreativesSound",
"module_type" : "SwiftTarget",
"name" : "SwiftyCreativesSound",
"path" : "Sources/SwiftyCreativesSound",
"product_memberships" : [
"SwiftyCreatives"
],
"sources" : [
"AudioCapturer.swift",
"DetailedAudioCapturer.swift",
"FFT/FFTBandCalculationMethod.swift",
"FFT/FFTNoiseExtractionMethod.swift",
"FFT/FFTResultComponent.swift",
"FFT/TempiFFT.swift",
"FFT/TempiFFTWindowType.swift",
"FFTVisualizer.swift",
"FastAudioCapturer.swift",
"Utils/NoiseExtractor.swift"
],
"type" : "library"
},
{
"c99name" : "SwiftyCreativesMacro",
"module_type" : "SwiftTarget",
"name" : "SwiftyCreativesMacro",
"path" : "Sources/SwiftyCreativesMacro",
"product_dependencies" : [
"SwiftSyntaxMacros",
"SwiftCompilerPlugin"
],
"product_memberships" : [
"SwiftyCreatives",
"SwiftyCreativesMacro"
],
"sources" : [
"SketchObject/SketchObject.swift",
"SwiftyCreativesMacroPlugin.swift",
"Utils/String+Error.swift"
],
"type" : "macro"
},
{
"c99name" : "SwiftyCreatives",
"module_type" : "SwiftTarget",
"name" : "SwiftyCreatives",
"path" : "Sources/SwiftyCreatives",
"product_dependencies" : [
"SimpleSimdSwift",
"FontVertexBuilder",
"EasyMetalShader"
],
"product_memberships" : [
"SwiftyCreatives"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Resources/Shaders/AddShader.metal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Resources/Shaders/Functions.metal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Resources/Shaders/NormalShader.metal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Resources/Shaders/SharedIndices.h",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Resources/Shaders/TransparentShader.metal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Resources/Shaders/TransparentShaderVision.metal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Resources/Shaders/Types.metal",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"Camera/Config/CameraConfig.swift",
"Camera/Config/DefaultOrthographicConfig.swift",
"Camera/Config/DefaultPerspectiveConfig.swift",
"Camera/EasyCameraType.swift",
"Camera/MainCamera.swift",
"DrawUtils/Config/DefaultDrawConfig.swift",
"DrawUtils/Config/DrawConfig.swift",
"Extensions/Bool+.swift",
"Extensions/CGPoint+.swift",
"Extensions/CGSize+.swift",
"Extensions/Comparable+.swift",
"Extensions/Float+.swift",
"Extensions/MTLCommandBuffer+.swift",
"Extensions/MTLTexture+.swift",
"Extensions/Numeric+.swift",
"Extensions/UIView+.swift",
"GeometryPresets/Box.swift",
"Macros/SketchObject.swift",
"Macros/SketchObjectHasDraw.swift",
"PostProcess/Presets/BloomPostProcessor.swift",
"PostProcess/Presets/CornerRadiusPostProcessor.swift",
"Primitives/Basics/Img.swift",
"Primitives/Basics/ModelObject.swift",
"Primitives/Basics/SVGObj.swift",
"Primitives/HitTestables/HitTestableBox.swift",
"Primitives/HitTestables/HitTestableImg.swift",
"Primitives/HitTestables/HitTestableRect.swift",
"Primitives/HitTestables/UIViewObject.swift",
"Primitives/PrimitiveUtils/Abstract/HitTestablePrimitive.swift",
"Primitives/PrimitiveUtils/Abstract/ImageAdjustOption.swift",
"Primitives/PrimitiveUtils/Abstract/ImageAdjuster.swift",
"Primitives/PrimitiveUtils/Abstract/ImageLoadable.swift",
"Primitives/PrimitiveUtils/Abstract/RectanglePlanePrimitive.swift",
"Primitives/PrimitiveUtils/Abstract/ScaleSettable.swift",
"Primitives/PrimitiveUtils/Info/BoxInfo.swift",
"Primitives/PrimitiveUtils/Info/CircleInfo.swift",
"Primitives/PrimitiveUtils/Info/ModelObjectInfo.swift",
"Primitives/PrimitiveUtils/Info/PrimitiveInfo.swift",
"Primitives/PrimitiveUtils/Info/RectShapeInfo.swift",
"Primitives/PrimitiveUtils/Info/TriangleInfo.swift",
"Primitives/PrimitiveUtils/Primitive.swift",
"Primitives/Texts/Factory/RawTextFactory.swift",
"Primitives/Texts/Factory/TextFactory.swift",
"Primitives/Texts/LetterCache.swift",
"Primitives/Texts/Text/Text2D.swift",
"Primitives/Texts/Text/Text3D.swift",
"Primitives/Texts/Text/Text3DRaw.swift",
"Primitives/Texts/Text/TextBufferCreationError.swift",
"PropertyWrappers/SCAnimatable.swift",
"Renderers/AddRenderer.swift",
"Renderers/Base/RendererBase+Functions.swift",
"Renderers/Base/RendererBase+StaticFunctions.swift",
"Renderers/Base/RendererBase.swift",
"Renderers/NormalBlendRenderer.swift",
"Renderers/TransparentRenderer.swift",
"Renderers/visionOS/AddBlendRendererVision.swift",
"Renderers/visionOS/NormalBlendRendererVision.swift",
"Renderers/visionOS/TransparentRendererVision.swift",
"Renderers/visionOS/visionOSSettings.swift",
"ShaderUtils/ShaderCore.swift",
"Sketch/FunctionBase/FunctionBase+BoldLine.swift",
"Sketch/FunctionBase/FunctionBase+Box.swift",
"Sketch/FunctionBase/FunctionBase+Circle.swift",
"Sketch/FunctionBase/FunctionBase+Color.swift",
"Sketch/FunctionBase/FunctionBase+Fog.swift",
"Sketch/FunctionBase/FunctionBase+HitTestableBox.swift",
"Sketch/FunctionBase/FunctionBase+HitTestableImg.swift",
"Sketch/FunctionBase/FunctionBase+Img.swift",
"Sketch/FunctionBase/FunctionBase+Line.swift",
"Sketch/FunctionBase/FunctionBase+Mesh.swift",
"Sketch/FunctionBase/FunctionBase+ModelObject.swift",
"Sketch/FunctionBase/FunctionBase+PushPop.swift",
"Sketch/FunctionBase/FunctionBase+Rect.swift",
"Sketch/FunctionBase/FunctionBase+Rotate.swift",
"Sketch/FunctionBase/FunctionBase+SVG.swift",
"Sketch/FunctionBase/FunctionBase+Scale.swift",
"Sketch/FunctionBase/FunctionBase+Text.swift",
"Sketch/FunctionBase/FunctionBase+Translate.swift",
"Sketch/FunctionBase/FunctionBase+Triangle.swift",
"Sketch/FunctionBase/FunctionBase.swift",
"Sketch/SCPacket.swift",
"Sketch/Sketch.swift",
"Sketch/SketchFunctions/Sketch+UtilFunctions.swift",
"Utils/Alias.swift",
"Utils/AssetUtil.swift",
"Utils/BlendMode.swift",
"Utils/DefaultBuffers.swift",
"Utils/EXPORTER.swift",
"Utils/MathUtil.swift",
"Utils/SharedIndices.swift",
"Views/KitSketchView.swift",
"Views/SketchView.swift",
"Views/TouchableMTKView/TouchableMTKView+Configure.swift",
"Views/TouchableMTKView/TouchableMTKView+Deinitializer.swift",
"Views/TouchableMTKView/TouchableMTKView+Initializer.swift",
"Views/TouchableMTKView/TouchableMTKView+Utils.swift",
"Views/TouchableMTKView/TouchableMTKView.swift"
],
"target_dependencies" : [
"SwiftyCreativesSound",
"SwiftyCreativesMacro"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.