Skip to content

Commit

Permalink
Merge pull request #63 from flba-eb/add_nto-iosock
Browse files Browse the repository at this point in the history
Add support for alternative network stack io-sock on QNX 7.1
  • Loading branch information
JohnTitor authored Feb 5, 2025
2 parents e54d472 + 2f68d85 commit d375f7f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1135,7 +1135,9 @@ fn default_cfg(target: &str) -> Vec<(String, Option<String>)> {
let env = match version {
"700" => "nto70",
"710" => "nto71",
_ => panic!("Unknown version"),
"710_iosock" => "nto71_iosock",
"800" => "nto80",
_ => panic!("Unknown version: {version}"),
};
("nto", "unix", env)
} else if target.contains("linux-ohos") {
Expand Down

0 comments on commit d375f7f

Please sign in to comment.