Commit bf5e697
authored
Fix build-dev cache (#2280)
After updating our dependencies, running `cargo build-dev` always trigger the recompilation of a few dependencies as well as `kani-driver` and `kani-compiler`.
This seems to be caused by [this change](bytecodealliance/rustix#544) on `rustix` dependency.
The problem here is that we share the same build folder for our tools and our binaries. But they build with slightly different cargo arguments, and this package decided to make their build script very sensitive to changes to their environment
To overcome this, force `cargo build-dev` to use a different folder for the tools build.1 parent 6734785 commit bf5e697
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
0 commit comments