-
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
Need more verbose output with x.py build #44305
Comments
I think the expected approach today is to use @alexcrichton Is there some flag we can pass to rustc to have 'verbose' step output? |
I've also tried with I've tried removing that, but then I get an error:
Full backtrace:
|
#43855 strikes again |
Same for
|
See also #38686 |
Retagging as a compiler feature request as ultimately rustbuild can't do much beyond threading options through to rustc here. |
I ran
All the linked issues have been closed. I'm going to close this as fixed. |
Running
./x.py build -vv
only outputs therustc
compilation command, which is insufficient.For example, it should direct rustc to provide more verbose output as well, e.g. the linking steps, and where object files are created from cpp source files, these compilation steps as well.
I've tried various incantations, such as
RUSTC_FLAGS="-Z verbose -Z print-link-args --verbose" RUSTC_VERBOSE=10 ./x.py build -vv --stage 0 src/librustc
but I'm not getting any further useful output.The text was updated successfully, but these errors were encountered: