Skip to content

Commit

Permalink
attempt to fix #3641
Browse files Browse the repository at this point in the history
(backport <#3647>)
(cherry picked from commit 2e94ad3)
  • Loading branch information
devnexen authored and tgross35 committed Nov 17, 2024
1 parent c00cc3b commit a00d7e6
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 @@ -3696,7 +3696,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 a00d7e6

Please sign in to comment.