用gcc怎么生成bin格式文件

发布于 2022-09-23 14:56:54 字数 1124 浏览 9 评论 0

想用gcc得到bin格式的文件,出现找不到库。
使用文本编辑器写一个test.c:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

int main(int argc, char* argv[])
{
        char buf[4];
        memset(buf,0,sizeof(buf));
        printf("hello word";
}

[root@202 test]# gcc -c test.c
[root@202 test]# ld -o test -Ttext 0x0 -e main test.o
test.o(.text+0x2: In function `main':
: undefined reference to `memset'
test.o(.text+0x3: In function `main':
: undefined reference to `printf'

ld出现找不到库,请问怎么修改?

objcopy –R .note –R .comment –S –O binary test test.bin

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

巾帼英雄 2022-09-30 14:56:54

并没有bin格式的文件.
后缀名为bin的文件是出于各种目的的文件.

暮凉 2022-09-30 14:56:54

原帖由 goon86 于 2009-2-5 16:47 发表
ld -o test -Ttext 0x0 -e main test.o

没加libc

  1. ld -o tttest -Ttext 0x0 -e main test.o -lc

复制代码

蓝戈者 2022-09-30 14:56:54

你既然ld,ld不是自然认识libc的,应该-lc

谁与争疯 2022-09-30 14:56:54

《自己动手写操作系统》,不愿意查手册就看这个。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文