Browsing index pages (2 articles)
↧
Object file created by objcopy is not compatible
I have created an object file from a binary file using objcopy as below:objcopy -I binary -O elf32-little --rename-section .data=.text file.bin file.oIn one of the linker script sections I have...
View ArticleAnswer by Florian Weimer for Object file created by objcopy is not compatible
If you have a sufficiently recent version of GAS, you can use this to create an object file from a binary input file using the .incbin directive: .section .rodata .globl input_wavinput_wav: .incbin...
View Article
Browsing index pages (2 articles)