summaryrefslogtreecommitdiff
path: root/acprep
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2012-03-15 05:01:39 -0500
committerJohn Wiegley <johnw@newartisans.com>2012-03-15 05:01:39 -0500
commit429cfc5c80e1cabcd73a7e071deb618c4a3f9334 (patch)
treec59b32245ccc6d75ce0fb71a182e8d533d994271 /acprep
parent610a3e170994dc3cd3ae0dc989a49e4e7c7fdadf (diff)
downloadfork-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-xacprep2
1 files changed, 1 insertions, 1 deletions
diff --git a/acprep b/acprep
index d3639f54..e79fae5b 100755
--- a/acprep
+++ b/acprep
@@ -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)