13 lines
280 B
Bash
Executable File
13 lines
280 B
Bash
Executable File
#!/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
|
|
./waf configure --prefix="/" --bindir="/" --configdir="/share" --noconfirm --test --single-tests --dist-target=mingw "$@"
|