Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,9 @@ jobs:
- name: Build httpd without DHCP support
run:
cargo build --package httpd
- name: Build aarch64 debug profile
run:
cargo build -p hello_world --target aarch64-unknown-hermit
- name: Build aarch64 release profile
run:
cargo build -p hello_world --target aarch64-unknown-hermit --release
4 changes: 2 additions & 2 deletions hermit-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ fn build_hermit(src_dir: &Path, target_dir_opt: Option<&Path>) {
let mut cmd = Command::new("cargo");

let kernel_triple = match target_arch.as_str() {
"x86_64" => "x86_64-unknown-none-hermitkernel",
"aarch64" => "aarch64-unknown-hermit",
"x86_64" => "x86_64-unknown-none",
"aarch64" => "aarch64-unknown-none-softfloat",
_ => panic!("Unsupported target arch: {}", target_arch),
};

Expand Down