We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c46015 commit fa8b209Copy full SHA for fa8b209
.github/workflows/ci.yml
@@ -101,4 +101,5 @@ jobs:
101
- name: Run NEAR smoketest
102
if: matrix.os != 'windows-latest'
103
run: |
104
+ npm run stdlib clean
105
npm run cli test
compiler/src/compile.re
@@ -276,7 +276,13 @@ let compile_wasi_polyfill = () => {
276
cstate_filename: Some(file),
277
cstate_outfile: Some(default_output_filename(file)),
278
};
279
- ignore(compile_resume(~hook=stop_after_object_file_emitted, cstate));
+ ignore(
280
+ compile_resume(
281
+ ~is_root_file=true,
282
+ ~hook=stop_after_object_file_emitted,
283
+ cstate,
284
+ ),
285
+ );
286
})
287
| None => ()
288
0 commit comments