On Mon, Dec 29, 1997 at 11:24:15AM -0800, Stephen Zander wrote:
> The libc6-dbg package has a problem. A simple test:
> 
> $ cat t.c
> int main () { return 0; }
> $ gcc -pg -o t t.c -lc_p
> $ ./t
> Segmentation fault (core dumped)
> $ gcc -static -pg -o t t.c -lc_p
> $ ./t
> $ exit

Use -profile instead of -pg/-lc_p when profiling, e.g.
$ gcc -profile -o t t.c

David
-- 
David Engel                        ODS Networks
[EMAIL PROTECTED]                   1001 E. Arapaho Road
(972) 234-6400                     Richardson, TX  75081


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .

Reply via email to