annotate script/win32/configure-command-x-mingw @ 74:2f2b27544483

Rebuild win32 Opus using mingw 5 rather than 7 to avoid runtime incompatibility
author Chris Cannam
date Wed, 30 Jan 2019 10:30:56 +0000
parents cd4953afea46
children
rev   line source
Chris@4 1 #!/bin/bash
Chris@4 2 mypath=`pwd`/`dirname $0`
Chris@4 3 deproot="$mypath"/../../
Chris@4 4 prefix="$deproot"/win32-mingw
Chris@59 5 CXX="i686-w64-mingw32-g++ -I$prefix/include -L$prefix/lib" CC="i686-w64-mingw32-gcc -I$prefix/include -L$prefix/lib" ./configure --prefix=$prefix/ --host=i686-w64-mingw32 "$@"
Chris@8 6