From 6da8678d6ec211e285acd5539fcf379c1c63454a Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Tue, 2 Oct 2012 10:55:26 -0700 Subject: [PATCH] stapdyn: Don't silence pass-4 gcc errors * buildrun.cxx (compile_dyninst): Just as compile_pass() always shows error output from Kbuild, we should always show gcc errors from compiling dyninst modules too. --- buildrun.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/buildrun.cxx b/buildrun.cxx index 23ab48db5..6247c7a40 100644 --- a/buildrun.cxx +++ b/buildrun.cxx @@ -222,8 +222,7 @@ compile_dyninst (systemtap_session& s) cmd.push_back("-Q"); } - bool quiet = (s.verbose < 2); - int rc = stap_system (s.verbose, cmd, quiet, quiet); + int rc = stap_system (s.verbose, cmd); if (rc) s.set_try_server (); return rc; -- 2.43.5