Skip to content

Commit 752bb2c

Browse files
committed
attempt to fix #3641
1 parent a0f5b4b commit 752bb2c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libc-test/build.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -3509,7 +3509,8 @@ fn test_linux(target: &str) {
35093509

35103510
cfg.skip_type(move |ty| {
35113511
// FIXME: very recent additions to musl, not yet released.
3512-
if musl && (ty == "Elf32_Relr" || ty == "Elf64_Relr") {
3512+
// also apparently some glibc versions
3513+
if ty == "Elf32_Relr" || ty == "Elf64_Relr" {
35133514
return true;
35143515
}
35153516
if sparc64 && (ty == "Elf32_Rela" || ty == "Elf64_Rela") {

0 commit comments

Comments
 (0)