mirror of
https://github.com/laosb/SwiftTailwind.git
synced 2026-03-01 08:38:23 +00:00
fix: Add macOS arm64 'arm64-apple-macosx' triple
Support new Apple Silicon triple used by the Swift 6.3 toolchain.
This commit is contained in:
parent
c9cbf7f133
commit
6211adec8e
1 changed files with 2 additions and 0 deletions
|
|
@ -10,6 +10,8 @@ class ArtifactBundleBuilder {
|
||||||
BinaryConfiguration(binaryName: "tailwindcss-linux-x64", triple: "x86_64-unknown-linux-gnu"),
|
BinaryConfiguration(binaryName: "tailwindcss-linux-x64", triple: "x86_64-unknown-linux-gnu"),
|
||||||
BinaryConfiguration(binaryName: "tailwindcss-macos-x64", triple: "x86_64-apple-darwin"),
|
BinaryConfiguration(binaryName: "tailwindcss-macos-x64", triple: "x86_64-apple-darwin"),
|
||||||
BinaryConfiguration(binaryName: "tailwindcss-macos-arm64", triple: "aarch64-apple-darwin"),
|
BinaryConfiguration(binaryName: "tailwindcss-macos-arm64", triple: "aarch64-apple-darwin"),
|
||||||
|
// Since Swift 6.3 toolchain, the Apple Silicon triple changed from aarch64 to arm64.
|
||||||
|
BinaryConfiguration(binaryName: "tailwindcss-macos-arm64", triple: "arm64-apple-macosx"),
|
||||||
]
|
]
|
||||||
|
|
||||||
init(version: String, workDir: String, outputDir: String) {
|
init(version: String, workDir: String, outputDir: String) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue