Define redirect_build_objects=no to avoid copying GBs of bin/obj

This commit is contained in:
Rémi Verschelde
2025-05-13 23:23:25 +02:00
parent 7a89e9087d
commit 8c9fd0328b
6 changed files with 6 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ set -e
# Config
export SCONS="scons -j${NUM_CORES} verbose=yes warnings=no progress=no"
export SCONS="scons -j${NUM_CORES} verbose=yes warnings=no progress=no redirect_build_objects=no"
# Keep LTO disabled for iOS - it works but it makes linking apps on deploy very slow,
# which is seen as a regression in the current workflow.
export OPTIONS="production=yes use_lto=no"