Hacker News new | ask | show | jobs
by tdbgamer 3025 days ago
There is tons of C software out there that depends on libc that is never going to be rewritten in Rust. Also think about interpreted languages like Python, Ruby, etc. I imagine they all depend on libc. The only real way for Redox to gain adoption is through cross platform compatibility.
1 comments

Does the rust compiler depend on libc?
Presumably. Rust programs certainly do.
The compiler does. Rust programs don't inherently depend on libc; it's libstd that does. Build without the standard library, no libc required.