version `GLIBC_2.17' not found 解决方法
时间:2019-01-17 11:23:30
收藏:0
阅读:1597
1、先查看是哪个函数用的是GLIBC_2.17
root@emb-pc:/home/emb/temp# nm lib61850.so | grep GLIBC_2.17
U clock_gettime@@GLIBC_2.172、查看clock_gettime 帮助:
root@emb-pc:/home/emb/temp# man clock_gettime 其中有提示:Link with -lrt (only for glibc versions before 2.17).
3、编绎时加上链接选项,问题得以解决。
原文:https://www.cnblogs.com/dwchenxj/p/10281224.html
评论(0)