| ... | ... | @@ -763,9 +763,8 @@ fn addWasiUpdateStep(b: *std.Build, version: [:0]const u8) !void { |
| 763 | 763 | .optimize = .ReleaseSmall, |
| 764 | 764 | .target = b.resolveTargetQuery(std.Target.Query.parse(.{ |
| 765 | 765 | .arch_os_abi = "wasm32-wasi", |
| 766 | | // * `extended_const` is not supported by the `wasm-opt` version in CI. |
| 767 | 766 | // * `nontrapping_bulk_memory_len0` is supported by `wasm2c`. |
| 768 | | .cpu_features = "baseline-extended_const+nontrapping_bulk_memory_len0", |
| 767 | .cpu_features = "baseline+nontrapping_bulk_memory_len0", |
| 769 | 768 | }) catch unreachable), |
| 770 | 769 | }); |
| 771 | 770 | |
| ... | ... | @@ -809,6 +808,7 @@ fn addWasiUpdateStep(b: *std.Build, version: [:0]const u8) !void { |
| 809 | 808 | "-Oz", |
| 810 | 809 | "--enable-bulk-memory", |
| 811 | 810 | "--enable-mutable-globals", |
| 811 | "--enable-extended-const", |
| 812 | 812 | "--enable-nontrapping-float-to-int", |
| 813 | 813 | "--enable-sign-ext", |
| 814 | 814 | }); |