Skip to content

Commit f452341

Browse files
committed
Separate L4Re code, add aarch64 and enable tests
The L4Re code was previously attached to the Linux code which was not correct in many ways. This commit separates the L4Re code and enables the libc-tests and includes the fixes for the failing tests. Aarch64 is added as a second supported architecture (more to come).
1 parent 30f03b2 commit f452341

File tree

13 files changed

+9448
-51
lines changed

13 files changed

+9448
-51
lines changed

Diff for: ctest/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1070,6 +1070,8 @@ fn default_cfg(target: &str) -> Vec<(String, Option<String>)> {
10701070
("hurd", "unix", "gnu")
10711071
} else if target.contains("cygwin") {
10721072
("cygwin", "unix", "")
1073+
} else if target.contains("l4re-uclibc") {
1074+
("l4re", "unix", "uclibc")
10731075
} else {
10741076
panic!("unknown os/family: {}", target)
10751077
};

0 commit comments

Comments
 (0)