mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 11:07:44 +00:00
Add 'windows_legacy' feature to allow build for older windows versions
This commit is contained in:
parent
55209c6490
commit
95809ae98e
2 changed files with 10 additions and 1 deletions
|
@ -39,6 +39,15 @@ unix = [
|
||||||
"generic"
|
"generic"
|
||||||
]
|
]
|
||||||
windows = ["generic"]
|
windows = ["generic"]
|
||||||
|
windows_legacy = [
|
||||||
|
"arch",
|
||||||
|
"nproc",
|
||||||
|
"sync",
|
||||||
|
"touch",
|
||||||
|
"whoami",
|
||||||
|
|
||||||
|
"redox_generic"
|
||||||
|
]
|
||||||
# Feature "fuchsia" contains the exclusive list of utilities
|
# Feature "fuchsia" contains the exclusive list of utilities
|
||||||
# that can be compiled and run on Fuchsia. Should be built
|
# that can be compiled and run on Fuchsia. Should be built
|
||||||
# with --no-default-features when selecting this feature.
|
# with --no-default-features when selecting this feature.
|
||||||
|
|
2
build.rs
2
build.rs
|
@ -16,7 +16,7 @@ pub fn main() {
|
||||||
if val == "1" && key.starts_with(feature_prefix) {
|
if val == "1" && key.starts_with(feature_prefix) {
|
||||||
let krate = key[feature_prefix.len()..].to_lowercase();
|
let krate = key[feature_prefix.len()..].to_lowercase();
|
||||||
match krate.as_ref() {
|
match krate.as_ref() {
|
||||||
"default" | "unix" | "redox" | "redox_generic" | "fuchsia" | "generic" | "windows"
|
"default" | "unix" | "redox" | "redox_generic" | "fuchsia" | "generic" | "windows" | "windows_legacy"
|
||||||
| "nightly" | "test_unimplemented" => continue,
|
| "nightly" | "test_unimplemented" => continue,
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue