diff options
author | David Rubin <87927264+Rexicon226@users.noreply.github.com> | 2024-06-03 07:46:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 14:46:34 +0000 |
commit | 4beb52501f863f1cbd92e0ce4879f04f473935b5 (patch) | |
tree | 368c6580e84aebdf6b8d081848f2d8deaffca9b1 /wasm2c/examples/threads/Makefile | |
parent | 2c50f59f518968643a36e800c0268bcfabc485ac (diff) | |
download | wabt-4beb52501f863f1cbd92e0ce4879f04f473935b5.tar.gz wabt-4beb52501f863f1cbd92e0ce4879f04f473935b5.tar.bz2 wabt-4beb52501f863f1cbd92e0ce4879f04f473935b5.zip |
Correct wasm2c example Makefiles (#2426)
- Passing "-lm" into the prereq isn't the correct way add the flag. This correctly adds it to the command.
- The "rot13" example incorrectly assumed that the "rot13.h" file would be generated by the time that "main.c"
was being compiled, however there is no rule supporting this and it would fail.
I've also added "rot13.h" to the clean rule.
Diffstat (limited to 'wasm2c/examples/threads/Makefile')
-rw-r--r-- | wasm2c/examples/threads/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wasm2c/examples/threads/Makefile b/wasm2c/examples/threads/Makefile index f6eb9998..b671e482 100644 --- a/wasm2c/examples/threads/Makefile +++ b/wasm2c/examples/threads/Makefile @@ -1,14 +1,14 @@ #SANITIZERS=-fsanitize=address -fsanitize=undefined -fno-sanitize-recover=all CFLAGS=-I../.. -g -O2 -Wall -Wextra -Wno-unused -Wno-unused-parameter -Wno-array-bounds -Wno-ignored-optimization-argument -Wno-tautological-constant-out-of-range-compare -Wno-infinite-recursion -fno-optimize-sibling-calls -frounding-math -fsignaling-nans ${SANITIZERS} -pthread -LDFLAGS=${SANITIZERS} -pthread +LDLIBS=${SANITIZERS} -pthread -lm all: threads -threads: threads.o sample.o ../../wasm-rt-impl.o ../../wasm-rt-exceptions-impl.o -lm - clean: rm -rf threads sample.wasm sample.c sample.h *.o ../../*.o +threads: threads.o sample.o ../../wasm-rt-impl.o ../../wasm-rt-exceptions-impl.o + sample.wasm: sample.wat ../../../bin/wat2wasm ../../../bin/wat2wasm --debug-names $< -o $@ |