Skip to content

Commit 7de90e1

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 7de90e1

File tree

14 files changed

+9450
-53
lines changed

14 files changed

+9450
-53
lines changed

ctest/src/lib.rs

Lines changed: 2 additions & 0 deletions
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)