An object file is a file containing object code, meaning relocatable format machine code that is usually not directly executable.
Questions tagged [object-file]
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