blob: c66b393740f23ce0fdfd63daa804c88a61c5143a [file] [log] [blame] [edit]
#!/bin/bash
set -e
# Any subsequent(*) commands which fail will cause the shell script to exit immediately
# Complete Surelog build script
export CXX=`which g++-7`
export CC=`which gcc-7`
echo "Generating Antlr parser"
cd ../G4
ant compile_cpp
ant copy_pp_cpp
cd ../SVIncCompil
echo "Generating caching scheme"
cd Cache; ./build_fbs.sh;
cd ..;
echo "Generating code"
SourceCompile/generate_parser_listener.tcl
API/generate_python_listener_api.tcl
API/embed_python_api.tcl
echo "Make"
make -j 4 all;
echo "Run Tests"
./release.tcl ;
cd Testcases/ ;
./regression.tcl
echo "End build"