Restore the frame pointer on Linux (#1200)

Looks like the default here changed when we upgraded the Linux build server.

This is causing issues when debugging crash dumps.
This commit is contained in:
Asher Baker 2020-03-04 21:43:13 +00:00 committed by GitHub
parent 604942f0e7
commit 6a307bfcee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -322,6 +322,9 @@ class SMConfig(object):
if builder.options.opt == '1':
cxx.cflags += ['-O3']
# Don't omit the frame pointer.
cxx.cflags += ['-fno-omit-frame-pointer']
def configure_msvc(self, cxx):
if builder.options.debug == '1':
cxx.cflags += ['/MTd']