|
Atari coding BBS
Re: gcc and hatari debugging |
Posted by: dml
|
Jul,06.2017-17:24
|
Hi!
There are at least two different ways to get labels into Hatari from an external program. Hatari can sometimes lift them direct from the .prg by using the command:
'symbols prg'
This works fine with Devpac/VASM programs - however I don't remember it working too well with GCC (4.6). It just reports no symbols or complains about the format.
There is a separate route you can use for GCC programs. Use the 'nm' tool which comes with gcc to output an ascii file for the symbol table.
You then filter this file (with grep, SED or whatever) to get rid of lines representing locals, interrupt vectors or other stuff you don't want during debugging (or profiling). You can then import the filtered file into Hatari with:
'symbols mysym.txt TEXT DATA BSS'
The last 3 terms specify the order/mapping of symbols in the .txt to the various memory spaces at runtime. However this process is also a bit funny - if you get problems with offsets being wrong for some symbols (particularly data/bss), try just using 'TEXT' or 'TEXT TEXT BSS'. It's been a while since I used this so I can't remember exactly the magic combination that works :D
If this isn't clear I can dig out the relevant make rules as an example.
|
[All messages in this thread] [Start new thread]
What's the anti-troll code? That's your personal code to be able to add comments and messages on the dhs.nu site.
Don't have a code or forgot it? Fix it here.
|