| ... | ... | @@ -48,7 +48,7 @@ cd $WORKSPACE |
| 48 | 48 | $ZIG fmt --check . |
| 49 | 49 | |
| 50 | 50 | # Build stage2 standalone so that we can test stage2 against stage2 compiler-rt. |
| 51 | | $ZIG build -p stage2 -Dstatic-llvm -Duse-zig-libcxx |
| 51 | $ZIG build -p stage2 -Denable-llvm -Duse-zig-libcxx |
| 52 | 52 | |
| 53 | 53 | stage2/bin/zig test test/behavior.zig -I test -fLLVM |
| 54 | 54 | stage2/bin/zig test test/behavior.zig -I test |
| ... | ... | @@ -91,13 +91,13 @@ $ZIG test lib/std/std.zig \ |
| 91 | 91 | tidy --drop-empty-elements no -qe zig-cache/langref.html |
| 92 | 92 | |
| 93 | 93 | # Build release zig. |
| 94 | | $ZIG build |
| 95 | | --prefix "RELEASE_STAGING" \ |
| 94 | $ZIG build \ |
| 95 | --prefix "$RELEASE_STAGING" \ |
| 96 | 96 | --search-prefix "$DEPS_LOCAL" \ |
| 97 | | -Dstatic-llvm \ |
| 97 | -Denable-llvm \ |
| 98 | -Duse-zig-libcxx \ |
| 98 | 99 | -Drelease \ |
| 99 | 100 | -Dstrip \ |
| 100 | | -Duse-zig-libcxx \ |
| 101 | 101 | -Dtarget="$TARGET" \ |
| 102 | 102 | -Dstage1 |
| 103 | 103 | |