diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-02-03 12:52:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-03 12:52:41 +0100 |
commit | 468d75bf6b5d1b0bc6aaf2afe62c71278e118bc5 (patch) | |
tree | 3d3aadcee87a2d483f66fb4f1ab961a335c20dd1 /platform/server/detect.py | |
parent | 3a3af0279b1ed7c3b40136cdd7db1f54e09b88e2 (diff) | |
parent | db26871210fc53f2e36e24f985eea8f344d402f8 (diff) |
Merge pull request #45679 from akien-mga/scons-production
SCons: Add `production=yes` option to use production defaults
Diffstat (limited to 'platform/server/detect.py')
-rw-r--r-- | platform/server/detect.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/server/detect.py b/platform/server/detect.py index db503584d3..06042c8e17 100644 --- a/platform/server/detect.py +++ b/platform/server/detect.py @@ -32,13 +32,13 @@ def get_opts(): return [ BoolVariable("use_llvm", "Use the LLVM compiler", False), - BoolVariable("use_static_cpp", "Link libgcc and libstdc++ statically for better portability", False), + BoolVariable("use_static_cpp", "Link libgcc and libstdc++ statically for better portability", True), BoolVariable("use_coverage", "Test Godot coverage", False), BoolVariable("use_ubsan", "Use LLVM/GCC compiler undefined behavior sanitizer (UBSAN)", False), BoolVariable("use_asan", "Use LLVM/GCC compiler address sanitizer (ASAN))", False), BoolVariable("use_lsan", "Use LLVM/GCC compiler leak sanitizer (LSAN))", False), BoolVariable("use_tsan", "Use LLVM/GCC compiler thread sanitizer (TSAN))", False), - EnumVariable("debug_symbols", "Add debugging symbols to release/release_debug builds", "yes", ("yes", "no")), + BoolVariable("debug_symbols", "Add debugging symbols to release/release_debug builds", True), BoolVariable("separate_debug_symbols", "Create a separate file containing debugging symbols", False), BoolVariable("execinfo", "Use libexecinfo on systems where glibc is not available", False), ] |