Hacker News new | past | comments | ask | show | jobs | submit login
An Update on Gccrs Development (lwn.net)
29 points by signa11 3 hours ago | hide | past | favorite | 10 comments





I think the “but why?” comments are on point. The reason for standardization in C/C++ (proprietary compilers) does not exist for rust. If you’re worried about breakage across compiler releases, then peg the compiler version. Modern tooling doesn’t gets the problems C/C++ standards and multiple implementations solve.

I see not just zero but actual negative utility to a second rustic implementation.


In my opinion at least, having a way to bootstrap rustc and the rust ecosystem is quite nice, as more and more projects start using the language.

And having multiple bootstrapping methods just makes it nicer. Helps with efforts like those of GNU Guix and other similar projects[0] that want to be able to have proper provenance for packages. Could help mitigate certain classes of supply chain attacks. (Even if not eliminate them completely!)

[0]: <https://bootstrappable.org/>


Most kernels are compiled with GCC right? Being able to use LLVM is a recent in the grand scheme of things.

I suspect being able to use GCC might help rust adoption in the kernel because it means people don’t have to use a second to compiler.


I would have no problem if it was a compiler for a kernel-specific variant or subset of the rust language, and only used for that project. That actually sounds like a good way of moving forward.

But they’re talking about making a second implantation for the purpose of quirks documentation and standardization. Rust doesn’t need that.


If the only win was being able to build a recent rustc on a new architecture without having to build 50 versions it’s still positive.

This isn’t the best way towards doing that though. Either use a rust -> C transpiler, or a llvm -> C compiler. Both of those projects already exist btw.

> the trademark rules around the language prevent it from being called a Rust compiler

Maybe they can call it a Crab compiler, see also:

https://news.ycombinator.com/item?id=36122270 - Rust has been forked to the Crab Language (2023-05-30)


To the "but why" comments, there are some legitimate questions about backends for LLVM - what targets does gcc support that it is easier to write a frontend for a complex language like Rust than add a backend for the desired targets?

I can think of some plausible reasons, like:

- The backends were contributed by people that have no interest in writing another backend in a different compiler framework or are retired/dead/not paid to do it anymore and no one knows the intracies anymore

- Implementing a backend for LLVM is actually harder than writing a new frontend for GCC due to the instability of LLVM IR

But I'm interested what others think. It seems like the industry could burn the candle from both ends, as it were.


My money is on that last one. Don't GCC frontends usually come before a new LLVM backend?

In my personal experience, writing a compiler backend is hard regardless of whether you pick GCC or LLVM.



Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: