-
Notifications
You must be signed in to change notification settings - Fork 692
Add support for LoongArch64 #2023
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ passthrough = [ | |
"RUSTFLAGS", | ||
"RUST_TEST_THREADS" | ||
] | ||
[target.loongarch64-unknown-linux-gnu] | ||
image = "ghcr.io/loongarchlinux/archlinux:latest" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like Loongarch has been supported by cross, is this custom image still needed? |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,7 @@ mod consts { | |
target_arch = "s390x", | ||
target_arch = "x86_64", | ||
target_arch = "aarch64", | ||
target_arch = "loongarch64", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you guys please check what are currently supported and what are not? And, if there is still a lot of work to do, and you guys don't mind, a tracking issue would be appreciated:) |
||
target_arch = "riscv32", | ||
target_arch = "riscv64" | ||
))] | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add this here, Nix has switched to GitHub action for most CI checks:
nix/.github/workflows/ci.yml
Line 94 in 50e4283