diff options
| author | NN708 <[email protected]> | 2025-12-22 17:45:30 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-12-22 03:45:30 -0600 |
| commit | 6339f3987136b0be0c3708dff78ae74863158dea (patch) | |
| tree | 6529073148fa7eb32f964df59c9cee4d0de4b3be /packages/tauri/scripts | |
| parent | 68b09b30a1839df4772a140da843e19dc7f30db4 (diff) | |
| download | opencode-6339f3987136b0be0c3708dff78ae74863158dea.tar.gz opencode-6339f3987136b0be0c3708dff78ae74863158dea.zip | |
feat(desktop): arm64 build for linux (#5935)
Diffstat (limited to 'packages/tauri/scripts')
| -rw-r--r-- | packages/tauri/scripts/utils.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/tauri/scripts/utils.ts b/packages/tauri/scripts/utils.ts index 3e74346c8..885d0afce 100644 --- a/packages/tauri/scripts/utils.ts +++ b/packages/tauri/scripts/utils.ts @@ -21,6 +21,11 @@ export const SIDECAR_BINARIES: Array<{ rustTarget: string; ocBinary: string; ass ocBinary: "opencode-linux-x64", assetExt: "tar.gz", }, + { + rustTarget: "aarch64-unknown-linux-gnu", + ocBinary: "opencode-linux-arm64", + assetExt: "tar.gz", + }, ] export const RUST_TARGET = Bun.env.RUST_TARGET |
