diff options
author | John Wiegley <johnw@newartisans.com> | 2012-03-15 05:01:39 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-03-15 05:01:39 -0500 |
commit | 429cfc5c80e1cabcd73a7e071deb618c4a3f9334 (patch) | |
tree | c59b32245ccc6d75ce0fb71a182e8d533d994271 /acprep | |
parent | 610a3e170994dc3cd3ae0dc989a49e4e7c7fdadf (diff) | |
download | fork-ledger-429cfc5c80e1cabcd73a7e071deb618c4a3f9334.tar.gz fork-ledger-429cfc5c80e1cabcd73a7e071deb618c4a3f9334.tar.bz2 fork-ledger-429cfc5c80e1cabcd73a7e071deb618c4a3f9334.zip |
Don't use -fomit-frame-pointer when building optimized
Makes stack traces impossible
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1348,7 +1348,7 @@ class PrepareBuild(CommandLineApp): def setup_flavor_opt(self): self.CPPFLAGS.append('-DNDEBUG=1') - for i in ['-O3', '-fomit-frame-pointer']: + for i in ['-O3']: self.CXXFLAGS.append(i) self.CFLAGS.append(i) self.LDFLAGS.append(i) |