gpt4 book ai didi

python - Cython 编译正常,但找不到符号 : __ZNSs4_Rep20_S_empty_rep_storageE when running on Mac OS

转载 作者:行者123 更新时间:2023-11-28 04:45:27 24 4
gpt4 key购买 nike

系统:Mac OS 10.12.6。 Python:来自 Anoconda3 的 Python 3.5.2。 Cython==0.28.

我用

设置和编译了 Cython
# the .pyx file 
from libc.stdint cimport *
cimport CLexActivator
def SetProductFile(filePath):
cdef bytes py_bytes = filePath.encode()
cdef const char* c_string = py_bytes
cdef int32_t status = CLexActivator.SetProductFile(c_string)
print(status)
return status

# the setup file
from distutils.core import setup
from distutils.extension import Extension
from Cython.Build import cythonize
ext_modules=[
Extension("PyLexActivator",
sources=["PyLexActivator.pyx"],
language='c',
extra_objects=["libLexActivator.a"],
)
]
setup(
name = "PyLexActivator",
ext_modules = cythonize(ext_modules)
)

我使用 python setup.py build_ext --inplace 进行编译。

Compiling PyLexActivator.pyx because it changed.
[1/1] Cythonizing PyLexActivator.pyx
running build_ext
building 'PyLexActivator' extension
creating build
creating build/temp.macosx-10.6-x86_64-3.5
/usr/bin/clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/o/anaconda/include -arch x86_64 -I. -I/Users/o/anaconda/include/python3.5m -c PyLexActivator.c -o
build/temp.macosx-10.6-x86_64-3.5/PyLexActivator.o
/usr/bin/clang -bundle -undefined dynamic_lookup -L/Users/o/anaconda/lib -arch x86_64 build/temp.macosx-10.6-x86_64-3.5/PyLexActivator.o libLexActivator.a -L/Users/o/anaconda/lib -o /path to/PyLexActivator.cpython-35m-darwin.so

运行import PyLexActivator时出错

dlopen(/path to/PyLexActivator.cpython-35m-darwin.so, 2): 
Symbol not found: __ZNSs4_Rep20_S_empty_rep_storageE
Referenced from: /path to/PyLexActivator.cpython-35m-darwin.so
Expected in: flat namespace
in /path to/PyLexActivator.cpython-35m-darwin.so

我不知道 __ZNSs4_Rep20_S_empty_rep_storageE 代表什么。由于 .pyx 使用静态库 libLexActivator.a 编译,我猜这个错误可能来自未知引用。但是我不知道怎么解决。

我也是用otool -L来显示

PyLexActivator.cpython-35m-darwin.so:
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1238.60.2)

PS:如果我使用language="c++",还有一个错误Symbol not found: _kSCPropNetProxiesHTTPPort

最佳答案

首先,缺少的函数是一个 C++ 损坏的名称。现在大多数编译器都带有 demangle 工具,或者您可以使用像 this one 这样的在线 demangler。 ,适用于所有不太古老的 clang++、g++ 和 MSVC 版本。结果是 _std::string::_Rep::_S_empty_rep_storage

这显然是 C++ 标准库的一部分。问题是您已经编译了一些代码以使用 C++ std::string,但还没有链接 C++ stdlib。它不是您的 Cython 生成的代码,也不是 Python,所以大概是 libLexActivator.a

解决这个问题的简单方法是 have Cython compile all of your code as C++ instead of C ,通过在您的 cythonize 调用中添加 language="c++" 。这比您需要的稍微极端一点,但可能没问题。

或者,您可以只选择正确的 C++ stdlib 并链接到它。这与 Mac 上的 clang 有点混淆,因为它们有两个,libc++libstdc++。最近的版本默认为前者(libc++ 是一个较新的实现,由 LLVM/Clang 团队构建,可以更好地与 C++11 及更高版本一起工作)。但是如果你正在为 10.6 构建,我不确定这是否仍然正确。因此,您可能需要对其进行研究(或询问 C++、Mac 和 Clang 相关标签方面的专家),或者两者都试一下看看。


根据您的评论,在您修复该问题后,您会得到另一个缺失的符号,_kSCPropNetProxiesHTTPPort。这种独特的命名风格几乎可以肯定意味着它是由 Apple 的 CoreFoundation 框架或位于它之上的其他 C 框架之一的某些东西导出的常量。但不要猜测,只需将其粘贴到您最喜欢的搜索引擎中,您就会找到the docs。 ,这表明它是 SystemConfiguration 框架的一部分。因此,您还需要将其添加到构建中。

此时,很明显 libLexActivator.a 不仅仅是简单的 C/POSIX 代码;它有一些需要链接的平台依赖项(据我所知,它也可能有第三方依赖项)。因此,最好的办法是找到它的文档并查看与它的链接需要什么。 (如果没有这样的文档,你应该能够从 Makefile 和/或其他构建工具中找到它,但如果你不知道如何,你真的应该问一个单独标记的C++ 帮助的问题。)

关于python - Cython 编译正常,但找不到符号 : __ZNSs4_Rep20_S_empty_rep_storageE when running on Mac OS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49353463/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com