aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser/autogen/wasm/ltg.sh
blob: 769a11f70352a2869fc725f334bca69898cd9e17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
cd $(dirname $0)
"../../tablegen/luatablegen.py" --out ./ltg/ --luaheader ../../../lua-5.3.4/src --headeraggr ./ltg/wasm_tables.h --lualibpath ./ltg/wasm.lua --docpath ./ltg/wasm.md --xml ./ltg/wasm.xml --tbldefs ./ltg/ --name wasm
clang-format ./ltg/*.c ./ltg/*.h -i
for filename in ./ltg/*.c; do
  gcc -c $filename > /dev/null 2>&1
  if [[ $? != 0 ]]; then
    echo $filename did not compile.
  fi
done
rm *.o