The Swift Package Index logo.Swift Package Index

Build Information

Successful build of IndexStore, reference main (53a322), with Swift 6.3 for macOS (SPM) on 21 Apr 2026 22:45:18 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ileitch/swift-index-store.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/ileitch/swift-index-store
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 53a322b Update Bazel dependencies (#61)
Cloned https://github.com/ileitch/swift-index-store.git
Revision (git rev-parse @):
53a322bd6f4215d3bc1642be777a832c18542441
SUCCESS checkout https://github.com/ileitch/swift-index-store.git at main
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "traits": [
    "default"
  ],
  "dependencies": [
    {
      "identity": "swift-index-store",
      "name": "IndexStore",
      "url": "https://github.com/ileitch/swift-index-store.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-index-store",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/ileitch/swift-index-store.git
[1/596] Fetching swift-index-store
Fetched https://github.com/ileitch/swift-index-store.git from cache (0.91s)
Creating working copy for https://github.com/ileitch/swift-index-store.git
Working copy of https://github.com/ileitch/swift-index-store.git resolved at main (53a322b)
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/ileitch/swift-index-store.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/30] Write sources
[2/30] Write unused-imports-entitlement.plist
[2/30] Write sources
[2/30] Write unnecessary-testable-entitlement.plist
[2/30] Write sources
[5/30] Write tycat-entitlement.plist
[9/30] Write indexutil-annotate-entitlement.plist
[10/30] Write indexutil-export-entitlement.plist
[10/30] Write sources
[12/30] Compiling CIndexStore dummy.c
[13/30] Write swift-version--6988338F2F200930.txt
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftDemangle/CSwiftDemangle.cpp:29:22: warning: variable length arrays in C++ are a Clang extension [-Wvla-cxx-extension]
   29 |     char true_symbol[strlen(symbol) + 1];
      |                      ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftDemangle/CSwiftDemangle.cpp:29:29: note: function parameter 'symbol' with unknown value cannot be used in a constant expression
   29 |     char true_symbol[strlen(symbol) + 1];
      |                             ^
/Users/admin/builder/spi-builder-workspace/Sources/CSwiftDemangle/CSwiftDemangle.cpp:26:75: note: declared here
   26 | demangle_node_t demangle_symbolAsNode(demangle_context_t ctx, const char *symbol) {
      |                                                                           ^
1 warning generated.
[14/36] Compiling CSwiftDemangle CSwiftDemangle.cpp
[16/39] Compiling IndexStore IndexStoreError.swift
[17/39] Compiling IndexStore StandardStream.swift
[18/39] Compiling IndexStore String+IndexStore.swift
[19/39] Compiling SwiftDemangle Demangler.swift
[20/39] Emitting module SwiftDemangle
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDemangle/DemangledNode.swift:57:1: warning: extension declares a conformance of imported type 'demangle_node_kind_t' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'CSwiftDemangle' introduce this conformance in the future
55 | }
56 |
57 | extension DemangledNodeKind: CustomDebugStringConvertible {
   | |- warning: extension declares a conformance of imported type 'demangle_node_kind_t' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'CSwiftDemangle' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
58 |     public var debugDescription: String {
59 |         String(cString: node_getKindName(self))
[21/39] Compiling SwiftDemangle DemangledNode.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDemangle/DemangledNode.swift:57:1: warning: extension declares a conformance of imported type 'demangle_node_kind_t' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'CSwiftDemangle' introduce this conformance in the future
55 | }
56 |
57 | extension DemangledNodeKind: CustomDebugStringConvertible {
   | |- warning: extension declares a conformance of imported type 'demangle_node_kind_t' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'CSwiftDemangle' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
58 |     public var debugDescription: String {
59 |         String(cString: node_getKindName(self))
[22/39] Compiling IndexStore Constants.swift
/Users/admin/builder/spi-builder-workspace/Sources/IndexStore/Constants.swift:197:1: warning: extension declares a conformance of imported type 'indexstore_symbol_kind_t' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CIndexStore' introduce this conformance in the future
195 | }
196 |
197 | extension SymbolKind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'indexstore_symbol_kind_t' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CIndexStore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
198 |     public var description: String {
199 |         switch self {
/Users/admin/builder/spi-builder-workspace/Sources/IndexStore/Constants.swift:263:1: warning: extension declares a conformance of imported type 'indexstore_symbol_subkind_t' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CIndexStore' introduce this conformance in the future
261 | }
262 |
263 | extension SymbolSubkind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'indexstore_symbol_subkind_t' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CIndexStore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
264 |     public var description: String {
265 |         switch self {
[23/39] Emitting module IndexStore
/Users/admin/builder/spi-builder-workspace/Sources/IndexStore/Constants.swift:197:1: warning: extension declares a conformance of imported type 'indexstore_symbol_kind_t' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CIndexStore' introduce this conformance in the future
195 | }
196 |
197 | extension SymbolKind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'indexstore_symbol_kind_t' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CIndexStore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
198 |     public var description: String {
199 |         switch self {
/Users/admin/builder/spi-builder-workspace/Sources/IndexStore/Constants.swift:263:1: warning: extension declares a conformance of imported type 'indexstore_symbol_subkind_t' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CIndexStore' introduce this conformance in the future
261 | }
262 |
263 | extension SymbolSubkind: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'indexstore_symbol_subkind_t' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CIndexStore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
264 |     public var description: String {
265 |         switch self {
[24/39] Compiling IndexStore IndexStore.swift
[25/58] Compiling unused_imports SedCommandReporter.swift
[26/58] Compiling unused_imports JSONReporter.swift
[27/58] Compiling tycat main.swift
[28/58] Emitting module tycat
[29/58] Compiling tycat Xcode.swift
[30/58] Compiling tycat TypeGraph.swift
[30/58] Write Objects.LinkFileList
[32/58] Compiling unused_imports SourceFileWithUnusedImports.swift
[33/58] Compiling unused_imports UnusedImportReporter.swift
[34/58] Emitting module unused_imports
[35/58] Compiling indexutil_export main.swift
[36/58] Emitting module indexutil_export
[37/58] Compiling indexutil_export TSVWriter.swift
[38/58] Compiling indexutil_annotate main.swift
[39/58] Compiling indexutil_annotate Annotation.swift
[40/58] Emitting module indexutil_annotate
[40/58] Write Objects.LinkFileList
[43/58] Emitting module unnecessary_testable
[44/58] Compiling unnecessary_testable main.swift
[44/58] Write Objects.LinkFileList
[46/58] Compiling unused_imports UnusedImportStatement.swift
[47/58] Compiling unused_imports main.swift
[47/58] Write Objects.LinkFileList
ld: warning: building for macOS-13.0, but linking with dylib '@rpath/libIndexStore.dylib' which was built for newer version 14.0
[48/58] Linking tycat
[49/58] Applying tycat
ld: warning: building for macOS-13.0, but linking with dylib '@rpath/libIndexStore.dylib' which was built for newer version 14.0
[50/58] Linking indexutil-annotate
[51/58] Applying indexutil-annotate
ld: warning: building for macOS-13.0, but linking with dylib '@rpath/libIndexStore.dylib' which was built for newer version 14.0
[52/58] Linking indexutil-export
[53/58] Applying indexutil-export
ld: warning: building for macOS-13.0, but linking with dylib '@rpath/libIndexStore.dylib' which was built for newer version 14.0
[54/58] Linking unnecessary-testable
[55/58] Applying unnecessary-testable
ld: warning: building for macOS-13.0, but linking with dylib '@rpath/libIndexStore.dylib' which was built for newer version 14.0
[56/58] Linking unused-imports
[57/58] Applying unused-imports
Build complete! (5.67s)
Build complete.
{
  "cxx_language_standard" : "c++17",
  "dependencies" : [
  ],
  "manifest_display_name" : "IndexStore",
  "name" : "IndexStore",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "IndexStore",
      "targets" : [
        "IndexStore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CSwiftDemangle",
      "targets" : [
        "CSwiftDemangle"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SwiftDemangle",
      "targets" : [
        "SwiftDemangle"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "indexutil-export",
      "targets" : [
        "indexutil-export"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "unnecessary-testable",
      "targets" : [
        "unnecessary-testable"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "unused-imports",
      "targets" : [
        "unused-imports"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "indexutil-annotate",
      "targets" : [
        "indexutil-annotate"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "tycat",
      "targets" : [
        "tycat"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "unused_imports",
      "module_type" : "SwiftTarget",
      "name" : "unused-imports",
      "path" : "Sources/unused-imports",
      "product_memberships" : [
        "unused-imports"
      ],
      "sources" : [
        "Reporters/JSONReporter.swift",
        "Reporters/SedCommandReporter.swift",
        "Reporters/UnusedImportReporter.swift",
        "SourceFileWithUnusedImports.swift",
        "UnusedImportStatement.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "IndexStore"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "unnecessary_testable",
      "module_type" : "SwiftTarget",
      "name" : "unnecessary-testable",
      "path" : "Sources/unnecessary-testable",
      "product_memberships" : [
        "unnecessary-testable"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "IndexStore"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "tycat",
      "module_type" : "SwiftTarget",
      "name" : "tycat",
      "path" : "Sources/tycat",
      "product_memberships" : [
        "tycat"
      ],
      "sources" : [
        "TypeGraph.swift",
        "Xcode.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "IndexStore"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "indexutil_export",
      "module_type" : "SwiftTarget",
      "name" : "indexutil-export",
      "path" : "Sources/indexutil-export",
      "product_memberships" : [
        "indexutil-export"
      ],
      "sources" : [
        "TSVWriter.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "IndexStore"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "indexutil_annotate",
      "module_type" : "SwiftTarget",
      "name" : "indexutil-annotate",
      "path" : "Sources/indexutil-annotate",
      "product_memberships" : [
        "indexutil-annotate"
      ],
      "sources" : [
        "Annotation.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "IndexStore"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "SwiftDemangleTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftDemangleTests",
      "path" : "Tests/SwiftDemangleTests",
      "sources" : [
        "SwiftDemangleTests.swift"
      ],
      "target_dependencies" : [
        "SwiftDemangle"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftDemangle",
      "module_type" : "SwiftTarget",
      "name" : "SwiftDemangle",
      "path" : "Sources/SwiftDemangle",
      "product_memberships" : [
        "SwiftDemangle"
      ],
      "sources" : [
        "DemangledNode.swift",
        "Demangler.swift"
      ],
      "target_dependencies" : [
        "CSwiftDemangle"
      ],
      "type" : "library"
    },
    {
      "c99name" : "IndexStoreTests",
      "module_type" : "SwiftTarget",
      "name" : "IndexStoreTests",
      "path" : "Tests/IndexStoreTests",
      "sources" : [
        "DetermineIndexStorePath.swift",
        "IndexStoreTests.swift"
      ],
      "target_dependencies" : [
        "IndexStore"
      ],
      "type" : "test"
    },
    {
      "c99name" : "IndexStore",
      "module_type" : "SwiftTarget",
      "name" : "IndexStore",
      "path" : "Sources/IndexStore",
      "product_memberships" : [
        "IndexStore",
        "indexutil-export",
        "unnecessary-testable",
        "unused-imports",
        "indexutil-annotate",
        "tycat"
      ],
      "sources" : [
        "Constants.swift",
        "IndexStore.swift",
        "IndexStoreError.swift",
        "StandardStream.swift",
        "String+IndexStore.swift"
      ],
      "target_dependencies" : [
        "CIndexStore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CSwiftDemangle",
      "module_type" : "ClangTarget",
      "name" : "CSwiftDemangle",
      "path" : "Sources/CSwiftDemangle",
      "product_memberships" : [
        "CSwiftDemangle",
        "SwiftDemangle"
      ],
      "sources" : [
        "CSwiftDemangle.cpp"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CIndexStore",
      "module_type" : "ClangTarget",
      "name" : "CIndexStore",
      "path" : "Sources/CIndexStore",
      "product_memberships" : [
        "IndexStore",
        "indexutil-export",
        "unnecessary-testable",
        "unused-imports",
        "indexutil-annotate",
        "tycat"
      ],
      "sources" : [
        "dummy.c"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.