| ... | @@ -30,6 +30,7 @@ cd "$ZIGDIR" | ... | @@ -30,6 +30,7 @@ cd "$ZIGDIR" |
| 30 | echo "building stage3-debug with zig version $($OLD_ZIG version)" | 30 | echo "building stage3-debug with zig version $($OLD_ZIG version)" |
| 31 | | 31 | |
| 32 | "$OLD_ZIG" build \ | 32 | "$OLD_ZIG" build \ |
| | 33 | --prefix stage3 |
| 33 | --search-prefix "$DEPS_LOCAL" \ | 34 | --search-prefix "$DEPS_LOCAL" \ |
| 34 | --zig-lib-dir lib \ | 35 | --zig-lib-dir lib \ |
| 35 | -Denable-stage1 \ | 36 | -Denable-stage1 \ |
| ... | @@ -39,14 +40,14 @@ echo "building stage3-debug with zig version $($OLD_ZIG version)" | ... | @@ -39,14 +40,14 @@ echo "building stage3-debug with zig version $($OLD_ZIG version)" |
| 39 | -Dtarget="$TARGET" | 40 | -Dtarget="$TARGET" |
| 40 | | 41 | |
| 41 | echo "Looking for non-conforming code formatting..." | 42 | echo "Looking for non-conforming code formatting..." |
| 42 | zig-out/bin/zig fmt --check . \ | 43 | stage3/bin/zig fmt --check . \ |
| 43 | --exclude test/cases/ \ | 44 | --exclude test/cases/ \ |
| 44 | --exclude build | 45 | --exclude build |
| 45 | | 46 | |
| 46 | # simultaneously test building self-hosted without LLVM and with 32-bit arm | 47 | # simultaneously test building self-hosted without LLVM and with 32-bit arm |
| 47 | zig-out/bin/zig build -Dtarget=arm-linux-musleabihf | 48 | stage3/bin/zig build -Dtarget=arm-linux-musleabihf |
| 48 | | 49 | |
| 49 | zig-out/bin/zig build test docs \ | 50 | stage3/bin/zig build test docs \ |
| 50 | -fqemu \ | 51 | -fqemu \ |
| 51 | -fwasmtime \ | 52 | -fwasmtime \ |
| 52 | -Dstatic-llvm \ | 53 | -Dstatic-llvm \ |