diff options
Diffstat (limited to 'buildrun.cxx')
-rw-r--r-- | buildrun.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildrun.cxx b/buildrun.cxx index 86940643..1a349d5f 100644 --- a/buildrun.cxx +++ b/buildrun.cxx @@ -394,7 +394,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" << endl; + omf << "EXTRA_CFLAGS := -g -Wno-implicit-function-declaration -Werror" << endl; omf << "obj-m := " + basename + ".o" << endl; omf.close(); |