Travis test
diff --git a/SVIncCompil/buildall.sh b/SVIncCompil/buildall.sh index 8116683..9506395 100755 --- a/SVIncCompil/buildall.sh +++ b/SVIncCompil/buildall.sh
@@ -1,5 +1,8 @@ # Complete Surelog build script (Builds all targets: debug, release...) +export CXX=`which g++-7` +export CC=`which gcc-7` + echo "Generating Antlr parser" cd ../G4 ant compile_cpp
diff --git a/SVIncCompil/buildccache.sh b/SVIncCompil/buildccache.sh index ad3c8ca..fb0caa7 100755 --- a/SVIncCompil/buildccache.sh +++ b/SVIncCompil/buildccache.sh
@@ -1,6 +1,10 @@ ######################################################################### # Build ccache ######################################################################### + +export CXX=`which g++-7` +export CC=`which gcc-7` + mkdir -p ../ccache cd ../ccache wget https://github.com/ccache/ccache/releases/download/v3.7.5/ccache-3.7.5.tar.gz
diff --git a/SVIncCompil/builddebug.sh b/SVIncCompil/builddebug.sh index da8cba7..96f7cf6 100755 --- a/SVIncCompil/builddebug.sh +++ b/SVIncCompil/builddebug.sh
@@ -1,5 +1,8 @@ # Complete Surelog build script (Only debug target) +export CXX=`which g++-7` +export CC=`which gcc-7` + echo "Generating Antlr parser" cd ../G4 ant compile_cpp
diff --git a/SVIncCompil/buildpp.sh b/SVIncCompil/buildpp.sh index cc5f23a..919cc2f 100755 --- a/SVIncCompil/buildpp.sh +++ b/SVIncCompil/buildpp.sh
@@ -1,5 +1,8 @@ # Complete Surelog build script +export CXX=`which g++-7` +export CC=`which gcc-7` + echo "Generating Antlr parser" cd ../G4 ant compile_cpp
diff --git a/SVIncCompil/buildreleasepp.sh b/SVIncCompil/buildreleasepp.sh index 6d32faa..25ff4d4 100755 --- a/SVIncCompil/buildreleasepp.sh +++ b/SVIncCompil/buildreleasepp.sh
@@ -1,5 +1,8 @@ # Complete Surelog build script (Only updates PP grammar) +export CXX=`which g++-7` +export CC=`which gcc-7` + echo "Generating Antlr parser" cd ../G4 ant compile_cpp