-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start patching for support linux arm64 as a host OS
* Fix isl pointed to deprecated url * Add precompiled dependencies for linux aarch64 * Add Linux ARM 64 enum (still incomplete)
- Loading branch information
Showing
11 changed files
with
26 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
kotlin-native/tools/toolchain_builder/build_toolchain.sh
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash | ||
|
||
set -eou pipefail | ||
set -eo pipefail | ||
|
||
TARGET=$1 | ||
VERSION=$2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,6 +65,7 @@ val jsShellVersion = "2024-05-07-09-13-07-mozilla-central" | |
val jsShellSuffix = when (currentOsType) { | ||
OsType(OsName.LINUX, OsArch.X86_32) -> "linux-i686" | ||
OsType(OsName.LINUX, OsArch.X86_64) -> "linux-x86_64" | ||
OsType(OsName.LINUX, OsArch.ARM64) -> "linux-aarch64" | ||
OsType(OsName.MAC, OsArch.X86_64), | ||
OsType(OsName.MAC, OsArch.ARM64) -> "mac" | ||
OsType(OsName.WINDOWS, OsArch.X86_32) -> "win32" | ||
|
@@ -80,6 +81,7 @@ val jsShell by configurations.creating { | |
val wasmEdgeVersion = libs.versions.wasmedge | ||
val wasmEdgeSuffix = when (currentOsType) { | ||
OsType(OsName.LINUX, OsArch.X86_64) -> "[email protected]" | ||
OsType(OsName.LINUX, OsArch.ARM64) -> "[email protected]" | ||
OsType(OsName.MAC, OsArch.X86_64) -> "[email protected]" | ||
OsType(OsName.MAC, OsArch.ARM64) -> "[email protected]" | ||
OsType(OsName.WINDOWS, OsArch.X86_32), | ||
|