blob: bb72045cb3227230ea17f85e248aa20ad72dcae0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
target=i386--mingw32
host=`./config.guess`
CC="${target}-gcc"
CPP="${target}-gcc -E"
RANLIB="${target}-ranlib"
export CC CPP RANLIB
./configure --host=${host} --target=${target} $*
|