We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A quick note of something I observed before I head out:
Modifying src/librustc/middle/typeck/check/regionmanip.rs, then running make in my build dir, make did not see that it had to do a rebuild.
src/librustc/middle/typeck/check/regionmanip.rs
make
I had to touch src/librustc/middle/typeck/mod.rs before make would proceed to rebuild rustc.
src/librustc/middle/typeck/mod.rs
This is probably just a matter of replacing one of the series of *.rs */*.rs */*/*.rs ... regexp with an extra entry or two on the end.
*.rs */*.rs */*/*.rs ...
The text was updated successfully, but these errors were encountered:
The relevant lines in the makefile are here: https://github.com/mozilla/rust/blob/master/mk/crates.mk#L108-L109
Sorry, something went wrong.
We have a recursive wildcard function: mk/reconfig.mk#L11
4709364
Auto merge of rust-lang#13118 - lnicola:cleanup, r=lnicola
6eb7689
minor: Remove unused UpdatesChannel type
No branches or pull requests
A quick note of something I observed before I head out:
Modifying
src/librustc/middle/typeck/check/regionmanip.rs
, then runningmake
in my build dir,make
did not see that it had to do a rebuild.I had to touch
src/librustc/middle/typeck/mod.rs
beforemake
would proceed to rebuild rustc.This is probably just a matter of replacing one of the series of
*.rs */*.rs */*/*.rs ...
regexp with an extra entry or two on the end.The text was updated successfully, but these errors were encountered: