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 2bee2f3 commit 5a1ced6Copy full SHA for 5a1ced6
build.rs
@@ -281,8 +281,10 @@ fn emcc_version_code() -> Option<u64> {
281
Some(major * 10000 + minor * 100 + patch)
282
}
283
284
+/// Retrieve the VxWorks release version from the environment variable set by the VxWorks build
285
+/// environment, in `(minor, patch)` form. Currently the only major version supported by Rust
286
+/// is 7.
287
fn vxworks_version_code() -> Option<(u32, u32)> {
- // Retrieve the VxWorks release version from the environment variable set by the VxWorks build environment
288
let version = env::var("WIND_RELEASE_ID").ok()?;
289
290
let mut pieces = version.trim().split(['.']);
0 commit comments