We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71c79d5 commit 2e94ad3Copy full SHA for 2e94ad3
libc-test/build.rs
@@ -3512,7 +3512,8 @@ fn test_linux(target: &str) {
3512
3513
cfg.skip_type(move |ty| {
3514
// FIXME: very recent additions to musl, not yet released.
3515
- if musl && (ty == "Elf32_Relr" || ty == "Elf64_Relr") {
+ // also apparently some glibc versions
3516
+ if ty == "Elf32_Relr" || ty == "Elf64_Relr" {
3517
return true;
3518
}
3519
if sparc64 && (ty == "Elf32_Rela" || ty == "Elf64_Rela") {
0 commit comments