gcc6_sdl2_tests.sh 624 B

12345678910111213141516171819202122232425262728293031323334
  1. #!/usr/bin/env bash
  2. export CC=gcc-6
  3. export CXX=g++-6
  4. if [ "$NEWCC" != "" ]; then
  5. export CC="$NEWCC"
  6. fi
  7. if [ "$NEWCXX" != "" ]; then
  8. export CXX="$NEWCXX"
  9. fi
  10. export LOGFILE=gcc6.log
  11. source ./tools/ci/scripts/init.sh
  12. export CXXFLAGS="$CXXFLAGS -pedantic -ggdb3 -O2 -pipe -Wstrict-aliasing=2 \
  13. -Wstrict-overflow=1 -Wformat=1 -D_FORTIFY_SOURCE=2 \
  14. -std=gnu++1z -Wformat=1 \
  15. -Wno-attributes"
  16. source ./tools/ci/flags/gcc6.sh
  17. export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS"
  18. do_init
  19. run_configure --enable-unittests=yes --with-sdl2 $*
  20. export SDL_VIDEODRIVER=dummy
  21. run_make_check
  22. source ./tools/ci/scripts/exit.sh
  23. exit 0