DISTRHO Plugin Framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
373B

  1. #!/bin/bash
  2. set -e
  3. # Preparation
  4. _FLAGS="-DPTW32_STATIC_LIB -Werror"
  5. _PREFIX=i686-w64-mingw32
  6. export AR=${_PREFIX}-ar
  7. export CC=${_PREFIX}-gcc
  8. export CXX=${_PREFIX}-g++
  9. export CFLAGS="${_FLAGS}"
  10. export CXXFLAGS="${_FLAGS}"
  11. export PATH=/opt/mingw32/${_PREFIX}/bin:/opt/mingw32/bin:${PATH}
  12. export CROSS_COMPILING=true
  13. # Start clean
  14. make clean >/dev/null
  15. # Build now
  16. make