Skip to content

Commit 2e94ad3

Browse files
devnexenJohnTitor
authored andcommitted
attempt to fix #3641
1 parent 71c79d5 commit 2e94ad3

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
@@ -3512,7 +3512,8 @@ fn test_linux(target: &str) {
35123512

35133513
cfg.skip_type(move |ty| {
35143514
// FIXME: very recent additions to musl, not yet released.
3515-
if musl && (ty == "Elf32_Relr" || ty == "Elf64_Relr") {
3515+
// also apparently some glibc versions
3516+
if ty == "Elf32_Relr" || ty == "Elf64_Relr" {
35163517
return true;
35173518
}
35183519
if sparc64 && (ty == "Elf32_Rela" || ty == "Elf64_Rela") {

0 commit comments

Comments
 (0)