mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-21 16:37:20 +01:00
Separated and updated the osx build commands to a new file.
This commit is contained in:
parent
520450eb94
commit
84507f9cbf
@ -39,31 +39,24 @@ fi
|
||||
# bash /root/engine_build_scripts/javascript.sh "$@" 2>&1 | tee logs/javascript.log
|
||||
|
||||
|
||||
# Android Build
|
||||
docker run ${custom_envvars} \
|
||||
# Android Build
|
||||
#docker run ${custom_envvars} \
|
||||
# -v ${basedir}/engine_build_scripts:/root/engine_build_scripts \
|
||||
# -v ${project_root}:/root/project \
|
||||
# -w /root/project pandemonium-android:${img_version} \
|
||||
# bash /root/engine_build_scripts/android.sh "$@" 2>&1 | tee logs/android.log
|
||||
|
||||
# OSX Build
|
||||
docker run ${custom_envvars} \
|
||||
-v ${basedir}/engine_build_scripts:/root/engine_build_scripts \
|
||||
-v ${project_root}:/root/project \
|
||||
-w /root/project pandemonium-android:${img_version} \
|
||||
bash /root/engine_build_scripts/android.sh "$@" 2>&1 | tee logs/android.log
|
||||
|
||||
-w /root/project pandemonium-osx:${img_version} \
|
||||
bash /root/engine_build_scripts/osx.sh "$@" 2>&1 | tee logs/osx.log
|
||||
|
||||
|
||||
|
||||
exit 1
|
||||
|
||||
# OSX editor
|
||||
docker run ${custom_envvars} -v ${project_root}:/root/project -w /root/project pandemonium-osx:${img_version} scons tools=yes target=release_debug custom_modules_shared=no debug_symbols=no platform=osx arch=x86_64 "$@" osxcross_sdk=darwin21.4 . 2>&1 | tee logs/osx_editor_x86_64.log
|
||||
docker run ${custom_envvars} -v ${project_root}:/root/project -w /root/project pandemonium-osx:${img_version} scons tools=yes target=release_debug custom_modules_shared=no debug_symbols=no platform=osx arch=arm64 "$@" osxcross_sdk=darwin21.4 . 2>&1 | tee logs/sx_editor_arm64.log
|
||||
|
||||
# OSX templates release_debug
|
||||
docker run ${custom_envvars} -v ${project_root}:/root/project -w /root/project pandemonium-osx:${img_version} scons tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=osx arch=x86_64 "$@" osxcross_sdk=darwin21.4 . 2>&1 | tee logs/osx_template_rd_x86_64.log
|
||||
docker run ${custom_envvars} -v ${project_root}:/root/project -w /root/project pandemonium-osx:${img_version} scons tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=osx arch=arm64 "$@" osxcross_sdk=darwin21.4 . 2>&1 | tee logs/osx_template_rd_arm64.log
|
||||
|
||||
# OSX templates release
|
||||
docker run ${custom_envvars} -v ${project_root}:/root/project -w /root/project pandemonium-osx:${img_version} scons tools=no target=release custom_modules_shared=no debug_symbols=no platform=osx arch=x86_64 "$@" osxcross_sdk=darwin21.4 . 2>&1 | tee logs/osx_template_r_x86_64.log
|
||||
docker run ${custom_envvars} -v ${project_root}:/root/project -w /root/project pandemonium-osx:${img_version} scons tools=no target=release custom_modules_shared=no debug_symbols=no platform=osx arch=arm64 "$@" osxcross_sdk=darwin21.4 . 2>&1 | tee logs/osx_template_r_arm64.log
|
||||
|
||||
# OSX lipo
|
||||
docker run ${custom_envvars} -v ${project_root}:/root/project -w /root/project/misc/osx pandemonium-osx:${img_version} bash -c ./lipo.sh
|
||||
|
||||
#ios
|
||||
#docker run ${custom_envvars} -v ${project_root}:/root/project -w /root/project pandemonium-ios:${img_version} scons bir_strip "$@" . 2>&1 | tee logs/bir.log
|
||||
|
||||
@ -129,16 +122,18 @@ files=(
|
||||
"pandemonium-lib.debug.aar"
|
||||
|
||||
# OSX
|
||||
"pandemonium.osx.opt.arm64"
|
||||
"pandemonium.osx.opt.universal"
|
||||
"pandemonium.osx.opt.debug.universal"
|
||||
"pandemonium.osx.opt.tools.universal"
|
||||
|
||||
# Note: These are not needed in the final release, only the universals.
|
||||
"pandemonium.osx.opt.arm64"
|
||||
"pandemonium.osx.opt.x86_64"
|
||||
|
||||
"pandemonium.osx.opt.debug.arm64"
|
||||
"pandemonium.osx.opt.debug.universal"
|
||||
"pandemonium.osx.opt.debug.x86_64"
|
||||
|
||||
"pandemonium.osx.opt.tools.arm64"
|
||||
"pandemonium.osx.opt.tools.universal"
|
||||
"pandemonium.osx.opt.tools.x86_64"
|
||||
)
|
||||
|
||||
|
24
misc/build-containers/engine_build_scripts/osx.sh
Normal file
24
misc/build-containers/engine_build_scripts/osx.sh
Normal file
@ -0,0 +1,24 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
# OSX editor
|
||||
scons production=yes tools=yes target=release_debug custom_modules_shared=no debug_symbols=no platform=osx arch=x86_64 "$@" osxcross_sdk=darwin23.3
|
||||
scons production=yes tools=yes target=release_debug custom_modules_shared=no debug_symbols=no platform=osx arch=arm64 "$@" osxcross_sdk=darwin23.3
|
||||
|
||||
# OSX templates release_debug
|
||||
scons production=yes tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=osx arch=x86_64 "$@" osxcross_sdk=darwin23.3
|
||||
scons production=yes tools=no target=release_debug custom_modules_shared=no debug_symbols=no platform=osx arch=arm64 "$@" osxcross_sdk=darwin23.3
|
||||
|
||||
# OSX templates release
|
||||
scons production=yes tools=no target=release custom_modules_shared=no debug_symbols=no platform=osx arch=x86_64 "$@" osxcross_sdk=darwin23.3
|
||||
scons production=yes tools=no target=release custom_modules_shared=no debug_symbols=no platform=osx arch=arm64 "$@" osxcross_sdk=darwin23.3
|
||||
|
||||
# OSX lipo
|
||||
|
||||
pushd misc/osx
|
||||
|
||||
./lipo.sh
|
||||
|
||||
popd
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
export STRIP="x86_64-apple-darwin21.4-strip -u -r"
|
||||
export STRIP="x86_64-apple-darwin23.3-strip -u -r"
|
||||
|
||||
# Tools
|
||||
lipo -create ../../bin/pandemonium.osx.opt.tools.x86_64 ../../bin/pandemonium.osx.opt.tools.arm64 -output ../../bin/pandemonium.osx.opt.tools.universal
|
||||
|
Loading…
Reference in New Issue
Block a user