- 论坛徽章:
- 0
|
第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 |
|