diff options
author | 2023-02-23 23:57:19 -0800 | |
---|---|---|
committer | 2023-02-23 23:57:19 -0800 | |
commit | 3f04f8d0a653cf5decef2225c2044742b382718a (patch) | |
tree | 91eb6500834e3157ecb9ab208101aa368a1191c8 /bench | |
parent | b5bdde28ed34070cbb1d34d13f414f4c513ee40d (diff) | |
download | bun-3f04f8d0a653cf5decef2225c2044742b382718a.tar.gz bun-3f04f8d0a653cf5decef2225c2044742b382718a.tar.zst bun-3f04f8d0a653cf5decef2225c2044742b382718a.zip |
Upgrade Zig (#2151)
* fixup
* Upgrade Zig
* Remove bad assertion
* strings
* bump
* mode -> optimize
* optimize
* Linux build
* Update bindgen.zig
Diffstat (limited to 'bench')
-rw-r--r-- | bench/hot-module-reloading/css-stress-test/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/hot-module-reloading/css-stress-test/Makefile b/bench/hot-module-reloading/css-stress-test/Makefile index cc24641b9..cab212e81 100644 --- a/bench/hot-module-reloading/css-stress-test/Makefile +++ b/bench/hot-module-reloading/css-stress-test/Makefile @@ -29,7 +29,7 @@ loop: -e 'if windows is not {} then perform action "AXRaise" of item 1 of windows' \ -e 'end tell' sleep 0.5 - cd src; zig run -Drelease-fast ../color-looper.zig -- ./colors.css:0 $(SLEEP_INTERVAL) + cd src; zig run -Doptimize=ReleaseFast ../color-looper.zig -- ./colors.css:0 $(SLEEP_INTERVAL) cp src/colors.css.blob $(PROJECT)/colors.css.blob loop-emotion: @@ -40,7 +40,7 @@ loop-emotion: -e 'if windows is not {} then perform action "AXRaise" of item 1 of windows' \ -e 'end tell' sleep 0.5 - cd src; zig run -Drelease-fast ../color-looper.emotion.zig -- ./css-in-js-styles.tsx:0 $(SLEEP_INTERVAL) + cd src; zig run -Doptimize=ReleaseFast ../color-looper.emotion.zig -- ./css-in-js-styles.tsx:0 $(SLEEP_INTERVAL) cp src/css-in-js-styles.tsx.blob $(PROJECT)/css-in-js-styles.blob process_video: |