mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 19:20:46 +00:00
osxbuild.sh: add 'debughelix' preset, building only x64 debug packages.
git-svn-id: https://svn.eduke32.com/eduke32@2958 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
772778205b
commit
de199a4741
1 changed files with 15 additions and 2 deletions
|
@ -10,6 +10,7 @@ buildmain=1
|
||||||
buildtools=0
|
buildtools=0
|
||||||
installtools=0
|
installtools=0
|
||||||
builddebug=0
|
builddebug=0
|
||||||
|
buildrelease=1
|
||||||
pack=1
|
pack=1
|
||||||
iamhelix=0
|
iamhelix=0
|
||||||
|
|
||||||
|
@ -55,7 +56,17 @@ for i in $*; do
|
||||||
builddebug=0
|
builddebug=0
|
||||||
pack=1
|
pack=1
|
||||||
;;
|
;;
|
||||||
|
debughelix)
|
||||||
|
iamhelix=1
|
||||||
|
buildppc=0
|
||||||
|
build86=0
|
||||||
|
build64=1
|
||||||
|
buildmain=1
|
||||||
|
buildtools=0
|
||||||
|
builddebug=1
|
||||||
|
buildrelease=0
|
||||||
|
pack=1
|
||||||
|
;;
|
||||||
# For the convenience of universal distributors:
|
# For the convenience of universal distributors:
|
||||||
dist)
|
dist)
|
||||||
buildppc=1
|
buildppc=1
|
||||||
|
@ -296,7 +307,9 @@ if [ $buildmain == 1 ]; then
|
||||||
dobuildem debug.x64 "ARCH='-arch x86_64' $commonargs RELEASE=0 BUILD32_ON_64=0 $makecmd"
|
dobuildem debug.x64 "ARCH='-arch x86_64' $commonargs RELEASE=0 BUILD32_ON_64=0 $makecmd"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dobuildem x64 "ARCH='-arch x86_64' $commonargs RELEASE=1 BUILD32_ON_64=0 $makecmd"
|
if [ $buildrelease == 1 ]; then
|
||||||
|
dobuildem x64 "ARCH='-arch x86_64' $commonargs RELEASE=1 BUILD32_ON_64=0 $makecmd"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $build86 == 1 ]; then
|
if [ $build86 == 1 ]; then
|
||||||
|
|
Loading…
Reference in a new issue