From c6d9a7665acdd5785760eee0c69bd1d2a53b6b90 Mon Sep 17 00:00:00 2001 From: Hein-Pieter van Braam Date: Fri, 26 Jan 2018 20:46:56 +0100 Subject: Make separate debug symbols opt-in This adds a separate_debug_symbols option to the x11, windows, and osx targets. This will default to adding normal debugging symbols to the artifacts and only splits them when separate_debug_symbols=yes on the Scons command line. --- platform/osx/detect.py | 1 + 1 file changed, 1 insertion(+) (limited to 'platform/osx/detect.py') diff --git a/platform/osx/detect.py b/platform/osx/detect.py index bb601abd40..eb31533c0a 100644 --- a/platform/osx/detect.py +++ b/platform/osx/detect.py @@ -24,6 +24,7 @@ def get_opts(): return [ ('osxcross_sdk', 'OSXCross SDK version', 'darwin14'), EnumVariable('debug_symbols', 'Add debug symbols to release version', 'yes', ('yes', 'no', 'full')), + BoolVariable('separate_debug_symbols', 'Create a separate file with the debug symbols', False), ] -- cgit v1.2.3