X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=tools%2Fwindows_packaging%2Fmingw-env.sh;h=f4c0a375ca99a06d0716f9fcc86336d7b56a9a7a;hb=b08fd6483cba56076afbe977c92c8bff65fd2c2f;hp=983e6d0b9b382091a7f30d0270e515fbd7b5ec75;hpb=7000afdc66c9e0ae8dcf9ec080517dabba1e7f34;p=ardour.git diff --git a/tools/windows_packaging/mingw-env.sh b/tools/windows_packaging/mingw-env.sh index 983e6d0b9b..f4c0a375ca 100755 --- a/tools/windows_packaging/mingw-env.sh +++ b/tools/windows_packaging/mingw-env.sh @@ -1,11 +1,23 @@ #!/bin/bash -BASE=$(readlink -f $0) -BASE=$(dirname $BASE) # up one -BASE=$(dirname $BASE) # up one more -BASE=$(dirname $BASE) # up one more +if [ -z "$ARCH" ]; then + echo "ARCH not set defaulting to win32" + ARCH=win32 +elif [ "$ARCH" == "win32" ]; then + echo "ARCH set to win32" +elif [ "$ARCH" == "win64" ]; then + echo "ARCH set to win64" +else + echo "ARCH set invalid value aborting..." + exit 1 +fi + +if [ "$ARCH" == "win32" ]; then + HOST=i686-w64-mingw32 +else + HOST=x86_64-w64-mingw32 +fi -HOST=i686-w64-mingw32 MINGW_ROOT=/usr/$HOST/sys-root/mingw export PKG_CONFIG_PREFIX=$MINGW_ROOT @@ -22,11 +34,16 @@ export LINK_CXX=$HOST-g++ export WINRC=$HOST-windres export STRIP=$HOST-strip +BASE=$(readlink -f $0) +BASE=$(dirname $BASE) # up one +BASE=$(dirname $BASE) # up one more +BASE=$(dirname $BASE) # up one more + BUILD_DIR=$BASE/build BUILD_CACHE_FILE=$BUILD_DIR/c4che/_cache.py TOOLS_DIR=$BASE/tools/windows_packaging -APPNAME=`grep -m 1 '^APPNAME' $BASE/wscript | awk '{print $3}' | sed "s/'//g"` +APPNAME=Ardour # These are only relevant after a build if test -f $BUILD_CACHE_FILE @@ -35,9 +52,9 @@ then # Figure out the Build Type if [ x$DEBUG = xT ]; then - PACKAGE_DIR="$APPNAME-${release_version}-win32-dbg" + PACKAGE_DIR="$APPNAME-${release_version}-$ARCH-dbg" else - PACKAGE_DIR="$APPNAME-${release_version}-win32" + PACKAGE_DIR="$APPNAME-${release_version}-$ARCH" fi if grep -q "BUILD_TESTS = True" $BUILD_CACHE_FILE; then