annotate script/win32/configure-command-x-mingw @ 33:879bdc878826
Ah, we've already done this. Merge, taking everything from the branch with the older commits.
author |
Chris Cannam |
date |
Fri, 04 Jul 2014 10:37:37 +0100 |
parents |
c29fa680fb5a |
children |
05254799ed10 |
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@8
|
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 "$@"
|
Chris@8
|
6
|