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 --- ChangeLog | 5 +++++ main.cxx | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d67746d3..7c34f223 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-07-01 Frank Ch. Eigler + + * main.cxx (main): In -vv mode, also dump out session arch/release + values right at the top. + 2008-06-29 Tim Moore * Makefile.am (EXTRA_DIST): Add auto_free.h. 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