Build Information
Failed to build swift-bundler, reference main (27300f), with Swift 6.3 for Linux on 14 Apr 2026 19:09:07 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
[1440/1505] Compiling schema_gen TypeDecl.swift
/host/spi-builder-workspace/Sources/schema-gen/TypeDecl.swift:22:21: warning: 'identifier' is deprecated: renamed to 'name' [#DeprecatedDeclaration]
20 | switch self {
21 | case .structDecl(let decl):
22 | return decl.identifier.text
| |- warning: 'identifier' is deprecated: renamed to 'name' [#DeprecatedDeclaration]
| `- note: use 'name' instead
23 | case .enumDecl(let decl):
24 | return decl.identifier.text
/host/spi-builder-workspace/Sources/schema-gen/TypeDecl.swift:24:21: warning: 'identifier' is deprecated: renamed to 'name' [#DeprecatedDeclaration]
22 | return decl.identifier.text
23 | case .enumDecl(let decl):
24 | return decl.identifier.text
| |- warning: 'identifier' is deprecated: renamed to 'name' [#DeprecatedDeclaration]
| `- note: use 'name' instead
25 | }
26 | }
/host/spi-builder-workspace/Sources/schema-gen/TypeDecl.swift:32:40: warning: 'MemberDeclBlockSyntax' is deprecated: renamed to 'MemberBlockSyntax' [#DeprecatedDeclaration]
30 | var properties: [PropertyDecl] = []
31 | for child in children {
32 | guard let memberBlock = child.as(MemberDeclBlockSyntax.self) else {
| |- warning: 'MemberDeclBlockSyntax' is deprecated: renamed to 'MemberBlockSyntax' [#DeprecatedDeclaration]
| `- note: use 'MemberBlockSyntax' instead
33 | continue
34 | }
/host/spi-builder-workspace/Sources/schema-gen/TypeDecl.swift:37:36: warning: 'MemberDeclListItemSyntax' is deprecated: renamed to 'MemberBlockItemSyntax' [#DeprecatedDeclaration]
35 |
36 | for member in memberBlock.members.children(viewMode: .all) {
37 | guard let item = member.as(MemberDeclListItemSyntax.self) else {
| |- warning: 'MemberDeclListItemSyntax' is deprecated: renamed to 'MemberBlockItemSyntax' [#DeprecatedDeclaration]
| `- note: use 'MemberBlockItemSyntax' instead
38 | continue
39 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1441/1505] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[1442/1506] Compiling SwiftOperators PrecedenceGroup.swift
[1443/1507] Compiling SwiftOperators PrecedenceGraph.swift
[1444/1507] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[1445/1507] Compiling SwiftOperators OperatorTable.swift
[1446/1507] Compiling schema_gen Namespace.swift
/host/spi-builder-workspace/Sources/schema-gen/Namespace.swift:37:28: warning: 'identifier' is deprecated: renamed to 'name' [#DeprecatedDeclaration]
35 |
36 | if let structDecl = decl as? StructDeclSyntax {
37 | guard structDecl.identifier.text == identifier else {
| |- warning: 'identifier' is deprecated: renamed to 'name' [#DeprecatedDeclaration]
| `- note: use 'name' instead
38 | continue
39 | }
/host/spi-builder-workspace/Sources/schema-gen/Namespace.swift:42:26: warning: 'identifier' is deprecated: renamed to 'name' [#DeprecatedDeclaration]
40 | return .success(.structDecl(structDecl))
41 | } else if let enumDecl = decl as? EnumDeclSyntax {
42 | guard enumDecl.identifier.text == identifier else {
| |- warning: 'identifier' is deprecated: renamed to 'name' [#DeprecatedDeclaration]
| `- note: use 'name' instead
43 | continue
44 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1447/1507] Compiling SwiftOperators SyntaxSynthesis.swift
[1448/1507] Compiling schema_gen PropertyDecl.swift
/host/spi-builder-workspace/Sources/schema-gen/PropertyDecl.swift:53:32: warning: 'MemberDeclListItemSyntax' is deprecated: renamed to 'MemberBlockItemSyntax' [#DeprecatedDeclaration]
51 | /// - Parameter decl: A declaration to convert.
52 | /// - Returns: A success if the declaration was a property, and a failure otherwise.
53 | static func parse(from decl: MemberDeclListItemSyntax) -> Result<PropertyDecl, PropertyDeclError> {
| |- warning: 'MemberDeclListItemSyntax' is deprecated: renamed to 'MemberBlockItemSyntax' [#DeprecatedDeclaration]
| `- note: use 'MemberBlockItemSyntax' instead
54 | guard let variable = decl.decl.as(VariableDeclSyntax.self) else {
55 | return .failure(.notVariable)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1449/1507] Emitting module schema_gen
/host/spi-builder-workspace/Sources/schema-gen/PropertyDecl.swift:53:32: warning: 'MemberDeclListItemSyntax' is deprecated: renamed to 'MemberBlockItemSyntax' [#DeprecatedDeclaration]
51 | /// - Parameter decl: A declaration to convert.
52 | /// - Returns: A success if the declaration was a property, and a failure otherwise.
53 | static func parse(from decl: MemberDeclListItemSyntax) -> Result<PropertyDecl, PropertyDeclError> {
| |- warning: 'MemberDeclListItemSyntax' is deprecated: renamed to 'MemberBlockItemSyntax' [#DeprecatedDeclaration]
| `- note: use 'MemberBlockItemSyntax' instead
54 | guard let variable = decl.decl.as(VariableDeclSyntax.self) else {
55 | return .failure(.notVariable)
/host/spi-builder-workspace/Sources/schema-gen/SchemaGenerator.swift:5:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
3 | import SwiftParser
4 |
5 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public func write(_ string: String) {
7 | let data = Data(string.utf8)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1450/1507] Compiling schema_gen SchemaGenerator.swift
/host/spi-builder-workspace/Sources/schema-gen/SchemaGenerator.swift:5:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
3 | import SwiftParser
4 |
5 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public func write(_ string: String) {
7 | let data = Data(string.utf8)
[1452/1508] Compiling SwiftOperators OperatorTable+Semantics.swift
[1452/1508] Wrapping AST for schema-gen for debugging
[1453/1508] Write Objects.LinkFileList
[1455/1508] Compiling SwiftParserDiagnostics MissingNodesError.swift
[1456/1508] Compiling SwiftParserDiagnostics MissingTokenError.swift
[1457/1508] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[1458/1508] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[1459/1508] Compiling SwiftOperators OperatorTable+Folding.swift
[1460/1508] Emitting module SwiftOperators
[1462/1509] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[1463/1509] Compiling SwiftParserDiagnostics Utils.swift
[1463/1509] Wrapping AST for SwiftOperators for debugging
[1465/1509] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[1469/1509] Linking schema-gen
[1471/1509] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[1472/1509] Compiling SwiftParserDiagnostics PresenceUtils.swift
[1473/1509] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[1474/1509] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[1479/1509] Emitting module SwiftParserDiagnostics
[1480/1510] Wrapping AST for SwiftParserDiagnostics for debugging
[1486/1510] Emitting module SwiftParserDiagnostics
[1487/1600] Wrapping AST for SwiftParserDiagnostics for debugging
[1489/1689] Compiling SwiftFormat Configuration+Default.swift
[1490/1689] Compiling SwiftFormat Configuration.swift
[1491/1689] Compiling SwiftFormat DebugOptions.swift
[1492/1689] Compiling SwiftFormat Finding.swift
[1497/1691] Compiling SwiftFormat FindingCategorizing.swift
[1498/1691] Compiling SwiftFormat Indent.swift
[1499/1691] Emitting module SwiftSyntaxBuilder
[1501/1691] Compiling SwiftFormat SwiftFormatError.swift
[1502/1691] Compiling SwiftFormat SwiftFormatter.swift
[1505/1691] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[1507/1691] Compiling SwiftFormat SwiftLinter.swift
[1508/1691] Compiling SwiftFormat Context.swift
[1521/1691] Compiling SwiftFormat DocumentationComment.swift
[1522/1701] Compiling SwiftFormat DocumentationCommentText.swift
[1523/1701] Compiling SwiftFormat Finding+Convenience.swift
[1524/1701] Compiling SwiftFormat FindingEmitter.swift
[1525/1701] Compiling SwiftFormat FormatPipeline.swift
[1526/1701] Compiling SwiftFormat FunctionDeclSyntax+Convenience.swift
[1527/1701] Compiling SwiftFormat ImportsXCTestVisitor.swift
[1528/1701] Compiling SwiftFormat LazySplitSequence.swift
[1529/1701] Compiling SwiftFormat LegacyTriviaBehavior.swift
[1530/1701] Compiling SwiftFormat LintPipeline.swift
[1531/1701] Compiling SwiftFormat ModifierListSyntax+Convenience.swift
[1532/1701] Compiling SwiftFormat Parsing.swift
[1537/1711] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[1538/1712] Wrapping AST for SwiftSyntaxBuilder for debugging
[1551/1726] Emitting module SwiftFormat
[1552/1726] Compiling SwiftSyntaxMacros AccessorMacro.swift
[1553/1726] Compiling SwiftSyntaxMacros AttachedMacro.swift
[1554/1727] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[1555/1727] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[1556/1727] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[1557/1727] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[1558/1727] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[1559/1727] Compiling SwiftSyntaxMacros Macro+Format.swift
[1560/1727] Compiling SwiftSyntaxMacros PeerMacro.swift
[1561/1727] Compiling SwiftSyntaxMacros Macro.swift
[1562/1727] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[1563/1727] Compiling SwiftSyntaxMacros MemberMacro.swift
[1564/1727] Emitting module SwiftFormat
[1565/1727] Compiling SwiftFormat NoLeadingUnderscores.swift
[1566/1727] Compiling SwiftFormat NoParensAroundConditions.swift
[1567/1727] Compiling SwiftFormat NoPlaygroundLiterals.swift
[1568/1727] Compiling SwiftFormat NoVoidReturnOnFunctionSignature.swift
[1569/1727] Compiling SwiftFormat OmitExplicitReturns.swift
[1570/1727] Compiling SwiftFormat OneCasePerLine.swift
[1571/1727] Compiling SwiftFormat OneVariableDeclarationPerLine.swift
[1572/1727] Compiling SwiftFormat OnlyOneTrailingClosureArgument.swift
[1573/1727] Compiling SwiftFormat OrderedImports.swift
[1574/1727] Compiling SwiftFormat ReplaceForEachWithForLoop.swift
[1575/1727] Compiling SwiftFormat RememberingIterator.swift
[1576/1727] Compiling SwiftFormat Rule.swift
[1577/1727] Compiling SwiftFormat RuleBasedFindingCategory.swift
[1578/1727] Compiling SwiftFormat RuleMask.swift
[1579/1727] Compiling SwiftFormat RuleNameCache+Generated.swift
[1580/1727] Compiling SwiftFormat RuleRegistry+Generated.swift
[1581/1727] Compiling SwiftFormat RuleState.swift
[1582/1727] Compiling SwiftFormat SyntaxFormatRule.swift
[1583/1727] Compiling SwiftFormat SyntaxLintRule.swift
[1584/1727] Compiling SwiftFormat SyntaxProtocol+Convenience.swift
[1585/1727] Emitting module SwiftSyntaxMacros
[1586/1727] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[1587/1727] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[1591/1729] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[1591/1729] Wrapping AST for SwiftSyntaxMacros for debugging
[1604/1737] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[1605/1737] Compiling SwiftFormat IdentifiersMustBeASCII.swift
[1606/1737] Compiling SwiftFormat NeverForceUnwrap.swift
[1607/1737] Compiling SwiftFormat NeverUseForceTry.swift
[1608/1737] Compiling SwiftFormat NeverUseImplicitlyUnwrappedOptionals.swift
[1609/1737] Compiling SwiftFormat NoAccessLevelOnExtensionDeclaration.swift
[1610/1737] Compiling SwiftFormat NoAssignmentInExpressions.swift
[1611/1737] Compiling SwiftFormat NoBlockComments.swift
[1612/1737] Compiling SwiftFormat NoCasesWithOnlyFallthrough.swift
[1613/1737] Compiling SwiftFormat NoEmptyTrailingClosureParentheses.swift
[1614/1737] Compiling SwiftFormat NoLabelsInCasePatterns.swift
[1615/1737] Compiling SwiftFormat AllPublicDeclarationsHaveDocumentation.swift
[1616/1737] Compiling SwiftFormat AlwaysUseLiteralForEmptyCollectionInit.swift
[1617/1737] Compiling SwiftFormat AlwaysUseLowerCamelCase.swift
[1618/1737] Compiling SwiftFormat AmbiguousTrailingClosureOverload.swift
[1619/1737] Compiling SwiftFormat BeginDocumentationCommentWithOneLineSummary.swift
[1620/1737] Compiling SwiftFormat DoNotUseSemicolons.swift
[1621/1737] Compiling SwiftFormat DontRepeatTypeInStaticProperties.swift
[1622/1737] Compiling SwiftFormat FileScopedDeclarationPrivacy.swift
[1623/1737] Compiling SwiftFormat FullyIndirectEnum.swift
[1624/1737] Compiling SwiftFormat GroupNumericLiterals.swift
[1625/1737] Compiling SwiftFormat Pipelines+Generated.swift
[1626/1737] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[1626/1737] Wrapping AST for SwiftSyntaxBuilder for debugging
[1628/1737] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[1629/1737] Emitting module SwiftSyntaxMacroExpansion
[1630/1737] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[1631/1737] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[1632/1737] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[1633/1737] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[1635/1738] Compiling SwiftFormat ReturnVoidInsteadOfEmptyTuple.swift
[1636/1738] Compiling SwiftFormat TypeNamesShouldBeCapitalized.swift
[1637/1738] Compiling SwiftFormat UseEarlyExits.swift
[1638/1738] Compiling SwiftFormat UseLetInEveryBoundCaseVariable.swift
[1639/1738] Compiling SwiftFormat UseShorthandTypeNames.swift
[1640/1738] Compiling SwiftFormat UseSingleLinePropertyGetter.swift
[1641/1738] Compiling SwiftFormat UseSynthesizedInitializer.swift
[1642/1738] Compiling SwiftFormat UseTripleSlashForDocumentationComments.swift
[1643/1738] Compiling SwiftFormat UseWhereClausesInForLoops.swift
[1644/1738] Compiling SwiftFormat ValidateDocumentationComments.swift
[1644/1738] Wrapping AST for SwiftSyntaxMacroExpansion for debugging
[1656/1745] Emitting module SwiftCompilerPluginMessageHandling
[1657/1745] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[1658/1745] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[1659/1745] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[1702/1745] Compiling SwiftFormat Trivia+Convenience.swift
[1703/1745] Compiling SwiftFormat WithSemicolonSyntax.swift
[1704/1745] Compiling SwiftFormat Comment.swift
[1705/1745] Compiling SwiftFormat Indent+Length.swift
[1706/1745] Compiling SwiftFormat PrettyPrint.swift
[1707/1745] Compiling SwiftFormat PrettyPrintFindingCategory.swift
[1708/1745] Compiling SwiftFormat Token.swift
[1709/1745] Compiling SwiftFormat TokenStreamCreator.swift
[1710/1745] Compiling SwiftFormat Verbatim.swift
[1711/1745] Compiling SwiftFormat WhitespaceFindingCategory.swift
[1712/1745] Compiling SwiftFormat WhitespaceLinter.swift
[1714/1746] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[1715/1746] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[1716/1746] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[1729/1748] Wrapping AST for SwiftFormat for debugging
[1730/1752] Wrapping AST for SwiftCompilerPluginMessageHandling for debugging
[1732/1752] Compiling SwiftFormatConfiguration Compatibility.swift
[1733/1752] Emitting module SwiftFormatConfiguration
[1733/1753] Wrapping AST for SwiftFormat for debugging
[1736/1755] Compiling SwiftFormatConfiguration Compatibility.swift
[1737/1755] Emitting module SwiftFormatConfiguration
[1738/1755] Emitting module SwiftCompilerPlugin
[1739/1755] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[1741/1757] Wrapping AST for SwiftFormatConfiguration for debugging
[1742/1757] Wrapping AST for SwiftCompilerPlugin for debugging
[1745/1760] Compiling CasePathsMacros Plugin.swift
[1746/1760] Emitting module CasePathsMacros
[1747/1760] Compiling CasePathsMacros CasePathableMacro.swift
[1748/1761] Wrapping AST for CasePathsMacros for debugging
[1749/1761] Write Objects.LinkFileList
[1750/1761] Linking CasePathsMacros-tool
[1752/1775] Compiling CasePaths Exports.swift
[1753/1775] Compiling CasePaths Macros.swift
[1754/1775] Compiling CasePaths LockIsolated.swift
[1756/1775] Compiling CasePaths XCTestSupport.swift
[1757/1775] Compiling CasePaths Macros.swift
[1758/1775] Compiling CasePaths XCTestSupport.swift
[1759/1775] Compiling CasePaths Deprecations.swift
[1760/1775] Compiling CasePaths Exports.swift
[1761/1775] Compiling CasePaths Deprecations.swift
[1762/1775] Emitting module CasePaths
Internal Error: invalidPayloadSize
Internal Error: invalidPayloadSize
[1764/1775] Compiling CasePaths EnumReflection.swift
[1767/1777] Wrapping AST for CasePaths for debugging
[1770/1911] Compiling Parsing OneOf.swift
[1771/1911] Compiling Parsing OneOfMany.swift
[1772/1911] Compiling Parsing Optional.swift
[1773/1911] Compiling Parsing Optionally.swift
[1774/1911] Compiling Parsing Parse.swift
[1775/1911] Compiling Parsing ParseableFormatStyle.swift
[1776/1911] Compiling Parsing Peek.swift
[1777/1911] Compiling Parsing Pipe.swift
[1778/1911] Compiling Parsing Prefix.swift
[1779/1920] Compiling Parsing OneOfBuilder.swift
[1780/1920] Compiling Parsing ParserBuilder.swift
[1781/1920] Compiling Parsing Conversion.swift
[1782/1920] Compiling Parsing AnyConversion.swift
[1783/1920] Compiling Parsing BinaryFloatingPoint.swift
[1784/1920] Compiling Parsing ConversionMap.swift
[1785/1920] Compiling Parsing Conversions.swift
[1786/1920] Compiling Parsing Data.swift
[1787/1920] Compiling Parsing Enum.swift
[1788/1920] Compiling Parsing FixedWidthInteger.swift
[1789/1920] Compiling Parsing PrefixThrough.swift
[1790/1920] Compiling Parsing PrefixUpTo.swift
[1791/1920] Compiling Parsing Printing.swift
[1792/1920] Compiling Parsing Pullback.swift
[1793/1920] Compiling Parsing ReplaceError.swift
[1794/1920] Compiling Parsing Rest.swift
[1795/1920] Compiling Parsing Skip.swift
[1796/1920] Compiling Parsing StartsWith.swift
[1797/1920] Compiling Parsing UUID.swift
[1808/1929] Compiling Parsing Identity.swift
[1809/1929] Compiling Parsing JSON.swift
[1810/1929] Compiling Parsing LosslessStringConvertible.swift
[1811/1929] Compiling Parsing Memberwise.swift
[1812/1929] Compiling Parsing ParseableFormatStyleConversion.swift
[1813/1929] Compiling Parsing RawRepresentable.swift
[1814/1929] Compiling Parsing String.swift
[1815/1929] Compiling Parsing Substring.swift
[1816/1929] Compiling Parsing UTF8View.swift
[1817/1929] Compiling Parsing ConvertingError.swift
[1818/1929] Compiling Parsing CaseIterableRawRepresentable.swift
[1819/1929] Compiling Parsing CharacterSet.swift
[1820/1929] Compiling Parsing Conditional.swift
[1821/1929] Compiling Parsing Consumed.swift
[1822/1929] Compiling Parsing Digits.swift
[1823/1929] Compiling Parsing End.swift
[1824/1929] Compiling Parsing Fail.swift
[1825/1929] Compiling Parsing Filter.swift
[1826/1929] Compiling Parsing First.swift
[1845/1929] Compiling Parsing CountingRange.swift
[1846/1929] Compiling Parsing EmptyInitializable.swift
[1847/1929] Compiling Parsing AnyEquatable.swift
[1848/1929] Compiling Parsing Deprecations.swift
[1849/1929] Compiling Parsing Parser.swift
[1850/1929] Compiling Parsing ParserPrinter.swift
[1851/1929] Compiling Parsing Always.swift
[1852/1929] Compiling Parsing AnyParserPrinter.swift
[1853/1929] Compiling Parsing Backtracking.swift
[1854/1929] Compiling Parsing Bool.swift
[1855/1929] Compiling Parsing Float.swift
[1856/1929] Compiling Parsing From.swift
[1857/1929] Compiling Parsing Int.swift
[1858/1929] Compiling Parsing Lazy.swift
[1859/1929] Compiling Parsing Literal.swift
[1860/1929] Compiling Parsing Many.swift
[1861/1929] Compiling Parsing Map.swift
[1862/1929] Compiling Parsing Newline.swift
[1863/1929] Compiling Parsing Not.swift
[1902/1929] Emitting module Parsing
[1904/1929] Compiling Parsing Whitespace.swift
[1905/1929] Compiling Parsing AnyParser.swift
[1906/1929] Compiling Parsing CompactMap.swift
[1907/1929] Compiling Parsing FlatMap.swift
[1908/1929] Compiling Parsing Parsers.swift
[1909/1929] Compiling Parsing Stream.swift
[1910/1929] Compiling Parsing ParsingError.swift
[1911/1929] Compiling Parsing PrependableCollection.swift
[1912/1929] Compiling Parsing PrintingError.swift
[1923/1931] Wrapping AST for Parsing for debugging
[1926/2143] Compiling swift_bundler PackageManifest.swift
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
[1927/2143] Compiling swift_bundler Platform.swift
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
[1928/2143] Compiling swift_bundler SwiftPackageManager.swift
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
[1929/2143] Compiling swift_bundler SwiftPackageManagerError.swift
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
[1930/2143] Compiling swift_bundler SwiftTargetInfo.swift
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
[1931/2143] Compiling swift_bundler System.swift
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
[1932/2143] Compiling swift_bundler SystemError.swift
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
[1933/2143] Compiling swift_bundler IndentationStyle.swift
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
[1934/2143] Compiling swift_bundler SystemDependency.swift
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
[1935/2143] Compiling swift_bundler Template.swift
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
[1936/2143] Compiling swift_bundler TemplateManifest.swift
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
[1937/2143] Compiling swift_bundler Templater.swift
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
[1938/2143] Compiling swift_bundler TemplaterError.swift
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
[1939/2143] Compiling swift_bundler VariableEvaluator.swift
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
[1940/2143] Compiling swift_bundler VariableEvaluatorError.swift
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
[1941/2158] Emitting module swift_bundler
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1943/2173] Compiling swift_bundler KeyedListBuilder.swift
[1944/2173] Compiling swift_bundler Line.swift
[1945/2173] Compiling swift_bundler LineBuilder.swift
[1946/2173] Compiling swift_bundler LinePartsBuilder.swift
[1947/2173] Compiling swift_bundler List.swift
[1948/2173] Compiling swift_bundler Output.swift
[1949/2173] Compiling swift_bundler OutputBuilder.swift
[1950/2173] Compiling swift_bundler OutputComponent.swift
[1951/2173] Compiling swift_bundler OutputPartsBuilder.swift
[1952/2173] Compiling swift_bundler Section.swift
[1953/2173] Compiling swift_bundler String+OutputComponent.swift
[1954/2173] Compiling swift_bundler StringOutput.swift
[1955/2173] Compiling swift_bundler Signal.swift
[1956/2173] Compiling swift_bundler Stopwatch.swift
[1957/2173] Compiling swift_bundler YamlUtils.swift
[1958/2173] Compiling swift_bundler PlistCreator.swift
[1959/2173] Compiling swift_bundler PlistCreatorError.swift
[1960/2173] Compiling swift_bundler ResourceBundler.swift
[1961/2173] Compiling swift_bundler ResourceBundlerError.swift
[1962/2173] Compiling swift_bundler Device.swift
[1963/2173] Compiling swift_bundler Runner.swift
[1964/2173] Compiling swift_bundler RunnerError.swift
[1965/2173] Compiling swift_bundler Simulator.swift
[1966/2173] Compiling swift_bundler SimulatorList.swift
[1967/2173] Compiling swift_bundler SimulatorManager.swift
[1968/2173] Compiling swift_bundler SimulatorManagerError.swift
[1969/2173] Compiling swift_bundler StoryboardCompiler.swift
[1970/2173] Compiling swift_bundler StoryboardCompilerError.swift
[1971/2173] Compiling swift_bundler BuildArchitecture.swift
[1972/2173] Compiling swift_bundler BuildConfiguration.swift
[2003/2173] Compiling swift_bundler AsyncMain.swift
[2004/2173] Compiling swift_bundler Bundler.swift
[2005/2173] Compiling swift_bundler CodeSigner.swift
[2006/2173] Compiling swift_bundler CodeSignerError.swift
[2007/2173] Compiling swift_bundler ProvisioningProfile.swift
[2008/2173] Compiling swift_bundler DynamicLibraryBundler.swift
[2009/2173] Compiling swift_bundler DynamicLibraryBundlerError.swift
[2010/2173] Compiling swift_bundler IOSBundler.swift
[2011/2173] Compiling swift_bundler IOSBundlerError.swift
[2012/2173] Compiling swift_bundler IconSetCreator.swift
[2013/2173] Compiling swift_bundler IconSetCreatorError.swift
[2014/2173] Compiling swift_bundler MacOSBundler.swift
[2015/2173] Compiling swift_bundler MacOSBundlerError.swift
[2016/2173] Compiling swift_bundler MetalCompiler.swift
[2017/2173] Compiling swift_bundler MetalCompilerError.swift
[2033/2173] Compiling swift_bundler Process.swift
[2034/2173] Compiling swift_bundler ProcessError.swift
[2035/2173] Compiling swift_bundler Result.swift
[2036/2173] Compiling swift_bundler Sequence.swift
[2037/2173] Compiling swift_bundler String.swift
[2038/2173] Compiling swift_bundler URL.swift
[2039/2173] Compiling swift_bundler Version.swift
[2040/2173] Compiling swift_bundler SwiftBundler.swift
[2041/2173] Compiling swift_bundler Box.swift
[2042/2173] Compiling swift_bundler Logger.swift
[2043/2173] Compiling swift_bundler LoggerLevel.swift
[2044/2173] Compiling swift_bundler Array+OutputComponent.swift
[2045/2173] Compiling swift_bundler ExampleCommand.swift
[2046/2173] Compiling swift_bundler InlineList.swift
[2047/2173] Compiling swift_bundler KeyedList.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2063/2173] Compiling swift_bundler AppConfiguration.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2064/2173] Compiling swift_bundler AppConfigurationError.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2065/2173] Compiling swift_bundler MigrationMode.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2066/2173] Compiling swift_bundler PackageConfiguration.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2067/2173] Compiling swift_bundler PackageConfigurationError.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2068/2173] Compiling swift_bundler PlistError.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2069/2173] Compiling swift_bundler PlistValue.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2070/2173] Compiling swift_bundler PackageConfigurationV1.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2071/2173] Compiling swift_bundler AppConfigurationV2.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2072/2173] Compiling swift_bundler PackageConfigurationV2.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2073/2173] Compiling swift_bundler Array.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2074/2173] Compiling swift_bundler CaseIterable.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2075/2173] Compiling swift_bundler FileHandle+TextOutputStream.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2076/2173] Compiling swift_bundler FileManager.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2077/2173] Compiling swift_bundler PBXProductType.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
[2093/2173] Compiling swift_bundler Process.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2094/2173] Compiling swift_bundler ProcessError.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2095/2173] Compiling swift_bundler Result.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2096/2173] Compiling swift_bundler Sequence.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2097/2173] Compiling swift_bundler String.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2098/2173] Compiling swift_bundler URL.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2099/2173] Compiling swift_bundler Version.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2100/2173] Compiling swift_bundler SwiftBundler.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2101/2173] Compiling swift_bundler Box.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2102/2173] Compiling swift_bundler Logger.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2103/2173] Compiling swift_bundler XcodeprojConverter.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2104/2173] Compiling swift_bundler XcodeprojConverterError.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2105/2173] Compiling swift_bundler AsyncCommand.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2106/2173] Compiling swift_bundler InlineList.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2107/2173] Compiling swift_bundler BundleCommand.swift
/host/spi-builder-workspace/Sources/swift-bundler/Utility/Logger.swift:9:8: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
7 |
8 | /// Swift Bundler's basic log handler.
9 | struct Handler: LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 | var metadata: Logger.Metadata = [:]
11 | var logLevel: Logger.Level = .info
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2108/2173] Compiling swift_bundler AppConfiguration.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2109/2173] Compiling swift_bundler AppConfigurationError.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2110/2173] Compiling swift_bundler MigrationMode.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2111/2173] Compiling swift_bundler PackageConfiguration.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2112/2173] Compiling swift_bundler PackageConfigurationError.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2113/2173] Compiling swift_bundler PlistError.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2114/2173] Compiling swift_bundler PlistValue.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2115/2173] Compiling swift_bundler PackageConfigurationV1.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2116/2173] Compiling swift_bundler AppConfigurationV2.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2117/2173] Compiling swift_bundler PackageConfigurationV2.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2118/2173] Compiling swift_bundler Array.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2119/2173] Compiling swift_bundler CaseIterable.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2120/2173] Compiling swift_bundler FileHandle+TextOutputStream.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2121/2173] Compiling swift_bundler FileManager.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
[2122/2173] Compiling swift_bundler PBXProductType.swift
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/Array.swift:4:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
2 | import StackOtterArgParser
3 |
4 | extension Array: ExpressibleByArgument where Element: ExpressibleByArgument {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
5 | public var defaultValueDescription: String {
6 | "[" + self.map(\.defaultValueDescription).joined(separator: ", ") + "]"
/host/spi-builder-workspace/Sources/swift-bundler/Extensions/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | let data = Data(string.utf8)
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Bundler/SwiftPackageManager/SwiftPackageManager.swift:342:11: warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
340 |
341 | #if os(Linux)
342 | let temporaryAutolinkFile =
| `- warning: initialization of immutable value 'temporaryAutolinkFile' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
343 | temporaryDirectory
344 | .appendingPathComponent("\(uuid)-PackageManifest.autolink").path
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:45:10: error: value of type 'BundleCommand' has no member 'builtWithXcode'
43 | _arguments = arguments
44 | self.skipBuild = skipBuild
45 | self.builtWithXcode = builtWithXcode
| `- error: value of type 'BundleCommand' has no member 'builtWithXcode'
46 | }
47 |
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:140:21: error: value of type 'BundleArguments' has no member 'universal'
138 | case .macOS:
139 | architectures =
140 | arguments.universal
| `- error: value of type 'BundleArguments' has no member 'universal'
141 | ? [.arm64, .x86_64]
142 | : (!arguments.architectures.isEmpty
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:168:25: error: cannot find 'builtWithXcode' in scope
166 | if !Self.validateArguments(
167 | arguments, platform: arguments.platform, skipBuild: skipBuild,
168 | builtWithXcode: builtWithXcode)
| `- error: cannot find 'builtWithXcode' in scope
169 | {
170 | Foundation.exit(1)
/host/spi-builder-workspace/Sources/swift-bundler/Commands/BundleCommand.swift:228:25: error: cannot find 'builtWithXcode' in scope
226 | productsDirectory: productsDirectory,
227 | outputDirectory: outputDirectory,
228 | isXcodeBuild: builtWithXcode,
| `- error: cannot find 'builtWithXcode' in scope
229 | universal: universal,
230 | standAlone: arguments.standAlone,
BUILD FAILURE 6.3 linux