diff options
author | Josh Stone <jistone@redhat.com> | 2009-10-21 09:07:14 -0700 |
---|---|---|
committer | Josh Stone <jistone@redhat.com> | 2009-10-21 09:08:07 -0700 |
commit | 1d2cd5ff6a8ff79b09e342a5907b29b4c340a9a5 (patch) | |
tree | 75726dbf9660f402d0978ffcb89003b1c73699e1 /buildrun.cxx | |
parent | ebaa961812e7b29eee554025a6253d676cea6ce0 (diff) | |
download | systemtap-steved-1d2cd5ff6a8ff79b09e342a5907b29b4c340a9a5.tar.gz systemtap-steved-1d2cd5ff6a8ff79b09e342a5907b29b4c340a9a5.tar.xz systemtap-steved-1d2cd5ff6a8ff79b09e342a5907b29b4c340a9a5.zip |
Relax the -Wframe-larger-than check
This is just a workaround for PR10821, and should be reverted when that
bug is fixed.
Diffstat (limited to 'buildrun.cxx')
-rw-r--r-- | buildrun.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/buildrun.cxx b/buildrun.cxx index bbf678ac..b6063e36 100644 --- a/buildrun.cxx +++ b/buildrun.cxx @@ -202,7 +202,9 @@ compile_pass (systemtap_session& s) // o << "CFLAGS += -fno-unit-at-a-time" << endl; // 512 bytes should be enough for anybody - o << "EXTRA_CFLAGS += $(call cc-option,-Wframe-larger-than=512)" << endl; + // 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; |