2013-12-02 06:31:22 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
. ./mingw-env.sh
|
|
|
|
|
|
|
|
export CC="distcc $HOST-gcc"
|
|
|
|
export CPP="distcc $HOST-g++"
|
|
|
|
export CXX="distcc $HOST-g++"
|
|
|
|
|
|
|
|
. ./print-env.sh
|
|
|
|
|
|
|
|
cd $BASE || exit 1
|
2014-05-21 22:51:05 -04:00
|
|
|
./waf configure --prefix="/" --bindir="/" --configdir="/share" --optimize --noconfirm --dist-target=mingw "$@"
|