diff options
author | Przemysław Pawełczyk <przemyslaw@pawelczyk.it> | 2010-02-06 20:24:06 -0500 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2010-02-06 20:24:06 -0500 |
commit | c72dd3c713cc2b21eacae39ce6898f8e5c14e0ad (patch) | |
tree | a3409775bb8050dd2c498e6d198d32cdecb9f268 /session.h | |
parent | 8bead5e11a391879f87565b5a3fc9bbeec187b78 (diff) | |
download | systemtap-steved-c72dd3c713cc2b21eacae39ce6898f8e5c14e0ad.tar.gz systemtap-steved-c72dd3c713cc2b21eacae39ce6898f8e5c14e0ad.tar.xz systemtap-steved-c72dd3c713cc2b21eacae39ce6898f8e5c14e0ad.zip |
undocumented, obfuscated, *evil* option to suppress -Werror during module building
* session.h (omit_werror): New flag.
* buildrun.cxx (compile_pass): Use it.
* main.cxx (main): Set it.
Diffstat (limited to 'session.h')
-rw-r--r-- | session.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -118,6 +118,7 @@ struct systemtap_session bool need_uprobes; bool load_only; // flight recorder mode bool unprivileged; + bool omit_werror; // NB: It is very important for all of the above (and below) fields // to be cleared in the systemtap_session ctor (elaborate.cxx) |