Rust to C compiler – 95.9% test pass rate, odd platforms
21–30 of 264 posts
Re: Rust to C compiler – 95.9% test pass rate, odd platforms
#22I'm not convinced that it’s worth spending any time supporting most proprietary systems. Maybe not even Windows, but especially the really expensive ones.
You shouldn't spend your own effort; you should make it clear that you're open to users of such systems contributing. That's how GCC became so dominant - there were people already using all sorts of Unixen and they wanted a compiler, so they made it work.
Re: Rust to C compiler – 95.9% test pass rate, odd platforms
#23I'm not convinced that it’s worth spending any time supporting most proprietary systems. Maybe not even Windows, but especially the really expensive ones.
You shouldn't spend your own effort; you should make it clear that you're open to users of such systems contributing. That's how GCC became so dominant - there were people already using all sorts of Unixen and they wanted a compiler, so they made it work.
Re: Rust to C compiler – 95.9% test pass rate, odd platforms
#24Very cool. C to Rust would be fantastic.
Re: Rust to C compiler – 95.9% test pass rate, odd platforms
#25How is this not dangerous? How can one be assured that all of the compile-time safety features of the Rust compiler are still in effect? Handwaving does not help.
Re: Rust to C compiler – 95.9% test pass rate, odd platforms
#26I'm not convinced that it’s worth spending any time supporting most proprietary systems. Maybe not even Windows, but especially the really expensive ones.
You shouldn't spend your own effort; you should make it clear that you're open to users of such systems contributing. That's how GCC became so dominant - there were people already using all sorts of Unixen and they wanted a compiler, so they made it work.
In practice you can't really draw a line between those two things.
I don't know the end result, but I remember a discussion of how implementing parts of Git in Rust would be a problem because NonStop, a currently supported platform, has no Rust support. Of course the sane response would be "screw NonStop then", but having accepted contributions to make NonStop a supported platform that isn't an easy path to take.
Re: Rust to C compiler – 95.9% test pass rate, odd platforms
#27How is this not dangerous? How can one be assured that all of the compile-time safety features of the Rust compiler are still in effect? Handwaving does not help.
How does the rust compiler assure that when compiling to machine code? Machine code is less safe than C after all.
Re: Rust to C compiler – 95.9% test pass rate, odd platforms
#28How is this not dangerous? How can one be assured that all of the compile-time safety features of the Rust compiler are still in effect? Handwaving does not help.