From bd53e904d72763b13e6c6d29ef8b6d577f56f7a7 Mon Sep 17 00:00:00 2001 From: Etienne Cordonnier Date: Sat, 12 Apr 2025 19:46:32 +0200 Subject: [PATCH] enable feature_require_crate_cpp for musl I am not sure what the original issue was, but it seems to work: ``` cargo build --target=x86_64-unknown-linux-musl --features feat_os_unix_musl ... coreutils$ ./target/x86_64-unknown-linux-musl/debug/coreutils stdbuf -o L echo "foobar" foobar ``` --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 5ae51301f..0959e3d88 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -174,6 +174,7 @@ feat_os_unix_gnueabihf = [ feat_os_unix_musl = [ "feat_Tier1", # + "feat_require_crate_cpp", "feat_require_unix", "feat_require_unix_hostid", ]