diff options
author | fche <fche> | 2008-02-23 02:28:46 +0000 |
---|---|---|
committer | fche <fche> | 2008-02-23 02:28:46 +0000 |
commit | e4c583861763fee12666ce5f463d337783e001e9 (patch) | |
tree | aa89d8d0d02c64cd9ceee02adfebfdee9b27a465 /buildrun.cxx | |
parent | 780c08c8f4d5020052d3de50dfc3abacac589feb (diff) | |
download | systemtap-steved-e4c583861763fee12666ce5f463d337783e001e9.tar.gz systemtap-steved-e4c583861763fee12666ce5f463d337783e001e9.tar.xz systemtap-steved-e4c583861763fee12666ce5f463d337783e001e9.zip |
PR5787, PR2608: .statement(NUM) probing fixes
2008-02-22 Frank Ch. Eigler <fche@elastic.org>
PR5787, PR2608, .statement()
* tapsets.cxx (query_dwarf_func): Process .statement(NUM) probes too.
(query_cu): Ditto.
(query_func_info): Bypass prologue searching for .statement() probes.
(query_cu): Ditto.
(build_blacklist): Remove unsightly empty first alternative in
"^(|foo)$" regexps. Show them for -vvv.
* buildrun.cxx (compile_pass): Don't turn on "gcc -Q" on until -vvvv.
2008-02-22 Frank Ch. Eigler <fche@elastic.org>
* systemtap.base/stmtvars.exp: New test for PR 5787.
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 66cc4986..67836108 100644 --- a/buildrun.cxx +++ b/buildrun.cxx @@ -97,7 +97,7 @@ compile_pass (systemtap_session& s) for (unsigned i=0; i<s.macros.size(); i++) o << "EXTRA_CFLAGS += -D " << lex_cast_qstring(s.macros[i]) << endl; - if (s.verbose > 2) + if (s.verbose > 3) o << "EXTRA_CFLAGS += -ftime-report -Q" << endl; // XXX: unfortunately, -save-temps can't work since linux kbuild cwd |