Build Information
Failed to build swift-java, reference main (3d9433
), with Swift 6.0 for macOS (SPM) on 10 Sep 2025 04:34:31 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/swiftlang/swift-java.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/swiftlang/swift-java
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 3d9433f [SwiftJava] Fix Android build by making JNINativeInterface_ public (#387)
Cloned https://github.com/swiftlang/swift-java.git
Revision (git rev-parse @):
3d9433f95f6323b2707590b29474f12247ae842c
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/swiftlang/swift-java.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/swiftlang/swift-java.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
[1/1] Compiling plugin BenchmarkCommandPlugin
[2/2] Compiling plugin BenchmarkPlugin
[3/3] Compiling plugin GenerateDoccReference
[4/4] Compiling plugin GenerateManual
/Users/admin/builder/spi-builder-workspace/Plugins/JExtractSwiftPlugin/JExtractSwiftPlugin.swift:36:11: warning: expression of type '(any SourceModuleTarget)?' is unused
34 | switch (dependency) {
35 | case .target(let t):
36 | t.sourceModule
| `- warning: expression of type '(any SourceModuleTarget)?' is unused
37 | case .product(let p):
38 | p.sourceModules
/Users/admin/builder/spi-builder-workspace/Plugins/JExtractSwiftPlugin/JExtractSwiftPlugin.swift:38:11: warning: expression of type '[any SourceModuleTarget]' is unused
36 | t.sourceModule
37 | case .product(let p):
38 | p.sourceModules
| `- warning: expression of type '[any SourceModuleTarget]' is unused
39 | @unknown default:
40 | fatalError("Unknown target dependency type: \(dependency)")
/Users/admin/builder/spi-builder-workspace/Plugins/JExtractSwiftPlugin/JExtractSwiftPlugin.swift:44:38: warning: 'string' is deprecated: Use `URL` type instead of `Path`.
42 | }
43 |
44 | let sourceDir = target.directory.string
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
45 |
46 | // The name of the configuration file SwiftJava.config from the target for
/Users/admin/builder/spi-builder-workspace/Plugins/JExtractSwiftPlugin/JExtractSwiftPlugin.swift:80:12: warning: immutable value 'moduleName' was never used; consider replacing with '_' or removing it
78 |
79 | let dependentConfigFilesArguments = dependentConfigFiles.flatMap { moduleAndConfigFile in
80 | let (moduleName, configFile) = moduleAndConfigFile
| `- warning: immutable value 'moduleName' was never used; consider replacing with '_' or removing it
81 | return [
82 | "--depends-on",
/Users/admin/builder/spi-builder-workspace/Plugins/JExtractSwiftPlugin/JExtractSwiftPlugin.swift:105:11: warning: variable 'outputURL' was never mutated; consider changing to 'let' constant
103 | fatalError("Could not get relative path for source file \(sourceFilePath)")
104 | }
105 | var outputURL = outputSwiftDirectory
| `- warning: variable 'outputURL' was never mutated; consider changing to 'let' constant
106 | .appending(path: String(sourceFilePath.dropFirst(sourceDir.count).dropLast(sourceFileURL.lastPathComponent.count + 1)))
107 |
/Users/admin/builder/spi-builder-workspace/Plugins/JExtractSwiftPlugin/JExtractSwiftPlugin.swift:142:58: warning: 'string' is deprecated: Use `URL` type instead of `Path`.
140 | func _searchForConfigFiles(in target: any Target) {
141 | // log("Search for config files in target: \(target.name)")
142 | let dependencyURL = URL(filePath: target.directory.string)
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
143 |
144 | // Look for a config file within this target.
/Users/admin/builder/spi-builder-workspace/Plugins/JExtractSwiftPlugin/_PluginsShared/PluginUtils.swift:41:58: warning: 'string' is deprecated: Use `URL` type instead of `Path`.
39 |
40 | func getSwiftJavaConfigPath(target: Target) -> String? {
41 | let configPath = URL(fileURLWithPath: target.directory.string).appending(component: "swift-java.config").path()
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
42 |
43 | if FileManager.default.fileExists(atPath: configPath) {
[5/5] Compiling plugin JExtractSwiftPlugin
/Users/admin/builder/spi-builder-workspace/Plugins/JavaCompilerPlugin/JavaCompilerPlugin.swift:33:38: warning: 'string' is deprecated: Use `URL` type instead of `Path`.
31 | // Note: Target doesn't have a directoryURL counterpart to directory,
32 | // so we cannot eliminate this deprecation warning.
33 | let sourceDir = target.directory.string
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
34 |
35 | // The name of the configuration file SwiftJava.config from the target for
/Users/admin/builder/spi-builder-workspace/Plugins/JavaCompilerPlugin/_PluginsShared/PluginUtils.swift:41:58: warning: 'string' is deprecated: Use `URL` type instead of `Path`.
39 |
40 | func getSwiftJavaConfigPath(target: Target) -> String? {
41 | let configPath = URL(fileURLWithPath: target.directory.string).appending(component: "swift-java.config").path()
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
42 |
43 | if FileManager.default.fileExists(atPath: configPath) {
[6/6] Compiling plugin JavaCompilerPlugin
/Users/admin/builder/spi-builder-workspace/Plugins/SwiftJavaPlugin/SwiftJavaPlugin.swift:35:38: warning: 'string' is deprecated: Use `URL` type instead of `Path`.
33 | // Note: Target doesn't have a directoryURL counterpart to directory,
34 | // so we cannot eliminate this deprecation warning.
35 | let sourceDir = target.directory.string
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
36 |
37 | // The name of the configuration file SwiftJava.config from the target for
/Users/admin/builder/spi-builder-workspace/Plugins/SwiftJavaPlugin/SwiftJavaPlugin.swift:52:58: warning: 'string' is deprecated: Use `URL` type instead of `Path`.
50 | func searchForConfigFiles(in target: any Target) {
51 | // log("Search for config files in target: \(target.name)")
52 | let dependencyURL = URL(filePath: target.directory.string)
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
53 |
54 | // Look for a config file within this target.
/Users/admin/builder/spi-builder-workspace/Plugins/SwiftJavaPlugin/SwiftJavaPlugin.swift:45:9: warning: initialization of variable 'javaDependencies' was never used; consider replacing with assignment to '_' or removing it
43 | log("Config on path: \(configFile.path(percentEncoded: false))")
44 | log("Config was: \(config)")
45 | var javaDependencies = config.dependencies ?? []
| `- warning: initialization of variable 'javaDependencies' was never used; consider replacing with assignment to '_' or removing it
46 |
47 | /// Find the manifest files from other swift-java executions in any targets
/Users/admin/builder/spi-builder-workspace/Plugins/SwiftJavaPlugin/_PluginsShared/PluginUtils.swift:41:58: warning: 'string' is deprecated: Use `URL` type instead of `Path`.
39 |
40 | func getSwiftJavaConfigPath(target: Target) -> String? {
41 | let configPath = URL(fileURLWithPath: target.directory.string).appending(component: "swift-java.config").path()
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`.
42 |
43 | if FileManager.default.fileExists(atPath: configPath) {
[7/7] Compiling plugin SwiftJavaPlugin
Building for debugging...
[7/72] Write sources
[7/72] Write swift-java-entitlement.plist
[13/72] Write sources
[57/72] Compiling CSwiftJavaJNI dummy.c
[57/72] Compiling _SwiftSyntaxCShims dummy.c
[58/72] Compiling CSystem shims.c
[61/72] Write swift-version-5BDAB9E9C0126B9D.txt
[63/116] Emitting module SwiftSyntax601
[64/116] Emitting module SwiftSyntax510
[65/116] Compiling SwiftSyntax510 Empty.swift
[66/116] Compiling SwiftSyntax601 Empty.swift
[67/116] Compiling SwiftSyntax509 Empty.swift
[68/116] Emitting module SwiftSyntax600
[69/116] Compiling SwiftSyntax600 Empty.swift
[70/116] Emitting module SwiftSyntax509
[71/116] Emitting module SwiftSyntax510
[72/116] Compiling SwiftSyntax510 Empty.swift
[73/116] Compiling SwiftSyntax600 Empty.swift
[74/116] Emitting module SwiftSyntax600
[75/116] Emitting module SwiftSyntax601
[76/116] Compiling SwiftSyntax601 Empty.swift
[76/203] Compiling _SubprocessCShims process_shims.c
[78/203] Compiling SwiftSyntax509 Empty.swift
[79/203] Emitting module SwiftSyntax509
[80/203] Compiling SwiftKitSwift SwiftKit.swift
[81/203] Emitting module SwiftKitSwift
[81/203] Write Objects.LinkFileList
[83/203] Compiling JavaTypes MethodSignature.swift
[84/204] Emitting module ArgumentParserToolInfo
[85/204] Compiling ArgumentParserToolInfo ToolInfo.swift
[86/240] Compiling JavaTypes JavaType.swift
[87/240] Compiling JavaTypes JavaType+SwiftNames.swift
[88/240] Compiling JavaTypes JavaType+JavaSource.swift
[89/240] Compiling JavaTypes JavaType+JNI.swift
[90/240] Compiling JavaTypes JavaDemanglingError.swift
[91/240] Compiling JavaTypes JavaAnnotation.swift
[92/240] Emitting module JavaTypes
[93/240] Compiling JavaTypes Mangling.swift
[93/269] Linking libSwiftKitSwift.dylib
[95/315] Compiling ArgumentParser BashCompletionsGenerator.swift
[96/315] Compiling ArgumentParser CompletionsGenerator.swift
[97/315] Compiling ArgumentParser FishCompletionsGenerator.swift
[98/318] Compiling ArgumentParser HelpGenerator.swift
[99/318] Compiling ArgumentParser ArgumentDiscussion.swift
[100/318] Compiling ArgumentParser ArgumentHelp.swift
[101/318] Compiling ArgumentParser ArgumentVisibility.swift
[102/318] Compiling ArgumentParser CompletionKind.swift
[103/318] Compiling ArgumentParser Errors.swift
[104/318] Emitting module SystemPackage
[105/318] Compiling ArgumentParser Platform.swift
[106/318] Compiling ArgumentParser CommandConfiguration.swift
[107/318] Compiling ArgumentParser CommandGroup.swift
[108/318] Compiling ArgumentParser ZshCompletionsGenerator.swift
[109/318] Compiling ArgumentParser Argument.swift
[110/318] Compiling ArgumentParser MessageInfo.swift
[111/318] Compiling ArgumentParser UsageGenerator.swift
[112/318] Compiling ArgumentParser CollectionExtensions.swift
[113/318] Compiling ArgumentParser Mutex.swift
[114/318] Compiling ArgumentParser InputKey.swift
[115/318] Compiling ArgumentParser InputOrigin.swift
[116/318] Compiling ArgumentParser Name.swift
[117/318] Compiling ArgumentParser Parsed.swift
[118/318] Compiling ArgumentParser ParsedValues.swift
[119/318] Compiling ArgumentParser ParserError.swift
[120/318] Compiling ArgumentParser SplitArguments.swift
[121/318] Compiling ArgumentParser DumpHelpGenerator.swift
[122/318] Compiling ArgumentParser HelpCommand.swift
[123/318] Emitting module ExampleSwiftLibrary
[124/318] Compiling ExampleSwiftLibrary MySwiftLibrary.swift
[124/318] Write Objects.LinkFileList
[126/318] Compiling SystemPackage Util+StringArray.swift
[127/318] Compiling SystemPackage Util.swift
[128/318] Compiling SystemPackage UtilConsumers.swift
[128/318] Linking libExampleSwiftLibrary.dylib
[130/335] Compiling _Subprocess Span+SubprocessFoundation.swift
[131/336] Compiling _Subprocess Error.swift
[132/336] Compiling _Subprocess Execution.swift
[133/336] Compiling _Subprocess Subprocess+Darwin.swift
[134/336] Compiling _Subprocess Subprocess+Linux.swift
[135/336] Compiling _Subprocess API.swift
[136/336] Compiling _Subprocess AsyncBufferSequence.swift
[137/336] Compiling _Subprocess Buffer.swift
[138/336] Compiling _Subprocess Configuration.swift
[139/343] Compiling _Subprocess Result.swift
[140/343] Compiling _Subprocess Input+Foundation.swift
[141/343] Compiling _Subprocess Teardown.swift
[145/343] Compiling _Subprocess Subprocess+Unix.swift
[146/343] Compiling _Subprocess Subprocess+Windows.swift
[147/343] Compiling _Subprocess Input.swift
[148/343] Compiling _Subprocess Output.swift
[157/350] Compiling _Subprocess Output+Foundation.swift
[169/354] Compiling SwiftSyntax SyntaxNodesC.swift
[170/354] Compiling SwiftSyntax Tokens.swift
[171/354] Compiling SwiftSyntax TriviaPieces.swift
[172/354] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[173/354] Compiling SwiftSyntax RawSyntaxNodesC.swift
[174/354] Compiling SwiftSyntax RawSyntaxNodesD.swift
[175/354] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[176/354] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[179/354] Emitting module _Subprocess
[192/354] Emitting module ArgumentParser
[193/354] Compiling ArgumentParser NonsenseFlagsValidator.swift
[194/354] Compiling ArgumentParser ParsableArgumentsValidation.swift
[195/354] Compiling ArgumentParser PositionalArgumentsValidator.swift
[196/354] Compiling ArgumentParser UniqueNamesValidator.swift
[202/354] Compiling ArgumentParser Flag.swift
[203/354] Compiling ArgumentParser NameSpecification.swift
[204/354] Compiling ArgumentParser Option.swift
[205/354] Compiling ArgumentParser OptionGroup.swift
[206/354] Compiling ArgumentParser AsyncParsableCommand.swift
[217/354] Compiling SwiftJavaConfigurationShared GradleDependencyParsing.swift
[218/354] Compiling SwiftJavaConfigurationShared GenerationMode.swift
[219/354] Emitting module SwiftJavaShared
[220/354] Compiling SwiftJavaShared TerminalColors.swift
[226/354] Compiling ArgumentParser SequenceExtensions.swift
[227/354] Compiling ArgumentParser StringExtensions.swift
[228/354] Compiling ArgumentParser SwiftExtensions.swift
[229/354] Compiling ArgumentParser Tree.swift
[230/354] Compiling ArgumentParser CodingKeyValidator.swift
[236/354] Compiling ArgumentParser ParsableCommand.swift
[237/354] Compiling ArgumentParser ArgumentDecoder.swift
[238/354] Compiling ArgumentParser ArgumentDefinition.swift
[239/354] Compiling ArgumentParser ArgumentSet.swift
[240/354] Compiling ArgumentParser CommandParser.swift
[241/354] Compiling SwiftJavaConfigurationShared Configuration.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJavaConfigurationShared/Configuration.swift:204:30: warning: 'init(contentsOf:)' was deprecated in macOS 15: Use `init(contentsOf:encoding:)` instead
202 | if fileURL.lastPathComponent.hasSuffix(".swift-java.classpath") {
203 | print("[debug][swift-java] Constructing classpath with entries from: \(fileURL.path)")
204 | if let contents = try? String(contentsOf: fileURL) {
| `- warning: 'init(contentsOf:)' was deprecated in macOS 15: Use `init(contentsOf:encoding:)` instead
205 | let entries = contents.split(separator: ":").map(String.init)
206 | for entry in entries {
[242/354] Emitting module SwiftJavaConfigurationShared
[243/354] Emitting module SwiftSyntax
[266/354] Compiling SwiftSyntax SyntaxArena.swift
[267/354] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[268/354] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[269/354] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[270/354] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[271/354] Compiling SwiftSyntax RawSyntaxValidation.swift
[272/354] Compiling SwiftSyntax SyntaxNodesAB.swift
[292/354] Compiling SwiftSyntax Syntax.swift
[336/354] Compiling SwiftSyntax SyntaxNodesD.swift
[337/354] Compiling SwiftSyntax SyntaxNodesEF.swift
[338/354] Compiling SwiftSyntax SyntaxNodesGHI.swift
[339/354] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[340/354] Compiling SwiftSyntax SyntaxNodesOP.swift
[341/354] Compiling SwiftSyntax SyntaxNodesQRS.swift
[342/354] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[350/472] Compiling SwiftDiagnostics Message.swift
[351/473] Compiling SwiftDiagnostics Diagnostic.swift
[352/473] Compiling SwiftDiagnostics Convenience.swift
[353/473] Emitting module SwiftDiagnostics
[354/473] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[355/473] Compiling SwiftBasicFormat Syntax+Extensions.swift
[356/473] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[357/473] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[359/473] Compiling SwiftBasicFormat Indenter.swift
[360/473] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[361/473] Compiling SwiftBasicFormat InferIndentation.swift
[362/473] Compiling SwiftBasicFormat Syntax+Extensions.swift
[363/473] Compiling SwiftDiagnostics Note.swift
[364/473] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[365/473] Compiling SwiftDiagnostics FixIt.swift
[367/473] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[368/473] Compiling SwiftDiagnostics Message.swift
[369/474] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[370/474] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[371/474] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[372/474] Compiling SwiftBasicFormat InferIndentation.swift
[373/474] Compiling SwiftBasicFormat Indenter.swift
[374/474] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[375/474] Compiling SwiftDiagnostics Diagnostic.swift
[376/474] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[377/474] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[378/474] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[379/474] Compiling SwiftDiagnostics Convenience.swift
[380/474] Emitting module SwiftDiagnostics
[381/474] Compiling SwiftDiagnostics Note.swift
[382/474] Emitting module SwiftBasicFormat
[383/474] Compiling SwiftBasicFormat BasicFormat.swift
[384/474] Emitting module SwiftBasicFormat
[385/474] Compiling SwiftBasicFormat BasicFormat.swift
[386/474] Compiling SwiftParser Lexeme.swift
[387/474] Compiling SwiftParser LexemeSequence.swift
[388/474] Compiling SwiftParser Lexer.swift
[389/474] Compiling SwiftParser RegexLiteralLexer.swift
[390/478] Compiling SwiftParser Parser.swift
[391/478] Compiling SwiftParser Patterns.swift
[392/478] Compiling SwiftParser UnicodeScalarExtensions.swift
[393/478] Compiling SwiftParser Lookahead.swift
[394/478] Compiling SwiftParser LoopProgressCondition.swift
[395/478] Compiling SwiftParser Modifiers.swift
[396/478] Compiling SwiftParser Names.swift
[397/478] Compiling SwiftParser Cursor.swift
[398/478] Compiling SwiftParser TopLevel.swift
[399/478] Compiling SwiftParser TriviaParser.swift
[400/478] Compiling SwiftParser Types.swift
[401/478] Compiling SwiftParser ExperimentalFeatures.swift
[402/482] Compiling SwiftParser TokenPrecedence.swift
[403/482] Compiling SwiftParser TokenSpec.swift
[404/482] Compiling SwiftParser TokenSpecSet.swift
[405/482] Compiling SwiftParser StringLiterals.swift
[406/482] Compiling SwiftParser SwiftParserCompatibility.swift
[407/482] Emitting module SwiftParser
[408/482] Compiling SwiftParser SwiftVersion.swift
[409/482] Compiling SwiftParser SyntaxUtils.swift
[410/482] Compiling SwiftParser Recovery.swift
[411/482] Compiling SwiftParser Specifiers.swift
[412/482] Compiling SwiftParser Statements.swift
[413/482] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[414/482] Compiling SwiftParser Nominals.swift
[415/482] Compiling SwiftParser Parameters.swift
[416/482] Compiling SwiftParser ParseSourceFile.swift
[417/482] Emitting module SwiftParser
[418/482] Compiling SwiftParser TokenConsumer.swift
[422/482] Compiling SwiftParser Directives.swift
[423/482] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[424/482] Compiling SwiftParser Expressions.swift
[425/482] Compiling SwiftParser IncrementalParseTransition.swift
[426/482] Compiling SwiftParser IsValidIdentifier.swift
[427/482] Compiling SwiftParser Attributes.swift
[428/482] Compiling SwiftParser Availability.swift
[429/482] Compiling SwiftParser CharacterInfo.swift
[430/482] Compiling SwiftParser CollectionNodes+Parsable.swift
[431/482] Compiling SwiftParser Declarations.swift
[470/482] Compiling SwiftParser IsLexerClassified.swift
[471/482] Compiling SwiftParser LayoutNodes+Parsable.swift
[472/482] Compiling SwiftParser Parser+TokenSpecSet.swift
[473/482] Compiling SwiftParser TokenSpecStaticMembers.swift
[478/528] Compiling SwiftOperators PrecedenceGroup.swift
[479/529] Compiling SwiftOperators PrecedenceGraph.swift
[480/529] Compiling SwiftOperators PrecedenceGroup.swift
[481/530] Compiling SwiftOperators OperatorTable.swift
[482/530] Compiling SwiftOperators SyntaxSynthesis.swift
[483/530] Compiling SwiftOperators OperatorTable+Semantics.swift
[484/530] Emitting module SwiftOperators
[485/530] Compiling SwiftOperators OperatorTable+Defaults.swift
[486/530] Compiling SwiftOperators OperatorError.swift
[487/530] Compiling SwiftOperators OperatorError+Diagnostics.swift
[488/530] Compiling SwiftOperators Operator.swift
[489/530] Compiling SwiftOperators OperatorTable+Folding.swift
[490/530] Compiling SwiftOperators SyntaxSynthesis.swift
[491/530] Compiling SwiftOperators PrecedenceGraph.swift
[492/530] Compiling SwiftOperators OperatorTable.swift
[493/530] Compiling SwiftOperators OperatorTable+Semantics.swift
[494/530] Compiling SwiftOperators OperatorTable+Defaults.swift
[495/530] Compiling SwiftOperators OperatorError+Diagnostics.swift
[496/530] Compiling SwiftOperators Operator.swift
[497/530] Compiling SwiftOperators OperatorTable+Folding.swift
[498/530] Emitting module SwiftOperators
[499/530] Compiling SwiftOperators OperatorError.swift
[500/530] Compiling SwiftParserDiagnostics Utils.swift
[501/530] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[502/530] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[503/531] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[504/531] Compiling SwiftParserDiagnostics Utils.swift
[505/531] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[506/531] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[507/532] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[509/532] Compiling SwiftParserDiagnostics MissingNodesError.swift
[510/532] Compiling SwiftParserDiagnostics MissingTokenError.swift
[511/532] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[512/532] Compiling SwiftParserDiagnostics PresenceUtils.swift
[513/532] Emitting module SwiftParserDiagnostics
[514/532] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[515/532] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[516/532] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[517/532] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[518/532] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[519/532] Compiling SwiftParserDiagnostics PresenceUtils.swift
[524/532] Emitting module SwiftParserDiagnostics
[525/532] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[528/562] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[529/562] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[530/563] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[531/563] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[532/563] Emitting module SwiftSyntaxBuilder
[533/563] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[534/564] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[535/564] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[536/564] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[537/564] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[538/564] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[539/564] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[540/564] Compiling SwiftSyntaxBuilder Indenter.swift
[541/564] Compiling SwiftSyntaxBuilder ListBuilder.swift
[542/564] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[543/564] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[548/564] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[549/564] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[550/564] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[555/564] Emitting module SwiftSyntaxBuilder
[558/564] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[560/596] Compiling SwiftIfConfig SyntaxProtocol+IfConfig.swift
[561/597] Compiling SwiftIfConfig IfConfigRegionState.swift
[562/597] Compiling SwiftIfConfig SyntaxLiteralUtils.swift
[563/597] Compiling SwiftIfConfig VersionTuple+Parsing.swift
[564/597] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[565/597] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[566/598] Compiling SwiftSyntaxMacros PreambleMacro.swift
[567/598] Compiling SwiftSyntaxMacros AttachedMacro.swift
[568/598] Compiling SwiftSyntaxMacros BodyMacro.swift
[569/598] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[570/598] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[571/598] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[572/598] Compiling SwiftSyntaxMacros Macro+Format.swift
[573/598] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[574/598] Compiling SwiftSyntaxMacros AccessorMacro.swift
[575/598] Compiling SwiftSyntaxMacros Macro.swift
[576/598] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[577/598] Compiling SwiftSyntaxMacros MemberMacro.swift
[578/598] Compiling SwiftSyntaxMacros PeerMacro.swift
[579/598] Compiling SwiftIfConfig VersionTuple.swift
[580/598] Emitting module SwiftSyntaxMacros
[581/598] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[582/598] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[583/598] Compiling SwiftIfConfig IfConfigFunctions.swift
[584/598] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[591/598] Emitting module SwiftIfConfig
[594/623] Compiling SwiftLexicalLookup SequentialScopeSyntax.swift
[595/623] Compiling SwiftLexicalLookup WithGenericParametersScopeSyntax.swift
[596/624] Compiling SwiftLexicalLookup SimpleLookupQueries.swift
[597/624] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[598/624] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[599/624] Emitting module SwiftSyntaxMacroExpansion
[600/624] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[601/624] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[602/624] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[603/624] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[604/624] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[605/624] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[606/624] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[607/636] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[608/636] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[609/637] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[610/637] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[611/637] Emitting module SwiftCompilerPluginMessageHandling
[612/637] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[613/637] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[614/637] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[615/637] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[616/637] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[617/637] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[618/637] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[619/637] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[620/639] Emitting module SwiftCompilerPlugin
[621/639] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[622/648] Compiling SwiftLexicalLookup ScopeSyntax.swift
[625/648] Emitting module SwiftLexicalLookup
[626/648] Compiling SwiftLexicalLookup GenericParameterScopeSyntax.swift
[627/648] Compiling SwiftLexicalLookup IntroducingToSequentialParentScopeSyntax.swift
[628/648] Compiling SwiftLexicalLookup LookInMembersScopeSyntax.swift
[629/648] Compiling SwiftLexicalLookup NominalTypeDeclSyntax.swift
[630/648] Compiling SwiftLexicalLookup CanInterleaveResultsLaterScopeSyntax.swift
[631/648] Compiling SwiftLexicalLookup FunctionScopeSyntax.swift
[632/648] Compiling SwiftLexicalLookup ScopeImplementations.swift
[635/702] Compiling SwiftJavaMacros MacroErrors.swift
[636/702] Compiling SwiftJavaMacros SwiftJNIMacrosPlugin.swift
[637/702] Compiling JExtractSwiftLib AnalysisResult.swift
[638/702] Compiling JExtractSwiftLib CEnum.swift
[639/702] Compiling JExtractSwiftLib CFunction.swift
[640/702] Compiling JExtractSwiftLib CParameter.swift
[641/702] Compiling JExtractSwiftLib CStruct.swift
[642/702] Compiling JExtractSwiftLib CTag.swift
[643/707] Compiling SwiftJavaMacros SwiftSyntaxUtils.swift
[644/707] Compiling SwiftJavaMacros JavaFieldMacro.swift
[645/707] Compiling SwiftJavaMacros JavaClassMacro.swift
[646/707] Compiling SwiftJavaMacros GenerationMode.swift
[647/707] Compiling SwiftJavaMacros JavaMethodMacro.swift
[648/707] Compiling SwiftJavaMacros ImplementsJavaMacro.swift
[649/707] Emitting module SwiftJavaMacros
[649/707] Write Objects.LinkFileList
[651/707] Compiling JExtractSwiftLib CType.swift
[652/707] Compiling JExtractSwiftLib CUnion.swift
[653/707] Compiling JExtractSwiftLib CodePrinter.swift
[654/707] Compiling JExtractSwiftLib TypeAnnotations.swift
[655/707] Compiling JExtractSwiftLib Configuration+Extensions.swift
[656/707] Compiling JExtractSwiftLib Collection+Extensions.swift
[657/707] Compiling JExtractSwiftLib SwiftModuleSymbolTable.swift
[658/707] Compiling JExtractSwiftLib SwiftNominalTypeDeclaration.swift
[659/707] Compiling JExtractSwiftLib SwiftParameter.swift
[660/707] Compiling JExtractSwiftLib SwiftParsedModuleSymbolTableBuilder.swift
[661/707] Compiling JExtractSwiftLib SwiftResult.swift
[662/707] Compiling JExtractSwiftLib JNISwift2JavaGenerator.swift
[663/707] Compiling JExtractSwiftLib JavaParameter.swift
[664/707] Compiling JExtractSwiftLib JavaType+JDK.swift
[665/707] Compiling JExtractSwiftLib JavaType+SwiftKit.swift
[666/707] Compiling JExtractSwiftLib Logger.swift
[667/707] Compiling JExtractSwiftLib Swift2Java.swift
[668/707] Compiling JExtractSwiftLib SwiftEnumCaseParameter.swift
[669/707] Compiling JExtractSwiftLib SwiftFunctionSignature.swift
[670/707] Compiling JExtractSwiftLib SwiftFunctionType.swift
[671/707] Compiling JExtractSwiftLib SwiftKnownModules.swift
[672/707] Compiling JExtractSwiftLib SwiftKnownTypeDecls.swift
[673/707] Compiling JExtractSwiftLib SwiftKnownTypes.swift
[674/707] Emitting module JExtractSwiftLib
[675/707] Compiling JExtractSwiftLib SwiftSymbolTable.swift
[676/707] Compiling JExtractSwiftLib SwiftType+GenericTypes.swift
[677/707] Compiling JExtractSwiftLib SwiftType.swift
[678/707] Compiling JExtractSwiftLib SwiftTypeLookupContext.swift
[679/707] Compiling JExtractSwiftLib ThunkNameRegistry.swift
[680/707] Compiling JExtractSwiftLib FFMSwift2JavaGenerator+JavaBindingsPrinting.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/ImportedDecls.swift:140:9: warning: variable 'imports' was never mutated; consider changing to 'let' constant
138 | /// these would be exported here.
139 | var additionalJavaImports: Set<String> {
140 | var imports: Set<String> = []
| `- warning: variable 'imports' was never mutated; consider changing to 'let' constant
141 | // imports += self.functionSignature.parameters.flatMap { $0.additionalJavaImports }
142 | // imports += self.functionSignature.result.additionalJavaImports
[681/707] Compiling JExtractSwiftLib FFMSwift2JavaGenerator+JavaTranslation.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/ImportedDecls.swift:140:9: warning: variable 'imports' was never mutated; consider changing to 'let' constant
138 | /// these would be exported here.
139 | var additionalJavaImports: Set<String> {
140 | var imports: Set<String> = []
| `- warning: variable 'imports' was never mutated; consider changing to 'let' constant
141 | // imports += self.functionSignature.parameters.flatMap { $0.additionalJavaImports }
142 | // imports += self.functionSignature.result.additionalJavaImports
[682/707] Compiling JExtractSwiftLib FFMSwift2JavaGenerator+SwiftThunkPrinting.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/ImportedDecls.swift:140:9: warning: variable 'imports' was never mutated; consider changing to 'let' constant
138 | /// these would be exported here.
139 | var additionalJavaImports: Set<String> {
140 | var imports: Set<String> = []
| `- warning: variable 'imports' was never mutated; consider changing to 'let' constant
141 | // imports += self.functionSignature.parameters.flatMap { $0.additionalJavaImports }
142 | // imports += self.functionSignature.result.additionalJavaImports
[683/707] Compiling JExtractSwiftLib FFMSwift2JavaGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/ImportedDecls.swift:140:9: warning: variable 'imports' was never mutated; consider changing to 'let' constant
138 | /// these would be exported here.
139 | var additionalJavaImports: Set<String> {
140 | var imports: Set<String> = []
| `- warning: variable 'imports' was never mutated; consider changing to 'let' constant
141 | // imports += self.functionSignature.parameters.flatMap { $0.additionalJavaImports }
142 | // imports += self.functionSignature.result.additionalJavaImports
[684/707] Compiling JExtractSwiftLib ForeignValueLayouts.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/ImportedDecls.swift:140:9: warning: variable 'imports' was never mutated; consider changing to 'let' constant
138 | /// these would be exported here.
139 | var additionalJavaImports: Set<String> {
140 | var imports: Set<String> = []
| `- warning: variable 'imports' was never mutated; consider changing to 'let' constant
141 | // imports += self.functionSignature.parameters.flatMap { $0.additionalJavaImports }
142 | // imports += self.functionSignature.result.additionalJavaImports
[685/707] Compiling JExtractSwiftLib ImportedDecls.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/ImportedDecls.swift:140:9: warning: variable 'imports' was never mutated; consider changing to 'let' constant
138 | /// these would be exported here.
139 | var additionalJavaImports: Set<String> {
140 | var imports: Set<String> = []
| `- warning: variable 'imports' was never mutated; consider changing to 'let' constant
141 | // imports += self.functionSignature.parameters.flatMap { $0.additionalJavaImports }
142 | // imports += self.functionSignature.result.additionalJavaImports
[686/707] Compiling JExtractSwiftLib Swift2JavaGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/Swift2JavaVisitor.swift:285:33: warning: expression of type 'String?' is unused
283 | }
284 |
285 | imported.variables.first?.signatureString
| `- warning: expression of type 'String?' is unused
286 |
287 | if !imported.initializers.contains(where: { $0.functionSignature.parameters.count == 1 && $0.functionSignature.parameters.first?.parameterName == "rawValue" && $0.functionSignature.parameters.first?.type == inheritanceType }) {
[687/707] Compiling JExtractSwiftLib Swift2JavaTranslator.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/Swift2JavaVisitor.swift:285:33: warning: expression of type 'String?' is unused
283 | }
284 |
285 | imported.variables.first?.signatureString
| `- warning: expression of type 'String?' is unused
286 |
287 | if !imported.initializers.contains(where: { $0.functionSignature.parameters.count == 1 && $0.functionSignature.parameters.first?.parameterName == "rawValue" && $0.functionSignature.parameters.first?.type == inheritanceType }) {
[688/707] Compiling JExtractSwiftLib Swift2JavaVisitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/Swift2JavaVisitor.swift:285:33: warning: expression of type 'String?' is unused
283 | }
284 |
285 | imported.variables.first?.signatureString
| `- warning: expression of type 'String?' is unused
286 |
287 | if !imported.initializers.contains(where: { $0.functionSignature.parameters.count == 1 && $0.functionSignature.parameters.first?.parameterName == "rawValue" && $0.functionSignature.parameters.first?.type == inheritanceType }) {
[689/707] Compiling JExtractSwiftLib SwiftKit+Printing.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/Swift2JavaVisitor.swift:285:33: warning: expression of type 'String?' is unused
283 | }
284 |
285 | imported.variables.first?.signatureString
| `- warning: expression of type 'String?' is unused
286 |
287 | if !imported.initializers.contains(where: { $0.functionSignature.parameters.count == 1 && $0.functionSignature.parameters.first?.parameterName == "rawValue" && $0.functionSignature.parameters.first?.type == inheritanceType }) {
[690/707] Compiling JExtractSwiftLib DependencyScanner.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/Swift2JavaVisitor.swift:285:33: warning: expression of type 'String?' is unused
283 | }
284 |
285 | imported.variables.first?.signatureString
| `- warning: expression of type 'String?' is unused
286 |
287 | if !imported.initializers.contains(where: { $0.functionSignature.parameters.count == 1 && $0.functionSignature.parameters.first?.parameterName == "rawValue" && $0.functionSignature.parameters.first?.type == inheritanceType }) {
[691/707] Compiling JExtractSwiftLib SwiftEffectSpecifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/Swift2JavaVisitor.swift:285:33: warning: expression of type 'String?' is unused
283 | }
284 |
285 | imported.variables.first?.signatureString
| `- warning: expression of type 'String?' is unused
286 |
287 | if !imported.initializers.contains(where: { $0.functionSignature.parameters.count == 1 && $0.functionSignature.parameters.first?.parameterName == "rawValue" && $0.functionSignature.parameters.first?.type == inheritanceType }) {
[692/707] Compiling JExtractSwiftLib JavaType+Extensions.swift
[693/707] Compiling JExtractSwiftLib String+Extensions.swift
[694/707] Compiling JExtractSwiftLib SwiftSyntax+Extensions.swift
[695/707] Compiling JExtractSwiftLib CRepresentation.swift
[696/707] Compiling JExtractSwiftLib FFMSwift2JavaGenerator+FunctionLowering.swift
[697/707] Compiling JExtractSwiftLib ConversionStep.swift
[698/707] Compiling JExtractSwiftLib JNICaching.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/JNI/JNISwift2JavaGenerator+SwiftThunkPrinting.swift:152:9: warning: initialization of immutable value 'protocolName' was never used; consider replacing with assignment to '_' or removing it
150 |
151 | private func printProtocolThunks(_ printer: inout CodePrinter, _ type: ImportedNominalType) {
152 | let protocolName = type.swiftNominal.name
| `- warning: initialization of immutable value 'protocolName' was never used; consider replacing with assignment to '_' or removing it
153 | }
154 |
[699/707] Compiling JExtractSwiftLib JNIJavaTypeTranslator.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/JNI/JNISwift2JavaGenerator+SwiftThunkPrinting.swift:152:9: warning: initialization of immutable value 'protocolName' was never used; consider replacing with assignment to '_' or removing it
150 |
151 | private func printProtocolThunks(_ printer: inout CodePrinter, _ type: ImportedNominalType) {
152 | let protocolName = type.swiftNominal.name
| `- warning: initialization of immutable value 'protocolName' was never used; consider replacing with assignment to '_' or removing it
153 | }
154 |
[700/707] Compiling JExtractSwiftLib JNISwift2JavaGenerator+JavaBindingsPrinting.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/JNI/JNISwift2JavaGenerator+SwiftThunkPrinting.swift:152:9: warning: initialization of immutable value 'protocolName' was never used; consider replacing with assignment to '_' or removing it
150 |
151 | private func printProtocolThunks(_ printer: inout CodePrinter, _ type: ImportedNominalType) {
152 | let protocolName = type.swiftNominal.name
| `- warning: initialization of immutable value 'protocolName' was never used; consider replacing with assignment to '_' or removing it
153 | }
154 |
[701/707] Compiling JExtractSwiftLib JNISwift2JavaGenerator+JavaTranslation.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/JNI/JNISwift2JavaGenerator+SwiftThunkPrinting.swift:152:9: warning: initialization of immutable value 'protocolName' was never used; consider replacing with assignment to '_' or removing it
150 |
151 | private func printProtocolThunks(_ printer: inout CodePrinter, _ type: ImportedNominalType) {
152 | let protocolName = type.swiftNominal.name
| `- warning: initialization of immutable value 'protocolName' was never used; consider replacing with assignment to '_' or removing it
153 | }
154 |
[702/707] Compiling JExtractSwiftLib JNISwift2JavaGenerator+NativeTranslation.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/JNI/JNISwift2JavaGenerator+SwiftThunkPrinting.swift:152:9: warning: initialization of immutable value 'protocolName' was never used; consider replacing with assignment to '_' or removing it
150 |
151 | private func printProtocolThunks(_ printer: inout CodePrinter, _ type: ImportedNominalType) {
152 | let protocolName = type.swiftNominal.name
| `- warning: initialization of immutable value 'protocolName' was never used; consider replacing with assignment to '_' or removing it
153 | }
154 |
[703/707] Compiling JExtractSwiftLib JNISwift2JavaGenerator+SwiftThunkPrinting.swift
/Users/admin/builder/spi-builder-workspace/Sources/JExtractSwiftLib/JNI/JNISwift2JavaGenerator+SwiftThunkPrinting.swift:152:9: warning: initialization of immutable value 'protocolName' was never used; consider replacing with assignment to '_' or removing it
150 |
151 | private func printProtocolThunks(_ printer: inout CodePrinter, _ type: ImportedNominalType) {
152 | let protocolName = type.swiftNominal.name
| `- warning: initialization of immutable value 'protocolName' was never used; consider replacing with assignment to '_' or removing it
153 | }
154 |
[703/707] Linking SwiftJavaMacros-tool
[705/752] Compiling SwiftJava JavaValue+String.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[706/752] Compiling SwiftJava CSwiftJavaJNI+Reexport.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[707/752] Compiling SwiftJava Exception+Error.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[708/752] Compiling SwiftJava ExceptionHandling.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[709/752] Compiling SwiftJava Throwable+Error.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[710/756] Compiling SwiftJava _JNIMethodIDCache.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[711/756] Compiling SwiftJava JavaClass+Initialization.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[712/756] Compiling SwiftJava JavaEnvironment.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[713/756] Compiling SwiftJava JavaVirtualMachine.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[714/756] Compiling SwiftJava LockedState.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[715/756] Compiling SwiftJava AnyJavaObject.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[716/756] Compiling SwiftJava JavaValue+Array.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[717/756] Compiling SwiftJava JavaValue+Bool.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[718/756] Compiling SwiftJava JavaValue+FloatingPoint.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[719/756] Compiling SwiftJava JavaValue+Integers.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[720/756] Compiling SwiftJava JavaOptionalDouble.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[721/756] Compiling SwiftJava JavaOptionalInt.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[722/756] Compiling SwiftJava JavaOptionalLong.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[723/756] Compiling SwiftJava JavaShort.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[724/756] Compiling SwiftJava ThreadLocalStorage.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[725/756] Compiling SwiftJava JavaObject+Inheritance.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[726/756] Compiling SwiftJava JavaObject+MethodCalls.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[727/756] Compiling SwiftJava JavaObjectHolder.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[728/756] Compiling SwiftJava JavaValue.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[729/756] Compiling SwiftJava JavaClass.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[730/756] Compiling SwiftJava JavaClassLoader.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[731/756] Compiling SwiftJava JavaDouble.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[732/756] Compiling SwiftJava JavaError.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[733/756] Compiling SwiftJava JavaFloat.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[734/756] Compiling SwiftJava JavaString.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[735/756] Compiling SwiftJava JavaVoid.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[736/756] Compiling SwiftJava RuntimeException.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[737/756] Compiling SwiftJava Throwable.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
error: emit-module command failed with exit code 1 (use -v to see invocation)
[738/756] Emitting module SwiftJava
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[739/756] Compiling SwiftJava Macros.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[740/756] Compiling SwiftJava Optional+JavaObject.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[741/756] Compiling SwiftJava Optional+JavaOptional.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[742/756] Compiling SwiftJava Appendable.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[743/756] Compiling SwiftJava CharSequence.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[744/756] Compiling SwiftJava Exception.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[745/756] Compiling SwiftJava JavaArray.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[746/756] Compiling SwiftJava JavaBoolean.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[747/756] Compiling SwiftJava JavaByte.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[748/756] Compiling SwiftJava JavaCharacter.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[749/756] Compiling SwiftJava JavaInteger.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[750/756] Compiling SwiftJava JavaLong.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[751/756] Compiling SwiftJava JavaNumber.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[752/756] Compiling SwiftJava JavaObject.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
[753/756] Compiling SwiftJava JavaOptional.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "CSwiftJavaJNI.h"
| `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftJavaJNI/include/CSwiftJavaJNI.h:18:10: error: 'jni.h' file not found
16 | #define CSwiftJavaJNI_h
17 |
18 | #include <jni.h>
| `- error: 'jni.h' file not found
19 |
20 | #endif /* CSwiftJavaJNI_h */
/Users/admin/builder/spi-builder-workspace/Sources/SwiftJava/AnyJavaObject.swift:15:8: error: could not build Objective-C module 'CSwiftJavaJNI'
13 | //===----------------------------------------------------------------------===//
14 |
15 | import CSwiftJavaJNI
| `- error: could not build Objective-C module 'CSwiftJavaJNI'
16 |
17 | /// Protocol that describes Swift types that are bridged to a Java class type.
warning: 'spi-builder-workspace': JAVA_HOME = /Users/admin/.sdkman/candidates/java/current
Fetching https://github.com/swiftlang/swift-syntax
Fetching https://github.com/apple/swift-argument-parser
Fetching https://github.com/apple/swift-system
Fetching https://github.com/ordo-one/package-benchmark
[1/4937] Fetching swift-system
[150/11369] Fetching swift-system, package-benchmark
[1034/27283] Fetching swift-system, package-benchmark, swift-argument-parser
[27284/99194] Fetching swift-system, package-benchmark, swift-argument-parser, swift-syntax
Fetched https://github.com/swiftlang/swift-syntax from cache (3.07s)
Fetched https://github.com/apple/swift-system from cache (3.07s)
Fetched https://github.com/apple/swift-argument-parser from cache (3.07s)
Fetched https://github.com/ordo-one/package-benchmark from cache (3.07s)
Computing version for https://github.com/swiftlang/swift-syntax
Computed https://github.com/swiftlang/swift-syntax at 601.0.1 (2.57s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.6.1 (0.50s)
Computing version for https://github.com/apple/swift-system
Computed https://github.com/apple/swift-system at 1.6.2 (0.50s)
Computing version for https://github.com/ordo-one/package-benchmark
warning: 'package-benchmark': Building for SPI@macOS, disabling Jemalloc
Computed https://github.com/ordo-one/package-benchmark at 1.29.4 (0.62s)
Fetching https://github.com/HdrHistogram/hdrhistogram-swift.git
Fetching https://github.com/ordo-one/TextTable.git
Fetching https://github.com/apple/swift-atomics.git
[1/203] Fetching texttable
[28/2017] Fetching texttable, swift-atomics
[277/2619] Fetching texttable, swift-atomics, hdrhistogram-swift
Fetched https://github.com/HdrHistogram/hdrhistogram-swift.git from cache (0.96s)
Fetched https://github.com/apple/swift-atomics.git from cache (0.96s)
Fetched https://github.com/ordo-one/TextTable.git from cache (0.96s)
Computing version for https://github.com/ordo-one/TextTable.git
Computed https://github.com/ordo-one/TextTable.git at 0.0.2 (0.57s)
Computing version for https://github.com/HdrHistogram/hdrhistogram-swift.git
Computed https://github.com/HdrHistogram/hdrhistogram-swift.git at 0.1.3 (0.59s)
Fetching https://github.com/apple/swift-numerics
[1/6348] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics from cache (1.09s)
Computing version for https://github.com/apple/swift-numerics
Computed https://github.com/apple/swift-numerics at 1.1.0 (0.45s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (0.47s)
Creating working copy for https://github.com/swiftlang/swift-syntax
Working copy of https://github.com/swiftlang/swift-syntax resolved at 601.0.1
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Creating working copy for https://github.com/ordo-one/package-benchmark
Working copy of https://github.com/ordo-one/package-benchmark resolved at 1.29.4
Creating working copy for https://github.com/ordo-one/TextTable.git
Working copy of https://github.com/ordo-one/TextTable.git resolved at 0.0.2
Creating working copy for https://github.com/apple/swift-numerics
Working copy of https://github.com/apple/swift-numerics resolved at 1.1.0
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.6.1
Creating working copy for https://github.com/apple/swift-system
Working copy of https://github.com/apple/swift-system resolved at 1.6.2
Creating working copy for https://github.com/HdrHistogram/hdrhistogram-swift.git
Working copy of https://github.com/HdrHistogram/hdrhistogram-swift.git resolved at 0.1.3
warning: 'package-benchmark': Building for SPI@macOS, disabling Jemalloc
warning: 'swift-syntax': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftLexicalLookup/CMakeLists.txt
warning: 'swift-syntax': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftLexicalLookup/CMakeLists.txt
BUILD FAILURE 6.0 macosSpm