Compiling Rust with GCC: an update
Compiling Rust with GCC: an update
Posted Sep 12, 2022 14:37 UTC (Mon) by mathstuf (subscriber, #69389)In reply to: Compiling Rust with GCC: an update by moltonel
Parent article: Compiling Rust with GCC: an update
> I don't want a scenario where I declare an MSRV of 1.49 but unknowingly use a 1.50 feature.
You do have CI set up for your MSRV, right? If you have an MSRV but only test/develop with stable, this is already a problem.
> Or a gccrs that announces 1.60 compatibility but ignores some "minor" 1.59 feature.
I think the gcc-rs developers are aware of such things and are unlikely to declare "supports Rust 1.X" without supporting every (compiler feature) that X implies. Or at least as far as the rustc test suite of 1.X is able to diagnose.
