annotate script/win32/configure-command-x-mingw @ 115:1609fb751561
sord-0 -> sord and serd-0 -> serd
author |
Chris Cannam <cannam@all-day-breakfast.com> |
date |
Thu, 09 Jan 2014 21:21:48 +0000 |
parents |
5fcdb63f4cc6 |
children |
c9cf28b398fb |
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@93
|
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 "$@"
|
cannam@93
|
6
|