Skip to content

Commit

Permalink
Added -std=gnu++11 option to buildtools.sh for Linux.
Browse files Browse the repository at this point in the history
  • Loading branch information
NormanDunbar committed Nov 24, 2016
1 parent f8bdf96 commit 7dd89e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/buildTools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
for CPP in `ls *.cpp`
do
EXE=${CPP%%.cpp}
g++ -o ${EXE} ${CPP}
g++ -std=gnu++11 -o ${EXE} ${CPP}
echo ${CPP} has been compiled to ${EXE}
done

Expand Down

0 comments on commit 7dd89e6

Please sign in to comment.