Added support for x86_64 automatic builds.

git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10224 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
pandora-release 2014-06-17 19:23:15 +00:00
parent 89fbeca7f1
commit 44960d0764
1 changed files with 4 additions and 3 deletions

View File

@ -3,9 +3,10 @@
# The installer will be placed in ./installer/output/.
# InstallJammer must be installed and in the PATH.
DIST=`lsb_release -i | awk '{print $3}'`
HOST="i586-mingw32msvc"
if [ "$DIST" == "openSUSE" ]; then
ARCH=`uname -m`
if [ "$ARCH" == "x86_64" ]; then
HOST="x86_64-w64-mingw32"
else
HOST="i686-w64-mingw32"
fi