cppinit.c: Add " (cpplib)" to end of string printed by -v / --version.
* cppinit.c: Add " (cpplib)" to end of string printed by -v / --version. From-SVN: r31645
This commit is contained in:
parent
28353b165e
commit
9082f8471a
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2000-01-27 Zack Weinberg <zack@wolery.cumb.org>
|
||||
|
||||
* cppinit.c: Add " (cpplib)" to end of string printed by
|
||||
-v / --version.
|
||||
|
||||
2000-01-27 Richard Henderson <rth@cygnus.com>
|
||||
|
||||
* alpha.c (alpha_emit_conditional_move): Use VOIDmode when
|
||||
|
|
|
@ -1500,12 +1500,12 @@ cpp_handle_option (pfile, argc, argv)
|
|||
if (!strcmp (argv[i], "--help"))
|
||||
print_help ();
|
||||
else if (!strcmp (argv[i], "--version"))
|
||||
cpp_notice ("GNU CPP version %s\n", version_string);
|
||||
cpp_notice ("GNU CPP version %s (cpplib)\n", version_string);
|
||||
exit (0); /* XXX */
|
||||
break;
|
||||
|
||||
case 'v':
|
||||
cpp_notice ("GNU CPP version %s", version_string);
|
||||
cpp_notice ("GNU CPP version %s (cpplib)", version_string);
|
||||
#ifdef TARGET_VERSION
|
||||
TARGET_VERSION;
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue