File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
test/link/wasm/infer-features Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -36,11 +36,18 @@ pub fn build(b: *std.Build) void {
36
36
const check = lib .checkObject ();
37
37
check .checkInHeaders ();
38
38
check .checkExact ("name target_features" );
39
- check .checkExact ("features 7 " );
39
+ check .checkExact ("features 14 " );
40
40
check .checkExact ("+ atomics" );
41
41
check .checkExact ("+ bulk-memory" );
42
+ check .checkExact ("+ exception-handling" );
43
+ check .checkExact ("+ extended-const" );
44
+ check .checkExact ("+ half-precision" );
45
+ check .checkExact ("+ multimemory" );
46
+ check .checkExact ("+ multivalue" );
42
47
check .checkExact ("+ mutable-globals" );
43
48
check .checkExact ("+ nontrapping-fptoint" );
49
+ check .checkExact ("+ reference-types" );
50
+ check .checkExact ("+ relaxed-simd" );
44
51
check .checkExact ("+ sign-ext" );
45
52
check .checkExact ("+ simd128" );
46
53
check .checkExact ("+ tail-call" );
You can’t perform that action at this time.
0 commit comments