b7a7d9b9cc
no Windoze box here.
12 lines
194 B
Bash
Executable File
12 lines
194 B
Bash
Executable File
#!/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} $*
|