summaryrefslogtreecommitdiff
path: root/platform/osx/detect.py
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-02-03 12:52:41 +0100
committerGitHub <noreply@github.com>2021-02-03 12:52:41 +0100
commit468d75bf6b5d1b0bc6aaf2afe62c71278e118bc5 (patch)
tree3d3aadcee87a2d483f66fb4f1ab961a335c20dd1 /platform/osx/detect.py
parent3a3af0279b1ed7c3b40136cdd7db1f54e09b88e2 (diff)
parentdb26871210fc53f2e36e24f985eea8f344d402f8 (diff)
Merge pull request #45679 from akien-mga/scons-production
SCons: Add `production=yes` option to use production defaults
Diffstat (limited to 'platform/osx/detect.py')
-rw-r--r--platform/osx/detect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/osx/detect.py b/platform/osx/detect.py
index 466f68d269..47ac609917 100644
--- a/platform/osx/detect.py
+++ b/platform/osx/detect.py
@@ -31,7 +31,7 @@ def get_opts():
False,
),
EnumVariable("macports_clang", "Build using Clang from MacPorts", "no", ("no", "5.0", "devel")),
- 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("use_ubsan", "Use LLVM/GCC compiler undefined behavior sanitizer (UBSAN)", False),
BoolVariable("use_asan", "Use LLVM/GCC compiler address sanitizer (ASAN))", False),