0


python使用ctypes调用第三方库时出现undefined symbol分析

今天在用python 调用c++库文件时出现了一个错误,这里主要记录一下解决问题的思路。

1.出现错误

在使用python 中使用中调用第三方so库时

import ctypes
cpp = ctypes.CDLL('./detector.so')

出现如下错误:

Traceback (most recent call last):
File “detection.py”, line 143, in
face_detection(image_path)
File “detection.py”, line 52, in face_detection
cpp = ctypes.CDLL(’./detector.so’)
File “/usr/lib/python3.8/ctypes/init.py”, line 373, in init
self._handle = _dlopen(self._name, mode)
OSError: ./detector.so: undefined symbol: __powf_finite

这是由于未定义__powf_finite引起的。

2.分析步骤

(1)使用file命令检查so库的架构,看是否平台一致

file detector.so

输出:
detector.so: ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=8ac2d2c5490394447e21cf383f1428d8ad70be7a, with debug_info, not stripped
发现平台是没有问题的。

(2)使用 ldd -r xxx.so 查看so库链接状态和错误信息

ldd -r detector.so

输出如下:
在这里插入图片描述

确实存在 undefined symbol: __powf_finite (./detector.so) 等问题,

(3)使用c++filt 定位错误位置

使用以下命令来查找在c++代码中的位置

c++filt __powf_finite

最后面发现是我c++代码的问题,我在c++代码中又引用了第三方库.a文件,是.a文件的问题,这个文件是以前的老代码生成的,自己重新编译源码生成新的 .a文件就可以解决了。

标签: c++ ctypes

本文转载自: https://blog.csdn.net/u012505617/article/details/119248870
版权归原作者 liguiyuan112 所有, 如有侵权,请联系我们删除。

“python使用ctypes调用第三方库时出现undefined symbol分析”的评论:

还没有评论