gcc7.sh 594 B

123456789101112131415161718192021222324252627282930313233
  1. #!/usr/bin/env bash
  2. export CC=gcc-7
  3. export CXX=g++-7
  4. if [ "$NEWCC" != "" ]; then
  5. export CC="$NEWCC"
  6. fi
  7. if [ "$NEWCXX" != "" ]; then
  8. export CXX="$NEWCXX"
  9. fi
  10. export LOGFILE=gcc7.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 -fno-omit-frame-pointer"
  16. source ./tools/ci/flags/gcc7.sh
  17. export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS"
  18. do_init
  19. run_configure --enable-werror $*
  20. run_make
  21. source ./tools/ci/scripts/exit.sh
  22. exit 0