gcc5_h.sh 386 B

123456789101112131415161718192021222324252627282930
  1. #!/usr/bin/env bash
  2. export CC=gcc-5
  3. export CXX=g++-5
  4. if [ "$NEWCC" != "" ]; then
  5. export CC="$NEWCC"
  6. fi
  7. if [ "$NEWCXX" != "" ]; then
  8. export CXX="$NEWCXX"
  9. fi
  10. export LOGFILE=gcc5_h.log
  11. source ./tools/ci/scripts/init.sh
  12. do_init
  13. cd src
  14. export dir=$(pwd)
  15. export includes="-I$dir -I/usr/include -I/usr/include/libxml2"
  16. run_h $*
  17. cd ..
  18. source ./tools/ci/scripts/exit.sh
  19. exit 0