We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2047a0d commit 847d1ffCopy full SHA for 847d1ff
src/bootstrap/native.rs
@@ -439,6 +439,11 @@ impl Step for Openssl {
439
if target == "sparc64-unknown-netbsd" {
440
// Need -m64 to get assembly generated correctly for sparc64.
441
configure.arg("-m64");
442
+ if build.build.contains("netbsd") {
443
+ // Disable sparc64 asm on NetBSD builders, it uses
444
+ // m4(1)'s -B flag, which NetBSD m4 does not support.
445
+ configure.arg("no-asm");
446
+ }
447
}
448
// Make PIE binaries
449
// Non-PIE linker support was removed in Lollipop
0 commit comments