40 lines
1.2 KiB
Makefile
40 lines
1.2 KiB
Makefile
.PHONY: format
|
|
|
|
all:
|
|
|
|
format:
|
|
# Convert tabs to spaces
|
|
find ./source -type f -iname '*.[cpp\|c\|h]' -exec bash -c 'expand -t 4 "$$0" | sponge "$$0"' {} \;
|
|
# Remove trailing whitespaces
|
|
find ./source -type f -iname '*.[cpp\|c\|h]' -exec sed -i 's/ *$$//' {} \;
|
|
|
|
preprocess: preprocess_restore
|
|
cp ./source/m3_exec.h ./source/m3_exec.h.bak
|
|
cp ./source/m3_compile.c ./source/m3_compile.c.bak
|
|
awk 'BEGIN {RS=""}{gsub(/\\\n/,"\\\n__NL__ ")}1' ./source/m3_exec.h | sponge ./source/m3_exec.h
|
|
cpp -I./source -P ./source/m3_compile.c | sponge ./source/m3_compile.c
|
|
awk '{gsub(/__NL__/,"\n")}1' ./source/m3_compile.c | sponge ./source/m3_compile.c
|
|
mv ./source/m3_exec.h.bak ./source/m3_exec.h
|
|
|
|
preprocess_restore:
|
|
-mv source/m3_compile.c.bak source/m3_compile.c
|
|
touch source/m3_compile.c
|
|
|
|
|
|
test_rv64:
|
|
riscv64-linux-gnu-gcc -DDEBUG -Dd_m3HasWASI \
|
|
-I./source ./source/*.c ./platforms/app/main.c \
|
|
-O3 -g0 -flto -lm -static \
|
|
-o wasm3-rv64
|
|
|
|
cd test; python3 run-wasi-test.py --fast --exec "qemu-riscv64-static ../wasm3-rv64"
|
|
rm ./wasm3-rv64
|
|
|
|
test_cpp:
|
|
clang -xc++ -Dd_m3HasWASI \
|
|
-I./source ./source/*.c ./platforms/app/main.c \
|
|
-O3 -g0 -flto -lm -static \
|
|
-o wasm3-cpp
|
|
cd test; python3 run-wasi-test.py --fast --exec "../wasm3-cpp"
|
|
rm ./wasm3-cpp
|