| ... | @@ -31,7 +31,7 @@ echo "building stage3-debug with zig version $($OLD_ZIG version)" | ... | @@ -31,7 +31,7 @@ echo "building stage3-debug with zig version $($OLD_ZIG version)" |
| 31 | | 31 | |
| 32 | "$OLD_ZIG" build \ | 32 | "$OLD_ZIG" build \ |
| 33 | --search-prefix "$DEPS_LOCAL" \ | 33 | --search-prefix "$DEPS_LOCAL" \ |
| 34 | --zig-lib-dir "$(pwd)/../lib" \ | 34 | --zig-lib-dir lib \ |
| 35 | -Denable-stage1 \ | 35 | -Denable-stage1 \ |
| 36 | -Dstatic-llvm \ | 36 | -Dstatic-llvm \ |
| 37 | -Drelease \ | 37 | -Drelease \ |
| ... | @@ -39,9 +39,9 @@ echo "building stage3-debug with zig version $($OLD_ZIG version)" | ... | @@ -39,9 +39,9 @@ echo "building stage3-debug with zig version $($OLD_ZIG version)" |
| 39 | -Dtarget="$TARGET" | 39 | -Dtarget="$TARGET" |
| 40 | | 40 | |
| 41 | echo "Looking for non-conforming code formatting..." | 41 | echo "Looking for non-conforming code formatting..." |
| 42 | zig-out/bin/zig fmt --check .. \ | 42 | zig-out/bin/zig fmt --check . \ |
| 43 | --exclude ../test/cases/ \ | 43 | --exclude test/cases/ \ |
| 44 | --exclude ../build | 44 | --exclude build |
| 45 | | 45 | |
| 46 | # simultaneously test building self-hosted without LLVM and with 32-bit arm | 46 | # simultaneously test building self-hosted without LLVM and with 32-bit arm |
| 47 | zig-out/bin/zig build -Dtarget=arm-linux-musleabihf | 47 | zig-out/bin/zig build -Dtarget=arm-linux-musleabihf |
| ... | @@ -52,4 +52,4 @@ zig-out/bin/zig build test docs \ | ... | @@ -52,4 +52,4 @@ zig-out/bin/zig build test docs \ |
| 52 | -Dstatic-llvm \ | 52 | -Dstatic-llvm \ |
| 53 | -Dtarget=native-native-musl \ | 53 | -Dtarget=native-native-musl \ |
| 54 | --search-prefix "$DEPS_LOCAL" \ | 54 | --search-prefix "$DEPS_LOCAL" \ |
| 55 | --zig-lib-dir "$(pwd)/../lib" | 55 | --zig-lib-dir lib |