我使用以下方法在 C 程序中嵌入了一个文本文件:http ://www.linuxjournal.com/content/embedding-file-executable-aka-hello-world-version-5967
a.out:prog.c file.text
objcopy --input binary --output elf64-x86-64 --binary-architecture i386 file.text file.o
gcc prog.c file.o
objcopy需要使用“--output”选项指定目标。
如何在 Makefile 中设置“--output”,以便 objcopy 使用用户的架构?
谢谢。