diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-07-01 10:51:57 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-07-01 10:51:57 -0400 |
commit | c0e526f077ee8cf6b1d62e02822b722d946d2648 (patch) | |
tree | 98c865b1118827682bf54702fbeca8f3bfa55ada /main.cxx | |
parent | eb0ecdf035e690245c88de71b9f1bd7507856069 (diff) | |
download | systemtap-steved-c0e526f077ee8cf6b1d62e02822b722d946d2648.tar.gz systemtap-steved-c0e526f077ee8cf6b1d62e02822b722d946d2648.tar.xz systemtap-steved-c0e526f077ee8cf6b1d62e02822b722d946d2648.zip |
diagnostics improvement: print arch/mach at top if -vv
Diffstat (limited to 'main.cxx')
-rw-r--r-- | main.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -698,7 +698,12 @@ main (int argc, char * const argv []) // arguments parsed; get down to business if (s.verbose > 1) - version (); + { + version (); + clog << "Session arch: " << s.architecture + << " release: " << s.kernel_release + << endl; + } // Create a temporary directory to build within. // Be careful with this, as "s.tmpdir" is "rm -rf"'d at the end. |