Skip to content

Commit 91646ce

Browse files
committed
improve target matching for Neutrino
Signed-off-by: onur-ozkan <[email protected]>
1 parent 82eec26 commit 91646ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2113,7 +2113,7 @@ impl Build {
21132113
// This assumes qcc/q++ as compiler, which is currently the only supported compiler for QNX.
21142114
// See for details: https://github.com/rust-lang/cc-rs/pull/1319
21152115
let arg = match target.arch {
2116-
"i586" => "-Vgcc_ntox86_cxx",
2116+
"i586" | "x86" => "-Vgcc_ntox86_cxx",
21172117
"aarch64" => "-Vgcc_ntoaarch64le_cxx",
21182118
"x86_64" => "-Vgcc_ntox86_64_cxx",
21192119
_ => {

0 commit comments

Comments
 (0)