-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compiler command line customization #2112
Comments
@alexcrichton and I discussed a potential scheme:
|
A downside here is that the complex rules about when to apply |
I'd like to tackle this this week. |
I'm having second thoughts about 'RUSTFLAGS applies applies to normal builds, not buildscripts and plugins'. I feel like this is going to be non-intuitive behavior. An alternative might be - when host != target, error when RUSTFLAGS is set. Thus RUSTFLAGS works in common cases where devs are just hacking at the command line. |
Why even have that host!=target error? Just let people shoot their foot already. :) On the distro side, we wouldn't be setting the environment everywhere, just within packaging scripts. This can be smart enough to set On the lone wolf developer side, a broad I would expect Cargo to use all that apply, from generic |
@brson I could envision a use case of using Cargo to cross-compile for ARM boards and wanting to test out various codegen options such as the SIMD options, and that use case would at least be easier if RUSTFLAGS "just worked". In general I feel that using RUSTFLAGS primarily means "use these flags in the output artifacts" and the fact that a bunch of other Rust code is compiled and run along the way could largely just be an implementation detail. |
An alternate proposal: Support just RUSTFLAGS, and only for target kinds. This covers the common use cases, including debian's I think, assuming people don't need to customize build scripts and plugins. Since cargo only builds one target per invocation you can change RUSTFLAGS between invocations if you are building multiple targets. Avoids settling on the non-standard and weird RUSTFLAGS-$target variables. In the future if it becomes important to support host kinds we add RUSTFLAGS_HOST. |
Sounds good to me |
There needs to be a way to specify target features that propagate to dependencies. For instance, the simd crate currently gates functionality with |
@ruud-v-a the intention of We haven't quite figure out a story for what that means yet, though. |
This passes RUSTFLAGS to rustc builds for the target architecture. We don't want to pass the RUSTFLAGS args to multiple architectures because they may contain architecture-specific flags. Ideally, the scheme we would use would treat plugins and build scripts - which may not be for the target architecture - consistently. Unfortunately it's quite difficult in the current Cargo architecture to seperately identify build scripts, plugins and their dependencies from code used by the target. So the scheme here is very simple: 1) If --target is not specified, RUSTFLAGS applies to all builds. 2) If --target is specified, RUSTFLAGS only applies to builds with the Kind::Target target kind, which indicates build units derived from the requested --target. Closes rust-lang#2112
Apply RUSTFLAGS arguments to rustc builds Cargo will use RUSTFLAGS for building everything that is not a build script or plugin. It does not apply to these targets because they may be for a different platform that 'normal' builds. Closes #2112
I wrote down some thoughts on how to handle the case of required target features on the internals forum. |
As with the Rust build itself, when distros build and package binaries of Cargo applications, they want to be able to customize all command lines to all compilers.
In the Cargo case this means at least customizing the rustc command line; it's not clear whether Cargo itself needs to provide facilities for customizing CFLAGS, etc. or if that's the responsibility of build scripts.
This requirement seems to be at odds with design goals of the Cargo developers. Design work is needed.
re https://internals.rust-lang.org/t/perfecting-rust-packaging-the-plan/2767
The text was updated successfully, but these errors were encountered: