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 committed Apr 2, 2024
1 parent a0f5b4b commit 752bb2c
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 @@ -3509,7 +3509,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 752bb2c

Please sign in to comment.