-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
infra: show RUSTFLAGS as well #5867
Conversation
It should make it easier to see where all the rustc flags come from. RUSTFLAGS along with `cargo fuzz build --verbose` should help to track down weird issues like google#5865 (comment) It's a follow-up to ecf3d38
Trying to figure out where I lost my backtraces, I noticed that in 4f7cf1b Without those variables it's failing to compile in the base builder image:
Apparently, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
It should help to figure out how libFuzzer is built and linked against, which in turn should be useful in scenarios like google/oss-fuzz#5867 (comment)
It should help to figure out how libFuzzer is built and linked against, which in turn should be useful in scenarios like google/oss-fuzz#5867 (comment)
It should help to figure out how libFuzzer is built and linked against, which in turn should be useful in scenarios like google/oss-fuzz#5867 (comment)
It should make it easier to see where all the rustc flags
come from. RUSTFLAGS along with
cargo fuzz build --verbose
shouldhelp to track down weird issues like #5865 (comment)
It's a follow-up to ecf3d38