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