summaryrefslogtreecommitdiffstats
path: root/buildrun.cxx
diff options
context:
space:
mode:
authorPrzemysław Pawełczyk <przemyslaw@pawelczyk.it>2010-02-06 20:24:06 -0500
committerFrank Ch. Eigler <fche@elastic.org>2010-02-06 20:24:06 -0500
commitc72dd3c713cc2b21eacae39ce6898f8e5c14e0ad (patch)
treea3409775bb8050dd2c498e6d198d32cdecb9f268 /buildrun.cxx
parent8bead5e11a391879f87565b5a3fc9bbeec187b78 (diff)
downloadsystemtap-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 'buildrun.cxx')
-rw-r--r--buildrun.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildrun.cxx b/buildrun.cxx
index 3091c511..d6fc52ee 100644
--- a/buildrun.cxx
+++ b/buildrun.cxx
@@ -153,7 +153,7 @@ compile_pass (systemtap_session& s)
o << "_KBUILD_CFLAGS := $(call flags,KBUILD_CFLAGS)" << endl;
o << "stap_check_gcc = $(shell " << superverbose << " if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo \"$(1)\"; else echo \"$(2)\"; fi)" << endl;
- o << "CHECK_BUILD := $(CC) $(KBUILD_CPPFLAGS) $(CPPFLAGS) $(LINUXINCLUDE) $(_KBUILD_CFLAGS) $(CFLAGS_KERNEL) $(EXTRA_CFLAGS) $(CFLAGS) -DKBUILD_BASENAME=\\\"" << s.module_name << "\\\" -Werror -S -o /dev/null -xc " << endl;
+ o << "CHECK_BUILD := $(CC) $(KBUILD_CPPFLAGS) $(CPPFLAGS) $(LINUXINCLUDE) $(_KBUILD_CFLAGS) $(CFLAGS_KERNEL) $(EXTRA_CFLAGS) $(CFLAGS) -DKBUILD_BASENAME=\\\"" << s.module_name << "\\\"" << (s.omit_werror ? "" : " -Werror") << " -S -o /dev/null -xc " << endl;
o << "stap_check_build = $(shell " << superverbose << " if $(CHECK_BUILD) $(1) " << redirecterrors << " ; then echo \"$(2)\"; else echo \"$(3)\"; fi)" << endl;
o << "SYSTEMTAP_RUNTIME = \"" << s.runtime_path << "\"" << endl;
@@ -251,7 +251,7 @@ compile_pass (systemtap_session& s)
o << "EXTRA_CFLAGS += $(call cc-option,-Wframe-larger-than=600)" << endl;
// Assumes linux 2.6 kbuild
- o << "EXTRA_CFLAGS += -Wno-unused -Werror" << endl;
+ o << "EXTRA_CFLAGS += -Wno-unused" << (s.omit_werror ? "" : " -Werror") << endl;
#if CHECK_POINTER_ARITH_PR5947
o << "EXTRA_CFLAGS += -Wpointer-arith" << endl;
#endif
@@ -494,7 +494,7 @@ make_tracequery(systemtap_session& s, string& name,
string makefile(dir + "/Makefile");
ofstream omf(makefile.c_str());
// force debuginfo generation, and relax implicit functions
- omf << "EXTRA_CFLAGS := -g -Wno-implicit-function-declaration -Werror" << endl;
+ omf << "EXTRA_CFLAGS := -g -Wno-implicit-function-declaration" << (s.omit_werror ? "" : " -Werror") << endl;
omf << "obj-m := " + basename + ".o" << endl;
omf.close();