summaryrefslogtreecommitdiffstats
path: root/buildrun.cxx
diff options
context:
space:
mode:
authorMichael Meeks <michael dot meeks at novell dot com>2008-08-15 11:49:29 +0100
committerFrank Ch. Eigler <fche@elastic.org>2008-08-15 08:05:05 -0400
commite9737939bdde53cfd6a2a16f0bd6494a05634ce8 (patch)
treeb28541894790169ee59942cead1560088f66bdd4 /buildrun.cxx
parenta33ac7e8d41a9e195a4bad3c861fb2d3425fa5ca (diff)
downloadsystemtap-steved-e9737939bdde53cfd6a2a16f0bd6494a05634ce8.tar.gz
systemtap-steved-e9737939bdde53cfd6a2a16f0bd6494a05634ce8.tar.xz
systemtap-steved-e9737939bdde53cfd6a2a16f0bd6494a05634ce8.zip
small patch ...
Hi guys, I append a trivial patch for systemtap. I guess the SUSE wiki page also needs updating to point out that it's broken in 11.0 by default, and that you require HEAD with Frank's buildrun.cxx fix for the mach-default include. My patch will hopefully make similar problems easier to find in future (for lovers of -v options ;-) HTH, Michael.
Diffstat (limited to 'buildrun.cxx')
-rw-r--r--buildrun.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/buildrun.cxx b/buildrun.cxx
index 159e1c6e..a265e4db 100644
--- a/buildrun.cxx
+++ b/buildrun.cxx
@@ -78,8 +78,12 @@ compile_pass (systemtap_session& s)
if (s.verbose > 3)
superverbose = "set -x;";
+ string redirecterrors = "> /dev/null 2>&1";
+ if (s.verbose > 6)
+ redirecterrors = "";
+
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 << "stap_check_build = $(shell " << superverbose << " if $(CC) $(KBUILD_CPPFLAGS) $(CPPFLAGS) $(KBUILD_CFLAGS) $(CFLAGS_KERNEL) $(EXTRA_CFLAGS) $(CFLAGS) -DKBUILD_BASENAME=\\\"" << s.module_name << "\\\" -Werror -S -o /dev/null -xc $(1) > /dev/null 2>&1 ; then echo \"$(2)\"; else echo \"$(3)\"; fi)" << endl;
+ o << "stap_check_build = $(shell " << superverbose << " if $(CC) $(KBUILD_CPPFLAGS) $(CPPFLAGS) $(KBUILD_CFLAGS) $(CFLAGS_KERNEL) $(EXTRA_CFLAGS) $(CFLAGS) -DKBUILD_BASENAME=\\\"" << s.module_name << "\\\" -Werror -S -o /dev/null -xc $(1) " << redirecterrors << " ; then echo \"$(2)\"; else echo \"$(3)\"; fi)" << endl;
o << "SYSTEMTAP_RUNTIME = \"" << s.runtime_path << "\"" << endl;