全部博文(116)
分类:
2005-02-19 23:41:42
在unix 下开发共享库,如果用c来做,方法很简单。打开一个文件,写上一个又一个c函数,就完成一大半工作了。关键在于如何编译。
对于hp-ux来说,编译命令如下:
cc +DD64 -b test.c -o libtest.sl
-b: Generate shared library as output. Compiler generates position-independent code (PIC). Is not compatible with the +ESrel, -dynamic, -noshared options.