Hi Arnd, On Wed, Aug 17, 2022 at 4:40 PM Arnd Bergmann <arnd@xxxxxxxx> wrote: > > Hi Miguel, > > I tried enabling rust support in the gcc builds I provide at > https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/arm64/12.1.0/ Thanks for giving it a go! > to make this more accessible, but it appears that the command line > options here are not portable: > > /home/arnd/cross/x86_64/gcc-12.1.0+rust-nolibc/x86_64-linux/bin/x86_64-linux-gccrs So you mean with GCC Rust, right? (i.e. we have "GCC builds" working, via compiling the Rust side with LLVM and linking with the GCC C side, but it is not intended for production or to be supported, even if we cover it in our CI, test it boots and loads modules etc.). Indeed, `gccrs` does not support `rustc` flags yet. I am not sure if the GCC Rust team will eventually provide a driver for those like clang does for e.g. `cl` -- I would hope they do, since many projects would benefit from it, but maybe they plan to start simply by modifying Cargo to call them as they need instead. If they don't support it, we will have to map the flags on our side -- it should not be a big problem. However, see below... > I guess nobody has tried this so far. Would you think that fixing this is only > a matter for fixing the build system to pass the correct flags depending on the > compiler, or is this broken in a more fundamental way? If you meant GCC Rust, then it is a bit too early for the compiler. As far as I now, they are working on compiling the `core` crate and supporting more stable language features. They are also researching the integration of the borrow checker, though we wouldn't need that for "only" compiling the kernel. Now, if they decided to focus on supporting Rust for Linux early on (which would be great), they would still need to work on the delta between what what they target now and what we use (which includes both stable and some unstable features), plus I assume infrastructure bits like the platform (target spec) support, the flags / `rustc` driver (though I would be happy to do as much as possible on our side to help), etc. (We privately talked about possible timelines for all that if they were to focus on Rust for Linux etc., but I let them comment or not on that... Cc'ing them! :) Cheers, Miguel