LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1518|回复: 6

用gcc 编译后的以.o后缀文件怎么执行看结果?

[复制链接]
发表于 2003-6-25 20:55:48 | 显示全部楼层 |阅读模式
用gcc 编译后的以.o后缀文件怎么执行看结果?
请指点
发表于 2003-6-25 22:43:46 | 显示全部楼层
./a.out
发表于 2003-6-26 00:10:43 | 显示全部楼层
gcc -c test1.c -o test1.o
gcc -c test2.c -o test2.o
gcc test.o test2.o -o test
./test
发表于 2003-6-26 07:10:01 | 显示全部楼层
.o 是目标文件,object,要连接以后才能运行
 楼主| 发表于 2003-6-27 10:18:40 | 显示全部楼层

怎么样link讷????

我试了./hello.o,报错:bash: ./hello.o: Permission denied
我试link,但不知道命令参数,help也没有说清楚.
发表于 2003-6-27 10:29:23 | 显示全部楼层
有源码吗?
有的话用gcc hello.c -o hello编译,直接执行hello就行了。
没有的话用gcc hello.o -o hello也行。
发表于 2003-6-27 14:04:08 | 显示全部楼层
o的是模块,要链接后才能执行的
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表