Bug 1160137 - Use 64bit on Windows 8 x64 debug spidermonkey shell build. r=sfink

This commit is contained in:
Tooru Fujisawa 2015-05-05 13:59:51 +09:00
Родитель cfbf65c361
Коммит 95fe780d37
1 изменённых файлов: 8 добавлений и 4 удалений

Просмотреть файл

@ -105,10 +105,14 @@ elif [ "$OSTYPE" = "linux-gnu" ]; then
fi
fi
elif [ "$OSTYPE" = "msys" ]; then
USE_64BIT=false
if [ "$platform" = "win64" ]; then
USE_64BIT=true
fi
case "$platform" in
win64*)
USE_64BIT=true
;;
*)
USE_64BIT=false
;;
esac
MAKE=${MAKE:-mozmake}
source "$ABSDIR/winbuildenv.sh"
fi