wasm: remove heap allocator from wasi-libc

This would conflict with our own heap. We previously defined all those
functions to make sure it's not used, but with a more recent wasi-libc
version (https://github.com/WebAssembly/wasi-libc/pull/250) we can
simply not compile the wasi-libc heap, which is the proper fix.
This commit is contained in:
Ayke van Laethem
2022-01-19 14:58:11 +01:00
committed by Ron Evans
parent d139fa5e0f
commit 372d9e0f5e
6 changed files with 7 additions and 25 deletions
+2 -2
View File
@@ -76,7 +76,7 @@ jobs:
uses: actions/cache@v2
id: cache-wasi-libc
with:
key: wasi-libc-sysroot-linux-asserts-v2
key: wasi-libc-sysroot-linux-asserts-v3
path: lib/wasi-libc/sysroot
- name: Build wasi-libc
if: steps.cache-wasi-libc.outputs.cache-hit != 'true'
@@ -217,7 +217,7 @@ jobs:
uses: actions/cache@v2
id: cache-wasi-libc
with:
key: wasi-libc-sysroot-linux-asserts-v2
key: wasi-libc-sysroot-linux-asserts-v3
path: lib/wasi-libc/sysroot
- name: Build wasi-libc
if: steps.cache-wasi-libc.outputs.cache-hit != 'true'