我使用 libbfd 为包含 x86-64 代码的 Windows 写出 coff 目标文件的内容。写入符号、节和重定位有效,但生成的文件没有在 coff 标头中设置机器类型。0x8664
我在文件开头手动写入以解决此问题。
有没有办法使用 bfd API 来设置对象的机器类型?
这是我编写目标文件的代码:
bfd_init();
auto bfd = bfd_openw("test.obj", "pe-x86-64");
if (!bfd) {
bfd_perror("bfd_openw failed");
return -1;
}
if (!bfd_set_format(bfd, bfd_object)) {
bfd_perror("bfd_set_format failed");
return -1;
}
// now write some sections, symbols and relocations
bfd_close(bfd);
// TODO hack: overwrite first two bytes of file to make it a AMD64 coff file
std::fstream obj_file("test.obj", std::ios::binary | std::ios::in | std::ios::out);
obj_file.seekp(0, std::ios::beg);
obj_file.write("\x64\x86", 2);