File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -2846,6 +2846,21 @@ fn test_linux(target: &str) {
2846
2846
| "SW_CNT"
2847
2847
if mips || ppc64 || riscv64 || sparc64 => true ,
2848
2848
2849
+ // kernel constants not available in uclibc 1.0.34
2850
+ | "IPPROTO_BEETPH"
2851
+ | "IPPROTO_MPLS"
2852
+ | "PTRACE_O_SUSPEND_SECCOMP"
2853
+ | "IPV6_HDRINCL"
2854
+ | "IPV6_PMTUDISC_INTERFACE"
2855
+ | "IPV6_PMTUDISC_OMIT"
2856
+ | "CLONE_NEWCGROUP"
2857
+ | "ADDR_NO_RANDOMIZE"
2858
+ | "ADDR_COMPAT_LAYOUT"
2859
+ | "READ_IMPLIES_EXEC"
2860
+ | "ADDR_LIMIT_3GB"
2861
+ | "PTRACE_O_EXITKILL"
2862
+ | "PTRACE_O_SUSPEND_SECCOM" if uclibc => true ,
2863
+
2849
2864
_ => false ,
2850
2865
}
2851
2866
} ) ;
@@ -2923,6 +2938,9 @@ fn test_linux(target: &str) {
2923
2938
2924
2939
"reallocarray" if musl => true ,
2925
2940
2941
+ // Not defined in uclibc as of 1.0.34
2942
+ "gettid" if uclibc => true ,
2943
+
2926
2944
_ => false ,
2927
2945
}
2928
2946
} ) ;
You can’t perform that action at this time.
0 commit comments