diff options
author | Joseph Myers <joseph@codesourcery.com> | 2005-02-03 13:03:20 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2005-02-03 13:03:20 +0000 |
commit | cd21f044758d49ece1d54376aac465154f46dbab (patch) | |
tree | 52f579ec04fa5c7cf72e5a4a46999ea7b1775f89 /gcc | |
parent | 515e6a84cd464581711a5aa5fe51342a57ff2095 (diff) | |
download | gcc-cd21f044758d49ece1d54376aac465154f46dbab.zip gcc-cd21f044758d49ece1d54376aac465154f46dbab.tar.gz gcc-cd21f044758d49ece1d54376aac465154f46dbab.tar.bz2 |
re PR driver/19117 (gcc -v should include target information)
PR driver/19117
* gcc.c (main): Include the target in -v output.
From-SVN: r94657
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/gcc.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f011c4e..465e2e9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-02-03 Joseph S. Myers <joseph@codesourcery.com> + + PR driver/19117 + * gcc.c (main): Include the target in -v output. + 2005-02-03 Alexandre Oliva <aoliva@redhat.com> * combine.c (simplify_comparison, case SIGN_EXTEND, ZERO_EXTEND): @@ -6374,6 +6374,7 @@ main (int argc, const char **argv) int n; const char *thrmod; + notice ("Target: %s\n", spec_machine); notice ("Configured with: %s\n", configuration_arguments); #ifdef THREAD_MODEL_SPEC |