1 /* Generate gcov version string from version.c. See gcov-io.h for
2 description of how the version string is generated.
3 Copyright (C) 2002, 2003, 2005, 2007 Free Software Foundation, Inc.
4 Contributed by Nathan Sidwell <nathan@codesourcery.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
25 /* Command line arguments are the base GCC version and the development
26 phase (the latter may be an empty string). */
29 main (int argc
, char **argv
)
31 unsigned int version
= 0;
35 unsigned long minor
= 0;
41 fprintf (stderr
, "usage: %s 'version' 'phase'\n", argv
[0]);
46 major
= strtoul (ptr
, &ptr
, 10);
49 minor
= strtoul (ptr
+ 1, 0, 10);
55 v
[0] = (major
< 10 ? '0' : 'A' - 10) + major
;
56 v
[1] = (minor
/ 10) + '0';
57 v
[2] = (minor
% 10) + '0';
60 for (ix
= 0; ix
!= 4; ix
++)
61 version
= (version
<< 8) | v
[ix
];
63 printf ("/* Generated automatically by the program `%s'\n", argv
[0]);
64 printf (" from `%s (%lu %lu) and %s (%c)'. */\n",
65 argv
[1], major
, minor
, argv
[2], phase
);
67 printf ("#define GCOV_VERSION ((gcov_unsigned_t)%#08x) /* %.4s */\n",