diff options
author | Andrew Morrow <acm@mongodb.com> | 2020-09-01 13:06:19 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-09-02 03:02:47 +0000 |
commit | 9339181a83b03684a92de1ca33b4a1587888d4e1 (patch) | |
tree | b7b1266e58e71ccd53ecf1711529623b03a5c096 /site_scons | |
parent | dce47dd519a2c5d4bce2264ad0a008e2927e2bba (diff) | |
download | mongo-9339181a83b03684a92de1ca33b4a1587888d4e1.tar.gz |
SERVER-50674 Don't strip local symbols on darwin
Diffstat (limited to 'site_scons')
-rw-r--r-- | site_scons/site_tools/separate_debug.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/site_scons/site_tools/separate_debug.py b/site_scons/site_tools/separate_debug.py index 1d7a03573cf..677ef75723e 100644 --- a/site_scons/site_tools/separate_debug.py +++ b/site_scons/site_tools/separate_debug.py @@ -64,7 +64,7 @@ def _update_builder(env, builder): "$DSYMUTILCOMSTR" ), SCons.Action.Action( - "$STRIP -Sx ${TARGET}", + "$STRIP -S ${TARGET}", "$DEBUGSTRIPCOMSTR" ), ] |