annotate script/win32/configure-command-x-mingw @ 118:a8541380d3e0
Ah, we've already done this. Merge, taking everything from the branch with the older commits.
author |
Chris Cannam <cannam@all-day-breakfast.com> |
date |
Fri, 04 Jul 2014 10:37:37 +0100 |
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
|