-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Fix makefile rules for generated llvmdeps.rs file #29397
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
Conversation
Previously the file was not regenrated upon modification of src/rustllvm or others. Now it will be rebuilt if `src/llvm` or `src/rustllvm` is touched. Also added *.rs rule to 'clean' rule so that it is removed upon 'make clean'.
r? @brson (rust_highfive has picked a reviewer for you, use r? to override) |
Why should it be regenerated when |
This script doesn't actually look at the LLVM source, so I don't think adding those targets as dependencies would fix the issue here, but the fix to |
@bors r+ rollup |
📌 Commit 9c1dad7 has been approved by |
Previously the file was not regenrated upon modification of `src/rustllvm` or others. Now it will be rebuilt if `src/llvm` or `src/rustllvm` is touched. Also added *.rs rule to 'clean' rule so that it is removed upon 'make clean'. Fixes rust-lang#28614.
Previously the file was not regenrated upon modification of `src/rustllvm` or others. Now it will be rebuilt if `src/llvm` or `src/rustllvm` is touched. Also added *.rs rule to 'clean' rule so that it is removed upon 'make clean'. Fixes rust-lang#28614.
Previously the file was not regenrated upon modification of
src/rustllvm
or others.Now it will be rebuilt if
src/llvm
orsrc/rustllvm
is touched.Also added *.rs rule to 'clean' rule so that it is removed upon 'make
clean'.
Fixes #28614.