win_make 207 B

1234567891011121314151617
  1. #!/bin/bash
  2. source ./winvars.sh || exit 1
  3. mkdir tmp
  4. cd ..
  5. dir=`pwd`
  6. autoreconf -i || exit 1
  7. cd build/tmp
  8. ../../configure \
  9. --host=${CROSS} \
  10. --enable-werror || exit 1
  11. make -j16 2>../make2.log || exit 1