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 -fPIC -c 123.c
gcc -shared -o 123.so 123.o