-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Support per-stage RUSTFLAGS in rustbuild. #33609
Comments
Did rustbuild ever get support for this? This appears to also be breaking |
I'm going to unassign @alexcrichton from this; I think others should be able to implement this and as far as I know they don't have any particular concern with this specific bug. |
We support this via |
@Mark-Simulacrum I wonder if we should switch to |
That would make sense, I'll reopen to track that. |
Right now rustbuild invokes cargo which wants to rebuild the world if it sees a different
RUSTFLAGS
value, while my workflow involves changingRUSTFLAGS
just to test stage1+ with-Z orbit
.It would be nice to have passing
--stage1-rustflags "-Z orbit"
to the python script (or the environment variable `RUSTFLAGS1="-Z orbit") just work.Currently the Makefiles have something similar but it doesn't actually work for
compiletest
, justrustc
.The text was updated successfully, but these errors were encountered: