aboutsummaryrefslogblamecommitdiffstats
path: root/bruiser/autogen/wasm/ltg.sh
blob: 9adecef7e7131423e0e2aa6f47784852bd151d40 (plain) (tree)
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 ./wasm.xml --tbldefs ./ltg/ --name wasm --anon
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