summaryrefslogtreecommitdiffstats
path: root/buildrun.cxx
diff options
context:
space:
mode:
authorTim Moore <timoore@redhat.com>2009-10-27 19:50:06 +0100
committerTim Moore <timoore@redhat.com>2009-10-27 19:50:06 +0100
commitf70d5f6b702e8da5c6affb3f34836c466b01f1b9 (patch)
tree46954ea80adcd97d18e21ecd1357b075d97f7e50 /buildrun.cxx
parent8447d5545aa58965a5f47d604e14e97e673d1cd9 (diff)
parent618a8a634b37da88b67a49beec7282634bff3efe (diff)
downloadsystemtap-steved-f70d5f6b702e8da5c6affb3f34836c466b01f1b9.tar.gz
systemtap-steved-f70d5f6b702e8da5c6affb3f34836c466b01f1b9.tar.xz
systemtap-steved-f70d5f6b702e8da5c6affb3f34836c466b01f1b9.zip
Merge branch 'master' of ssh://sourceware.org/git/systemtap
Diffstat (limited to 'buildrun.cxx')
-rw-r--r--buildrun.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/buildrun.cxx b/buildrun.cxx
index c5c44f13..b6063e36 100644
--- a/buildrun.cxx
+++ b/buildrun.cxx
@@ -201,6 +201,11 @@ compile_pass (systemtap_session& s)
// o << "CFLAGS += -fno-unit-at-a-time" << endl;
+ // 512 bytes should be enough for anybody
+ // XXX but it's not enough for unwind_frame -- PR10821
+ // XXX temporarily bumping to 600 bytes
+ o << "EXTRA_CFLAGS += $(call cc-option,-Wframe-larger-than=600)" << endl;
+
// Assumes linux 2.6 kbuild
o << "EXTRA_CFLAGS += -Wno-unused -Werror" << endl;
#if CHECK_POINTER_ARITH_PR5947