mxe_gcc6.sh 307 B

123456789101112131415161718192021
  1. #!/usr/bin/env bash
  2. export LOGFILE=mxe_gcc6.log
  3. source ./tools/ci/scripts/winvars.sh || exit 1
  4. source ./tools/ci/flags/mingw6.sh || exit 1
  5. $CC --version
  6. $CXX --version
  7. echo env
  8. env
  9. autoreconf -i || exit 1
  10. ./configure \
  11. --host=${CROSS} \
  12. --enable-werror || (cp config.log logs || exit 1)
  13. make -j2 V=0