mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-22 21:27:22 +01:00
Add scripts for building using mingw compiler with distcc
This commit is contained in:
parent
dc60753dde
commit
ed8e6461b5
2 changed files with 24 additions and 0 deletions
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…
Add table
Add a link
Reference in a new issue