mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
12 lines
269 B
Bash
Executable file
12 lines
269 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" --optimize --noconfirm --dist-target=mingw "$@"
|