diff options
author | Keith Winstein <keithw@cs.stanford.edu> | 2024-02-12 10:35:52 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-12 18:35:52 +0000 |
commit | fd3c186f136dc37cfae87d5f302c631a39428b6d (patch) | |
tree | fe89b78b7657f152392bee80859c9f60a48bb8fe | |
parent | 0562fd501d24613b8471cdb43cc374f0b577bd82 (diff) | |
download | wabt-fd3c186f136dc37cfae87d5f302c631a39428b6d.tar.gz wabt-fd3c186f136dc37cfae87d5f302c631a39428b6d.tar.bz2 wabt-fd3c186f136dc37cfae87d5f302c631a39428b6d.zip |
wasm2c/README.md: update to reflect new compile command post-#2308 (#2390)
-rw-r--r-- | wasm2c/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wasm2c/README.md b/wasm2c/README.md index 9cdbdc27..f928ae40 100644 --- a/wasm2c/README.md +++ b/wasm2c/README.md @@ -109,11 +109,11 @@ int main(int argc, char** argv) { ## Compiling the wasm2c output To compile the executable, we need to use `main.c` and the generated `fac.c`. -We'll also include `wasm-rt-impl.c` which has implementations of the various +We'll also include `wasm-rt-impl.c` and `wasm-rt-mem-impl.c`, which have implementations of the various `wasm_rt_*` functions used by `fac.c` and `fac.h`. ```sh -$ cc -o fac main.c fac.c wasm-rt-impl.c +$ cc -o fac main.c fac.c wasm2c/wasm-rt-impl.c wasm2c/wasm-rt-mem-impl.c -Iwasm2c -lm ``` A note on compiling with optimization: wasm2c relies on certain |