You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 19, 2026. It is now read-only.
Container/Toolchain: Occurs when using the espressif/idf-rust:esp32c6_latest Docker image, which pulls the latest nightly.
Cause
This is an upstream regression caused by rust-lang/rust commit 7bf5fe7bf84f5b94e5970de18543abac0579209c. rust-lang/rust@7bf5fe7
The commit added the unix_kill_process_group feature to std::os::unix::process. Because espidf is categorized under the unix family, it attempts to compile this code, but the espidf libc does not define SIGKILL.
Bug description
Building
stdon the latest nightly fails for theespidftarget (e.g.,riscv32imac-esp-espidf) with the following error:Environment
Cause
This is an upstream regression caused by rust-lang/rust commit 7bf5fe7bf84f5b94e5970de18543abac0579209c.
rust-lang/rust@7bf5fe7
The commit added the unix_kill_process_group feature to std::os::unix::process. Because espidf is categorized under the unix family, it attempts to compile this code, but the espidf libc does not define SIGKILL.