You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After doing work on LLVM, the build dependencies get confused and everytime Rust's make is run, it also runs make on LLVM, even when there's nothing to do.
This is probably because our rules for building LLVM are not very exact - we use llvm-config as our target, which is just a script so probably doesn't always get updated when building LLVM. Running touch on llvm-config would probably fix this.
The text was updated successfully, but these errors were encountered:
After doing work on LLVM, the build dependencies get confused and everytime Rust's make is run, it also runs make on LLVM, even when there's nothing to do.
This is probably because our rules for building LLVM are not very exact - we use llvm-config as our target, which is just a script so probably doesn't always get updated when building LLVM. Running touch on llvm-config would probably fix this.
The text was updated successfully, but these errors were encountered: