We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a392be5 commit 56a1d50Copy full SHA for 56a1d50
libc-test/build.rs
@@ -957,9 +957,6 @@ fn test_solarish(target: &str) {
957
// skip sighandler_t assignments
958
"SIG_DFL" | "SIG_ERR" | "SIG_IGN" => true,
959
960
- // Skip
961
- "SI_DETHREAD" | "TRAP_PERF" => true,
962
-
963
"DT_UNKNOWN" => true,
964
965
"_UTX_LINESIZE" | "_UTX_USERSIZE" | "_UTX_PADSIZE" | "_UTX_IDSIZE" | "_UTX_HOSTSIZE" => {
@@ -4055,6 +4052,9 @@ fn test_linux(target: &str) {
4055
4052
// FIXME: Not currently available in headers on ARM and musl.
4056
4053
"NETLINK_GET_STRICT_CHK" if arm => true,
4057
4054
+ // Skip as this signal codes and trap reasons need newer headers
+ "SI_DETHREAD" | "TRAP_PERF" => true,
+
4058
// kernel constants not available in uclibc 1.0.34
4059
| "EXTPROC"
4060
| "IPPROTO_BEETPH"
0 commit comments