Add scripts for building using mingw compiler with distcc
This commit is contained in:
parent
dc60753dde
commit
ed8e6461b5
12
tools/windows_packaging/configure-distcc-debug.sh
Executable file
12
tools/windows_packaging/configure-distcc-debug.sh
Executable file
@ -0,0 +1,12 @@
|
||||
#!/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 --no-lv2 --test --single-tests --dist-target=mingw "$@"
|
12
tools/windows_packaging/configure-distcc-release.sh
Executable file
12
tools/windows_packaging/configure-distcc-release.sh
Executable file
@ -0,0 +1,12 @@
|
||||
#!/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 --no-lv2 --dist-target=mingw "$@"
|
Loading…
Reference in New Issue
Block a user