Skip to content

Commit

Permalink
Add support for alternative network stack io-sock on QNX 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
flba-eb committed Dec 3, 2024
1 parent 8b45e12 commit 300bb1f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1135,7 +1135,8 @@ fn default_cfg(target: &str) -> Vec<(String, Option<String>)> {
let env = match version {
"700" => "nto70",
"710" => "nto71",
_ => panic!("Unknown version"),
"710_iosock" => "nto71_iosock",
_ => panic!("Unknown version: {version}"),
};
("nto", "unix", env)
} else if target.contains("linux-ohos") {
Expand Down

0 comments on commit 300bb1f

Please sign in to comment.