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 a1af860 commit bb33e30Copy full SHA for bb33e30
src/lib.rs
@@ -3341,7 +3341,9 @@ impl Build {
3341
// Ref: https://www.qnx.com/developers/docs/8.0/com.qnx.doc.neutrino.utilities/topic/a/ar.html
3342
name = match target.arch {
3343
"i586" => format!("ntox86-{}", tool).into(),
3344
- "x86" | "aarch64" | "x86_64" => format!("nto{}-{}", target.arch, tool).into(),
+ "x86" | "aarch64" | "x86_64" => {
3345
+ format!("nto{}-{}", target.arch, tool).into()
3346
+ }
3347
_ => {
3348
return Err(Error::new(
3349
ErrorKind::InvalidTarget,
0 commit comments