gcc不能链接.so动态链接库 100

编译了一个动态链接库libhello.so文件到/usr/local/lib下,hello主要写了一个inthello_add(inta,intb)配置了/etc/ld.... 编译了一个动态链接库libhello.so文件到/usr/local/lib下,hello主要写了一个int hello_add(int a,int b)配置了/etc/ld.so.conf的文件,添加了/usr/local/lib,也ldconfig了,完了编写程序

#include <stdio.h>
int main()
{
int a = 3, b = 4;
printf("%d + %d = %d", a, b, hello_add(a,b));
return 0;
}
编译gcc -o hellotest -lhello hellotest.c
出错,提示
hellotest.c: In function ‘main’:
hellotest.c:10:31: warning: implicit declaration of function ‘hello_add’ [-Wimplicit-function-declaration]
printf("%d + %d = %d",a,b,hello_add(a,b));
^
/tmp/cc6EVqbI.o: In function `main':
hellotest.c:(.text+0x29): undefined reference to `hello_add'
collect2: error: ld returned 1 exit status
求解!!!
展开
 我来答
cnf1980
2016-05-13 · TA获得超过1.5万个赞
知道大有可为答主
回答量:1.2万
采纳率:54%
帮助的人:2603万
展开全部
gcc hellotest.c -o helltest -L ./ -lhello
hello.so 要放到当前目录下测试。
追问
当前目录也是不行的,我都试过,不知道为什么。
hjjdebug
2018-03-06
知道答主
回答量:36
采纳率:0%
帮助的人:5.1万
展开全部
export LD_LIBRARY_PATH="." 即可优先加载当前目录下的库文件. 否则不会搜索当前目录.
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式