Replies: 1 comment
-
We have a predefined filters:
If you want to show disasm for full elf file, you can use right-click menu command and then a ${ProjectName}.elf.edasm file will be generated and with highlight objdump output |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a PostBuild Task that does the following:
arm-none-eabi-objdump -d ${OutDir}/${ProjectName}.elf > ${OutDir}/${ProjectName}.objdump
This works, no problems. However, the
*.objdump
file won't show in the "Output Files" view. i.e., it is in the filesystem at${OutDir}
but not showing in the graphical view "Output Files".If I change output extension to be, say
*.objdump.map
then it will show up in the "Output Files" graphical view.Is there any way to change the filter so this *.objdump file can be seen without converting it to one of the predefined filters, which seems to be {
*.bin, *.elf, *.hex, *.map, *.map.view
} files?awesome project btw. very neat lightweight IDE that just works.
on an unrelated note--does anyone know of any good syntax highlighters that can highlight objdump output?
Thanks for any help!
Beta Was this translation helpful? Give feedback.
All reactions