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 be989ac commit d7f80caCopy full SHA for d7f80ca
src/bootstrap/build/native.rs
@@ -114,7 +114,8 @@ pub fn compiler_rt(build: &Build, target: &str) {
114
let arch = target.split('-').next().unwrap();
115
let mode = if build.config.rust_optimize {"Release"} else {"Debug"};
116
let (dir, build_target, libname) = if target.contains("linux") ||
117
- target.contains("freebsd") {
+ target.contains("freebsd") ||
118
+ target.contains("netbsd") {
119
let os = if target.contains("android") {"-android"} else {""};
120
let arch = if arch.starts_with("arm") && target.contains("eabihf") {
121
"armhf"
0 commit comments