* Makefile.in: Avoid bug in hpux sed.
[deliverable/binutils-gdb.git] / gprof / ChangeLog
1 Sun Mar 20 15:40:21 1994 Jeffrey A. Law (law@cygnus.com)
2
3 * Makefile.in: Avoid bug in hpux sed.
4
5 Wed Dec 15 20:16:40 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
6
7 * gprof.texi (Invoking): add text about -v flag
8
9 * gprof.1: add text about -v flag
10
11 Wed Dec 8 16:55:06 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
12
13 * gprof.c (VERSION): defined a version macro, print the value
14 when the -v option is used
15
16 Tue Jul 6 10:11:56 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
17
18 * Makefile.in: Install correctly.
19
20 Thu Jun 24 14:43:22 1993 David J. Mackenzie (djm@thepub.cygnus.com)
21
22 * gprof.c (main): Get whoami from argv, instead of hardcoding.
23 Use it in usage message. Split usage message to fit in 80 cols.
24
25 Sun Jun 20 20:58:02 1993 Ken Raeburn (raeburn@poseidon.cygnus.com)
26
27 * Makefile.in: Undo 15 June change.
28
29 Wed Jun 16 12:54:53 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
30
31 * gmon.h, gprof.h: structs of chars used to hold external
32 representations.
33 * gprof.c (getpfile, openpfile, readsamples): Swap data in using
34 new structures.
35
36 Tue Jun 15 23:09:17 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
37
38 * Makefile.in (.c.o): Look in ../include, not ../bfd, for bfd.h.
39
40 Mon Jun 14 16:22:59 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
41
42 * Makefile.in: remove parentdir support
43
44 Mon Jun 7 12:56:17 1993 Per Bothner (bothner@rtl.cygnus.com)
45
46 * Makefile.in (INCLUDES): Add -I../bfd for sysdep.h and bfd.h.
47 * configure.in: No longer need to configure to get sysdep.h.
48
49 Tue May 18 21:44:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
50
51 * Makefile.in (install): should not depend on install-info
52
53 Mon Apr 26 12:37:46 1993 Ian Lance Taylor (ian@cygnus.com)
54
55 * gprof.h: Include ansidecl.h before sysdep.h. Undefine hz.
56
57 Tue Apr 13 16:14:03 1993 Per Bothner (bothner@cygnus.com)
58
59 * M Makefile.in: Add -g to CFLAGS.
60 Ads LDFLAGS and use in place of CFLAGS where appropriate.
61 * configure.in: Make a sysdep.hlink in the same way other
62 bfd-based directories do.
63 * gprof.h (UNIT): Replace non-standard 'u_short' by 'unsigned
64 short'.
65 * gprof.h: #include sysdep.h instead of a bunch of stuff.
66 * gprof.c (main): Fix typo gproff->gprof.
67
68 Thu Mar 25 19:00:37 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
69
70 * gprof.texi: add INFO-DIR-ENTRY
71
72 Tue Mar 23 00:03:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
73
74 * Makefile.in: add installcheck target
75
76 Sat Feb 27 18:17:10 1993 Per Bothner (bothner@rtl.cygnus.com)
77
78 * gprof.c (funcsymbol): Invert test for aflag.
79
80 Thu Feb 25 16:01:50 1993 Per Bothner (bothner@rtl.cygnus.com)
81
82 * printgprof (xmalloc, xrealloc): Cast results of malloc
83 and realloc to PTR.
84
85 Wed Feb 3 13:55:33 1993 Jeffrey Osier (jeffrey@fowanton.cygnus.com)
86
87 * Makefile.in: created info, install-info, dvi
88
89 Wed Jan 6 00:58:09 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
90
91 * Makefile.in: fix install rule for $(PROG)
92
93 Fri Oct 9 11:25:41 1992 Mark Eichin (eichin@cygnus.com)
94
95 * gprof.1: updated SYNOPSIS to match actual behavior.
96
97 Mon Oct 5 17:50:16 1992 Per Bothner (bothner@cygnus.com)
98
99 * gen-c-prog.awk: New awk script, lightly changed from
100 previously deleted make-c-prog.awk. Converts a text file
101 to a c function that prints that text.
102 * flat_bl.m, fsf_callg_bl.m, bsd_callg_bl.m: New files.
103 Inputs to gen-c-prog.awk, containing text describing
104 gprof output.
105 * blurbs.c: Removed. Use *_bl.c instead.
106 * Makefile.in: Use gen-cprog.awk to generate *_bl.c files
107 from *_bl.m files. Also, improve *clean rules.
108 * printgprof.c (printgprof): Usw new function names from *_bl.c.
109
110
111 Sun Aug 30 19:54:53 1992 Per Bothner (bothner@rtl.cygnus.com)
112
113 * gprof.h, gprof.c, printfgprof.c: Add support for two
114 output styles: The default is similar to the old FSF gprof,
115 while -T sets the variable bsd_style_output, which causes
116 output matching Berkeley's gprof. The biggest differences
117 are that with the FSF style output, the flat profile comes
118 before the call graph; numbers come before explanations;
119 and there is less gratuitous white space.
120 * gprof.h, gprof.c, printfgprof.c: New discard_underscores
121 variable causes discarding of initial underscores when
122 printing symbol names. It is set unless there is a "main"
123 symbol (without an underscore).
124 * printfgprof.c: New function printnameonly(), called
125 by printname(). It handles stripping of initial '_',
126 as well as C++ name-demangling.
127 * gprof.callg, gprof.flat, make-c-prog.awk: Removed.
128 It is just as convenient to edit blurbs.c directly.
129 * Makefile.in: Removed rule for making blurbs.c.
130 * blurbs.c: This is now a true source file (as opposed
131 to being generated from gprof.callg and gprof.flat).
132 Change style to use one long string literal, instead of
133 one literal per output line. Add FSF-style blurb for call graph.
134
135 Wed Aug 19 14:36:39 1992 Ian Lance Taylor (ian@cygnus.com)
136
137 * Makefile.in: always create installation directories.
138
139 Wed Aug 12 15:14:14 1992 Mark Eichin (eichin@cygnus.com)
140
141 * Makefile.in: change ${MACHINE} to $(MACHINE).
142
143 Sun Jul 19 17:34:01 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
144
145 * Makefile.in: removed installation of the now useless
146 call.{flag,callg} files.
147
148 * gprof.1: now uses the standard man macros instead of the new BSD
149 mandoc macros.
150
151 Sun Jul 12 19:06:00 1992 John Gilmore (gnu at cygnus.com)
152
153 * configure.in: Remove host section, expand target section.
154 * config/mt-{tahoe,vax}: Add, to match existing support files.
155 * config/tmake-*: Remove leftover crud.
156
157 * blurbs.c: New file, created from gprof.flat and gprof.callg by
158 * make-c-prog.awk: which processes text files into C programs.
159 * printgprof.c (flatprofheader, gprofheader): Call new functions
160 to print blurbs.
161 (printblurb): Remove.
162 * Makefile.in: Infrastructure to build blurbs.
163 * pathnames.h: has been removed. Gprof now has no filename
164 dependencies in it.
165 * gprof.c: Lint.
166
167 Sat Jul 11 18:07:21 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
168
169 * Makefile.in: define man1dir and install the man page
170
171 Fri Jul 10 21:14:08 1992 david d `zoo' zuhn (zoo@cygnus.com)
172
173 * Makefile.in: added dummy info and install-info targets
174
175 Thu Jun 4 11:34:02 1992 Mark Eichin (eichin at cygnus.com)
176
177 * lookup.c: fixed fencepost in nllookup and added dbg_nllookup for
178 help in debugging the problem (with -DDEBUG)
179 * gprof.c: symbol values are now real values, don't add the vma
180 anymore. (done for solaris; should verify this on other platforms)
181 * ChangeLog: created.
This page took 0.03386 seconds and 5 git commands to generate.