Re: [racket] Statistical profiler doesn't return a complete report with JIT

2012-11-16 Thread Jon Rafkind
Ok it might be due to the dh_strip rule. I have overriden it to do nothing for now. Let's see if tomorrows package works. On 11/16/2012 04:09 PM, Kevin Tew wrote: It looks stripped to me! no .debug sections. ➜ ~/temp/usr/bin git:(master) ✗ objdump -h racket Fri Nov 16 11 2012 04:07:16 PM: r

Re: [racket] Statistical profiler doesn't return a complete report with JIT

2012-11-16 Thread Diogo F. S. Ramos
Jon Rafkind writes: > Looking over the build log it doesn't look like the racket binary is stripped. > > https://launchpadlibrarian.net/122407607/buildlog_ubuntu-raring-amd64.racket_5.3.1.5-20121108~raring_BUILDING.txt.gz It would be nice if someone with the same system of mine (Ubuntu 12.04 x86

Re: [racket] Statistical profiler doesn't return a complete report with JIT

2012-11-16 Thread Kevin Tew
It looks stripped to me! no .debug sections. ➜ ~/temp/usr/bin git:(master) ✗ objdump -h racket Fri Nov 16 11 2012 04:07:16 PM: racket: file format elf64-x86-64 Sections: Idx Name Size VMA LMA File off Algn 0 .interp 001c 00400270 00400270 0270 2**0 CONTENTS, ALLOC, LO

Re: [racket] Statistical profiler doesn't return a complete report with JIT

2012-11-16 Thread Jon Rafkind
Looking over the build log it doesn't look like the racket binary is stripped. https://launchpadlibrarian.net/122407607/buildlog_ubuntu-raring-amd64.racket_5.3.1.5-20121108~raring_BUILDING.txt.gz On 11/16/2012 08:46 AM, Diogo F. S. Ramos wrote: Matthew Flatt writes: Does the executable from

Re: [racket] Statistical profiler doesn't return a complete report with JIT

2012-11-16 Thread Diogo F. S. Ramos
Matthew Flatt writes: > Does the executable from the package have debugging info stripped away? > The Racket JIT needs some DWARF information to reconstruct the call > stack for backtraces and profiling on x86_64. I don't know if my method is conclusive, but running `gdb' with the package's exec

Re: [racket] Statistical profiler doesn't return a complete report with JIT

2012-11-16 Thread Matthew Flatt
Does the executable from the package have debugging info stripped away? The Racket JIT needs some DWARF information to reconstruct the call stack for backtraces and profiling on x86_64. At Fri, 16 Nov 2012 13:18:54 -0200, Diogo F. S. Ramos wrote: > I'm using Ubuntu 12.04 x86_64 and the statistical

[racket] Statistical profiler doesn't return a complete report with JIT

2012-11-16 Thread Diogo F. S. Ramos
I'm using Ubuntu 12.04 x86_64 and the statistical profiler is not returning a report with the procedures called during the execution of a thunk. The package installed through the PPA (using apt-get) was `5.3.1-20121108~precise'. I've attached a test program at the bottom of this message. When th