a program for displaying various information about object files. For instance, it can be used as a disassembler.
Questions tagged [objdumb]
1 questions
1
vote
2 answers
what's the purpose of objcopy command?
I'm working on OS development on the Raspberry Pi.
in the makefile I found this command :
kernel.img: kernel.elf
$(ARMGNU)-objcopy kernel.elf -O binary kernel.img
witch copy the kernel.elf object file and generate the file kernel.img
what's theā¦
user14306