From c0e526f077ee8cf6b1d62e02822b722d946d2648 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Tue, 1 Jul 2008 10:51:57 -0400 Subject: diagnostics improvement: print arch/mach at top if -vv --- main.cxx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'main.cxx') diff --git a/main.cxx b/main.cxx index 58d7fa9f..eea2c7e7 100644 --- a/main.cxx +++ b/main.cxx @@ -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. -- cgit