Mercurial > hg > sv-dependency-builds
comparison script/win32/configure-command-x-mingw @ 120:c9cf28b398fb
Add win64-mingw builds
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Thu, 30 Oct 2014 17:29:41 +0000 |
parents | 5fcdb63f4cc6 |
children | a0c5ef2265f5 |
comparison
equal
deleted
inserted
replaced
118:a8541380d3e0 | 120:c9cf28b398fb |
---|---|
1 #!/bin/bash | 1 #!/bin/bash |
2 mypath=`pwd`/`dirname $0` | 2 mypath=`pwd`/`dirname $0` |
3 deproot="$mypath"/../../ | 3 deproot="$mypath"/../../ |
4 prefix="$deproot"/win32-mingw | 4 prefix="$deproot"/win32-mingw |
5 CXX="i486-mingw32-g++ -I$prefix/include -L$prefix/lib" CC="i486-mingw32-gcc -I$prefix/include -L$prefix/lib" ./configure --prefix=$prefix/ --host=i486-unknown-windows "$@" | 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-unknown-windows "$@" |
6 | 6 |