| ... | ... | @@ -12,6 +12,12 @@ git config core.abbrev 9 |
| 12 | 12 | |
| 13 | 13 | echo "building stage3-debug with zig version $($OLD_ZIG version)" |
| 14 | 14 | |
| 15 | # Override the cache directories so that we don't clobber with the release |
| 16 | # testing script which is running concurrently and in the same directory. |
| 17 | # Normally we want processes to cooperate, but in this case we want them isolated. |
| 18 | export ZIG_LOCAL_CACHE_DIR="$(pwd)/zig-cache-local-debug" |
| 19 | export ZIG_GLOBAL_CACHE_DIR="$(pwd)/zig-cache-global-debug" |
| 20 | |
| 15 | 21 | export CC="$OLD_ZIG cc -target $TARGET -mcpu=$MCPU" |
| 16 | 22 | export CXX="$OLD_ZIG c++ -target $TARGET -mcpu=$MCPU" |
| 17 | 23 | |