From 4cb9c389f8d62f4809fcfa7cc3add426f0da34f2 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 13 Feb 2017 22:45:05 +0100 Subject: [PATCH] build_mingw{32,64}.sh: vamp cross-compilation is broken, refuse to run scripts (see #2) --- build_mingw32.sh | 4 ++++ build_mingw64.sh | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/build_mingw32.sh b/build_mingw32.sh index 0c136c7..9a46b6f 100755 --- a/build_mingw32.sh +++ b/build_mingw32.sh @@ -2,6 +2,10 @@ # cross compile vamp-aubio-plugins using mingw32 toolchain +echo "ERROR: This script does not produce a binary loadable by sonic visualiser." +echo "Comment the following line to run it anyway." +exit 1 + . $PWD/VERSION VAMP_AUBIO_VERSION=$VAMP_AUBIO_MAJOR_VERSION.$VAMP_AUBIO_MINOR_VERSION.$VAMP_AUBIO_PATCH_VERSION$VAMP_AUBIO_VERSION_STATUS diff --git a/build_mingw64.sh b/build_mingw64.sh index 6c1b721..a2964eb 100755 --- a/build_mingw64.sh +++ b/build_mingw64.sh @@ -2,6 +2,10 @@ # cross compile vamp-aubio-plugins using mingw32 toolchain +echo "ERROR: This script does not produce a binary loadable by sonic visualiser." +echo "Comment the following line to run it anyway." +exit 1 + . $PWD/VERSION VAMP_AUBIO_VERSION=$VAMP_AUBIO_MAJOR_VERSION.$VAMP_AUBIO_MINOR_VERSION.$VAMP_AUBIO_PATCH_VERSION$VAMP_AUBIO_VERSION_STATUS -- 2.11.0