免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 17217 | 回复: 7
打印 上一主题 下一主题

如何编译成.so文件 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-08-11 11:25 |只看该作者 |倒序浏览
我有个驱动程序需要更改, 其中有 xf86xxx.c和xf86xxx.h, 和xf86xxx.so 文件. 修改xf86xxx.c后,想编译成xf86xxx.so

如何做?? 谢谢!!!

论坛徽章:
0
2 [报告]
发表于 2003-08-11 11:31 |只看该作者

如何编译成.so文件

用-G参数

论坛徽章:
0
3 [报告]
发表于 2003-08-11 13:08 |只看该作者

如何编译成.so文件

gcc -fPIC ...
ld -shared ...

论坛徽章:
0
4 [报告]
发表于 2003-08-11 14:30 |只看该作者

如何编译成.so文件

ar 生成.a ld生成.so

论坛徽章:
0
5 [报告]
发表于 2007-06-16 10:49 |只看该作者
用cc怎么编译呢?

论坛徽章:
0
6 [报告]
发表于 2007-06-16 11:01 |只看该作者
我以前写了一个如何向Linux添加自己的静态库和动态库的方法. 你看看.不过这种东西网上有很多的.
静态库
在Linux下的静态库是以.a为后缀的文件。
建静态库
h1.c 源文件
#include<stdio.h>
void hello1()
{
        printf(“the first hello!\n”);
}
h2.c 源文件
#include<stdio.h>
void hello2()
{
        printf(“the second hello!\n”);
}
2.主程序
hello.c 源文件
#include<stdio.h>
int main()
{
        hello1();
        hello2();
        return 0;
}
输入命令:
gcc –c h1.c
gcc –c h2.c
ar –r libhello.a h1.o h2.o
ar –s libhello.a
ranlib libhello.a
最后再
gcc –static hello.c –L. –lhello –o hello即可生成可执行文件。注意要使用-static参数,否则生成的仍然是动态类型的文件,不过对于hello这个库则是采用静态方式来使用的而已。
动态库
1.建动态库
#include<stdio.h>
void hello1()
{
        printf(“the first hello!\n”);
}
h2.c 源文件
#include<stdio.h>
void hello2()
{
        printf(“the second hello!\n”);
}
主程序
hello.c 源文件
#include<stdio.h>
int main()
{
        hello1();
        hello2();
        return 0;
}
输入命令:
gcc –fPIC –g –c h1.c –o libh1.o
gcc –fPIC –g –c h2.c –o libh2.o
gcc –g –shared –W1 –o libh1.so libh1.o –lc
gcc –g –shared –W1 –o libh2.so libh2.o –lc
然后再将主程序与库相连进行编译
gcc –g hello.c –o hello –L. –lh1 –lh2
最后再将当前路径放到库查找路径中去
export LD_LIBRARY_PATH=.LD_LIBRARY_PATY
最后再执行./hello即可运行。

论坛徽章:
0
7 [报告]
发表于 2007-06-16 11:33 |只看该作者
有几个小疑问
1. ar 的 s 参数不是等效于 ranlib 么 ?
如果只使用 ar crs libhello.a h1.o h2.o 在除Linux外的系统中也会有影响么?
(因为没其它的BSD系统,没办法测试)

2.目前动态链接库的静态调用使用的是下面的方法,
g++ -shared -Wl,-soname,libhello.so.0 -o libhello.so.0.0.1 h1.o h2.o -lc
ldconfig -n .
ln -sf libhello.so.0 libhello.so

g++ -g -o hello hello.c -L. -lhello

请问
ld -shared...
这种方式如何生成.so ? 会不会有兼容性的问题?

谢谢

[ 本帖最后由 antonym55 于 2007-6-16 11:57 编辑 ]

论坛徽章:
0
8 [报告]
发表于 2007-06-16 12:27 |只看该作者
第2个问题已经找到
For GCC, you make the object with something like:

    gcc -fPIC -c file.c

That will create file.o, object code which is suitable for dynamic linking.
Then you actually have to link it, which is where the fun begins :).  Here is
a chart for linking in the various operating systems I have tested this stuff
on.

FreeBSD:        ld -Bshareable -o file.so file.o
Solaris:        ld -G -o file.so file.o -ldl
Linux:          ld -Bshareable -o file.so file.o -ldl
IRIX:           ld -shared -o file.so file.o
OSF/1:          ld -shared -o file.so file.o
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP