Skip to content

Commit

Permalink
attempt to fix rust-lang#3641
Browse files Browse the repository at this point in the history
  • Loading branch information
devnexen authored and JohnTitor committed Apr 16, 2024
1 parent 71c79d5 commit 2e94ad3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libc-test/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3512,7 +3512,8 @@ fn test_linux(target: &str) {

cfg.skip_type(move |ty| {
// FIXME: very recent additions to musl, not yet released.
if musl && (ty == "Elf32_Relr" || ty == "Elf64_Relr") {
// also apparently some glibc versions
if ty == "Elf32_Relr" || ty == "Elf64_Relr" {
return true;
}
if sparc64 && (ty == "Elf32_Rela" || ty == "Elf64_Rela") {
Expand Down

0 comments on commit 2e94ad3

Please sign in to comment.