首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 服务器 > 其他服务器 >

Solaris 10 x86虚拟机上编译动态连接库的有关问题

2013-01-07 
Solaris 10 x86虚拟机下编译动态连接库的问题solaris 10x86 u6、虚拟机环境下编译动态连接阿库的问题:c/c++

Solaris 10 x86虚拟机下编译动态连接库的问题
solaris 10x86 u6、虚拟机环境下编译动态连接阿库的问题:

c/c++代码为:


#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/select.h>
#include <unistd.h>

int abc(int a, int b)
{
    return a + b;
}

int my_socket()
{
    return socket(PF_INET, SOCK_STREAM, 0);
}


编译命令行:
gcc -shared -o 123.so 123.cpp -lsocket -lnsl

编译结果:
文本重定位持续                                  引用的
    针对符号                位移        在文件中
__xnet_socket                       0x1c        /var/tmp//cchdeuju.o
ld: 致命的: 重定位仍旧与可分配但不可写的节相反
collect2: ld returned 1 exit status


请问改如何解决,谢谢了

[解决办法]
http://bbs2.chinaunix.net/viewthread.php?tid=946354
参考这个
[解决办法]
gcc -fPIC -c 123.c

gcc -shared -o 123.so 123.o

热点排行