当前位置: 技术问答>linux和unix
紧急提问,我最简单地调用一个.so库,为什么会出错
来源: 互联网 发布时间:2014-12-09
本文导语: 在我程序中: ... #include void *FunctionLib; int (*Fun)(); int main(void) { .... FunctionLib=dlopen("./hello.so",RTLD_LAZY); ........ } 可是报错说 undefined reference to 'dlopen' why? | 在编译时使用gcc -rdynamic -o xxxx x...
在我程序中:
...
#include
void *FunctionLib;
int (*Fun)();
int main(void)
{
....
FunctionLib=dlopen("./hello.so",RTLD_LAZY);
........
}
可是报错说
undefined reference to 'dlopen'
why?
...
#include
void *FunctionLib;
int (*Fun)();
int main(void)
{
....
FunctionLib=dlopen("./hello.so",RTLD_LAZY);
........
}
可是报错说
undefined reference to 'dlopen'
why?
|
在编译时使用gcc -rdynamic -o xxxx xxxx.c -ldl