This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of xcframework-maker with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/darrarski/xcframework-maker.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/darrarski/xcframework-maker
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at f59c1c4 Add docs to Log action
Cloned https://github.com/darrarski/xcframework-maker.git
Revision (git rev-parse @):
f59c1c46f09a7602d444e2222b8bfc1c25da5bf7
SUCCESS checkout https://github.com/darrarski/xcframework-maker.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/darrarski/xcframework-maker.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/10] Write sources
[4/10] Write make-xcframework-entitlement.plist
[4/10] Write sources
[6/10] Write swift-version-6F35C1178C84523A.txt
[8/47] Emitting module Arm64ToSim
[9/47] Emitting module ArgumentParser
[10/50] Compiling ArgumentParser ParsableArgumentsValidation.swift
[11/50] Compiling ArgumentParser ParsableCommand.swift
[12/50] Compiling ArgumentParser ArgumentDecoder.swift
[13/50] Compiling ArgumentParser ArgumentDefinition.swift
[14/50] Compiling ArgumentParser SequenceExtensions.swift
[15/50] Compiling ArgumentParser StringExtensions.swift
[16/50] Compiling ArgumentParser Tree.swift
[17/50] Compiling ArgumentParser Flag.swift
[18/50] Compiling ArgumentParser NameSpecification.swift
[19/50] Compiling ArgumentParser Option.swift
[20/50] Compiling ArgumentParser OptionGroup.swift
[21/50] Compiling ArgumentParser Argument.swift
[22/50] Compiling ArgumentParser ArgumentHelp.swift
[23/50] Compiling ArgumentParser CompletionKind.swift
[24/50] Compiling ArgumentParser Errors.swift
[25/50] Compiling ArgumentParser ArgumentSet.swift
[26/50] Compiling ArgumentParser CommandParser.swift
[27/50] Compiling ArgumentParser InputOrigin.swift
[28/50] Compiling ArgumentParser CommandConfiguration.swift
[29/50] Compiling ArgumentParser EnumerableFlag.swift
[30/50] Compiling ArgumentParser ExpressibleByArgument.swift
[31/50] Compiling ArgumentParser ParsableArguments.swift
[32/50] Compiling ArgumentParser BashCompletionsGenerator.swift
[33/50] Compiling ArgumentParser CompletionsGenerator.swift
[34/50] Compiling ArgumentParser FishCompletionsGenerator.swift
[35/50] Compiling ArgumentParser ZshCompletionsGenerator.swift
[36/50] Compiling Arm64ToSim Arm64ToSim.swift
[37/50] Compiling ArgumentParser Name.swift
[38/50] Compiling ArgumentParser Parsed.swift
[39/50] Compiling ArgumentParser ParsedValues.swift
[40/50] Compiling ArgumentParser HelpGenerator.swift
[41/50] Compiling ArgumentParser MessageInfo.swift
[42/50] Compiling ArgumentParser UsageGenerator.swift
[43/50] Compiling ArgumentParser ParserError.swift
[44/50] Compiling ArgumentParser SplitArguments.swift
[45/50] Compiling ArgumentParser HelpCommand.swift
[46/50] Emitting module ShellOut
[47/50] Compiling ShellOut ShellOut.swift
[48/67] Compiling XCFrameworkMaker Arch.swift
[49/67] Compiling XCFrameworkMaker LogLevel.swift
[50/68] Compiling XCFrameworkMaker CreateTempDir.swift
[51/68] Compiling XCFrameworkMaker CreateXCFramework.swift
[52/68] Compiling XCFrameworkMaker LipoThin.swift
[53/68] Compiling XCFrameworkMaker Log.swift
[54/68] Compiling XCFrameworkMaker DeletePath.swift
[55/68] Compiling XCFrameworkMaker GetArchs.swift
[56/68] Compiling XCFrameworkMaker CopyPath.swift
[57/68] Compiling XCFrameworkMaker CreateDir.swift
[58/68] Emitting module XCFrameworkMaker
[59/68] Compiling XCFrameworkMaker AddArm64Simulator.swift
[60/68] Compiling XCFrameworkMaker CopyFramework.swift
[61/68] Compiling XCFrameworkMaker LipoCreate.swift
[62/68] Compiling XCFrameworkMaker LipoExtract.swift
[63/68] Compiling XCFrameworkMaker MakeXCFramework.swift
[64/68] Compiling XCFrameworkMaker RunShellCommand.swift
[65/68] Compiling XCFrameworkMaker Path.swift
[66/71] Emitting module make_xcframework
/Users/admin/builder/spi-builder-workspace/Sources/make-xcframework/MainCommand.swift:6:14: warning: static property 'makeXCFramework' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | struct MainCommand: ParsableCommand {
 6 |   static var makeXCFramework: MakeXCFramework = .live()
   |              |- warning: static property 'makeXCFramework' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'makeXCFramework' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'makeXCFramework' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |
 8 |   // MARK: - ParsableCommand
/Users/admin/builder/spi-builder-workspace/Sources/make-xcframework/MainCommand.swift:10:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |   // MARK: - ParsableCommand
 9 |
10 |   static let configuration = CommandConfiguration(
   |              `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
11 |     commandName: "make-xcframework",
12 |     abstract: "Utility for creating XCFramework from legacy fat-framework files.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/make-xcframework/MainCommand.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 2 | import Foundation
 3 | import XCFrameworkMaker
   :
 8 |   // MARK: - ParsableCommand
 9 |
10 |   static let configuration = CommandConfiguration(
   |              |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     commandName: "make-xcframework",
12 |     abstract: "Utility for creating XCFramework from legacy fat-framework files.",
[67/71] Compiling make_xcframework MainCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/make-xcframework/MainCommand.swift:6:14: warning: static property 'makeXCFramework' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 4 |
 5 | struct MainCommand: ParsableCommand {
 6 |   static var makeXCFramework: MakeXCFramework = .live()
   |              |- warning: static property 'makeXCFramework' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'makeXCFramework' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'makeXCFramework' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 |
 8 |   // MARK: - ParsableCommand
/Users/admin/builder/spi-builder-workspace/Sources/make-xcframework/MainCommand.swift:10:14: warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |   // MARK: - ParsableCommand
 9 |
10 |   static let configuration = CommandConfiguration(
   |              `- warning: static property 'configuration' is not concurrency-safe because non-'Sendable' type 'CommandConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
11 |     commandName: "make-xcframework",
12 |     abstract: "Utility for creating XCFramework from legacy fat-framework files.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-argument-parser/Sources/ArgumentParser/Parsable Types/CommandConfiguration.swift:13:15: note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 11 |
 12 | /// The configuration for a command.
 13 | public struct CommandConfiguration {
    |               `- note: struct 'CommandConfiguration' does not conform to the 'Sendable' protocol
 14 |   /// The name of the command to use on the command line.
 15 |   ///
/Users/admin/builder/spi-builder-workspace/Sources/make-xcframework/MainCommand.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 1 | import ArgumentParser
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ArgumentParser'
 2 | import Foundation
 3 | import XCFrameworkMaker
   :
 8 |   // MARK: - ParsableCommand
 9 |
10 |   static let configuration = CommandConfiguration(
   |              |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |     commandName: "make-xcframework",
12 |     abstract: "Utility for creating XCFramework from legacy fat-framework files.",
[68/71] Compiling make_xcframework main.swift
[68/71] Write Objects.LinkFileList
[69/71] Linking make-xcframework
[70/71] Applying make-xcframework
Build complete! (35.57s)
Fetching https://github.com/apple/swift-argument-parser.git
Fetching https://github.com/JohnSundell/ShellOut.git
Fetching https://github.com/darrarski/arm64-to-sim.git
[1/72] Fetching arm64-to-sim
[58/1028] Fetching arm64-to-sim, shellout
[1029/12707] Fetching arm64-to-sim, shellout, swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser.git from cache (1.83s)
Fetched https://github.com/JohnSundell/ShellOut.git from cache (1.83s)
Fetched https://github.com/darrarski/arm64-to-sim.git from cache (1.83s)
Computing version for https://github.com/darrarski/arm64-to-sim.git
Computed https://github.com/darrarski/arm64-to-sim.git at 1.0.0 (0.75s)
Computing version for https://github.com/JohnSundell/ShellOut.git
Computed https://github.com/JohnSundell/ShellOut.git at 2.3.0 (2.64s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 0.4.3 (0.71s)
Creating working copy for https://github.com/darrarski/arm64-to-sim.git
Working copy of https://github.com/darrarski/arm64-to-sim.git resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-argument-parser.git
Working copy of https://github.com/apple/swift-argument-parser.git resolved at 0.4.3
Creating working copy for https://github.com/JohnSundell/ShellOut.git
Working copy of https://github.com/JohnSundell/ShellOut.git resolved at 2.3.0
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.4.3",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser.git"
    },
    {
      "identity" : "shellout",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.3.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/JohnSundell/ShellOut.git"
    },
    {
      "identity" : "arm64-to-sim",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/darrarski/arm64-to-sim.git"
    }
  ],
  "manifest_display_name" : "xcframework-maker",
  "name" : "xcframework-maker",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "XCFrameworkMaker",
      "targets" : [
        "XCFrameworkMaker"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "make-xcframework",
      "targets" : [
        "make-xcframework"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "make_xcframework",
      "module_type" : "SwiftTarget",
      "name" : "make-xcframework",
      "path" : "Sources/make-xcframework",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "make-xcframework"
      ],
      "sources" : [
        "MainCommand.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "XCFrameworkMaker"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "XCFrameworkMakerTests",
      "module_type" : "SwiftTarget",
      "name" : "XCFrameworkMakerTests",
      "path" : "Tests/XCFrameworkMakerTests",
      "sources" : [
        "Actions/AddArm64SimulatorTests.swift",
        "Actions/CopyFrameworkTests.swift",
        "Actions/CopyPathTests.swift",
        "Actions/CreateDirTests.swift",
        "Actions/CreateTempDirTests.swift",
        "Actions/CreateXCFrameworkTests.swift",
        "Actions/DeletePathTests.swift",
        "Actions/GetArchsTests.swift",
        "Actions/LipoCreateTests.swift",
        "Actions/LipoExtractTests.swift",
        "Actions/LipoThinTests.swift",
        "Actions/LogTests.swift",
        "Actions/MakeXCFrameworkTests.swift",
        "Actions/RunShellCommandTests.swift",
        "Models/LogLevelTests.swift",
        "Models/PathTests.swift"
      ],
      "target_dependencies" : [
        "XCFrameworkMaker"
      ],
      "type" : "test"
    },
    {
      "c99name" : "XCFrameworkMaker",
      "module_type" : "SwiftTarget",
      "name" : "XCFrameworkMaker",
      "path" : "Sources/XCFrameworkMaker",
      "product_dependencies" : [
        "ShellOut",
        "Arm64ToSim"
      ],
      "product_memberships" : [
        "XCFrameworkMaker",
        "make-xcframework"
      ],
      "sources" : [
        "Actions/AddArm64Simulator.swift",
        "Actions/CopyFramework.swift",
        "Actions/CopyPath.swift",
        "Actions/CreateDir.swift",
        "Actions/CreateTempDir.swift",
        "Actions/CreateXCFramework.swift",
        "Actions/DeletePath.swift",
        "Actions/GetArchs.swift",
        "Actions/LipoCreate.swift",
        "Actions/LipoExtract.swift",
        "Actions/LipoThin.swift",
        "Actions/Log.swift",
        "Actions/MakeXCFramework.swift",
        "Actions/RunShellCommand.swift",
        "Models/Arch.swift",
        "Models/LogLevel.swift",
        "Models/Path.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.4"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.