annotate script/win32/configure-command-x-mingw @ 162:d43aab368df9
Duplicate for patch testing
| author |
Chris Cannam <cannam@all-day-breakfast.com> |
| date |
Wed, 30 Oct 2019 11:25:10 +0000 |
| parents |
a0c5ef2265f5 |
| children |
|
| rev |
line source |
|
cannam@89
|
1 #!/bin/bash
|
|
cannam@89
|
2 mypath=`pwd`/`dirname $0`
|
|
cannam@89
|
3 deproot="$mypath"/../../
|
|
cannam@89
|
4 prefix="$deproot"/win32-mingw
|
|
cannam@144
|
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 "$@"
|
|
cannam@93
|
6
|