From 77d27053c3a0a8c29ec9c6039900ac4dd65dbece Mon Sep 17 00:00:00 2001 From: bruvzg <7645683+bruvzg@users.noreply.github.com> Date: Tue, 30 Jan 2018 16:51:46 +0200 Subject: [PATCH] [macOS] Strip executable when `separate_debug_symbols` is set to yes (cherry picked from commit 9ef0315b06634614bcd20700b73b562fe4411666) --- platform/osx/SCsub | 1 + 1 file changed, 1 insertion(+) diff --git a/platform/osx/SCsub b/platform/osx/SCsub index 07e633a1179..5efe2d0b223 100644 --- a/platform/osx/SCsub +++ b/platform/osx/SCsub @@ -10,6 +10,7 @@ def make_debug(target, source, env): os.system(mpprefix + '/libexec/llvm-' + mpclangver + '/bin/llvm-dsymutil %s -o %s.dSYM' % (target[0], target[0])) else: os.system('dsymutil %s -o %s.dSYM' % (target[0], target[0])) + os.system('strip -u -r %s' % (target[0])) files = [ 'crash_handler_osx.mm',