Skip to content

Commit a00d7e6

Browse files
devnexentgross35
authored andcommitted
attempt to fix #3641
(backport <#3647>) (cherry picked from commit 2e94ad3)
1 parent c00cc3b commit a00d7e6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libc-test/build.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3696,7 +3696,8 @@ fn test_linux(target: &str) {
36963696

36973697
cfg.skip_type(move |ty| {
36983698
// FIXME: very recent additions to musl, not yet released.
3699-
if musl && (ty == "Elf32_Relr" || ty == "Elf64_Relr") {
3699+
// also apparently some glibc versions
3700+
if ty == "Elf32_Relr" || ty == "Elf64_Relr" {
37003701
return true;
37013702
}
37023703
if sparc64 && (ty == "Elf32_Rela" || ty == "Elf64_Rela") {

0 commit comments

Comments
 (0)