update Package.swift for onnxruntime 1.24.1

This commit is contained in:
edgchen1
2026-02-06 09:47:12 -08:00
parent 8596bfe7a4
commit a889626993
+4 -5
View File
@@ -21,8 +21,8 @@ import class Foundation.ProcessInfo
let package = Package(
name: "onnxruntime",
platforms: [.iOS(.v13),
.macOS(.v11)],
platforms: [.iOS(.v15),
.macOS(.v14)],
products: [
.library(name: "onnxruntime",
type: .static,
@@ -86,7 +86,6 @@ if let pod_archive_path = ProcessInfo.processInfo.environment["ORT_POD_LOCAL_PAT
// See https://onnxruntime.ai/docs/build/custom.html#ios
// Example command:
// python3 tools/ci_build/github/apple/build_and_assemble_apple_pods.py \
// --variant Full \
// --build-settings-file tools/ci_build/github/apple/default_full_apple_framework_build_settings.json
//
// This should produce the pod archive in build/apple_pod_staging, and ORT_POD_LOCAL_PATH can be set to
@@ -98,9 +97,9 @@ if let pod_archive_path = ProcessInfo.processInfo.environment["ORT_POD_LOCAL_PAT
// ORT release
package.targets.append(
Target.binaryTarget(name: "onnxruntime",
url: "https://download.onnxruntime.ai/pod-archive-onnxruntime-c-1.23.0.zip",
url: "https://download.onnxruntime.ai/pod-archive-onnxruntime-c-1.24.1.zip",
// SHA256 checksum
checksum: "756a78e0168f29840bc614b43aeb03e63673f44022e0221d21698a2c8ed747ef")
checksum: "dab5e98ceba017cfcb74d4a03cc3ab3f0069ede02bc9334ee81ebee310e6e639")
)
}