- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个使用此 C++ matplotlib 包装器的项目 matplotlibcpp.h .
使用这个原始头文件的一个最小例子是
#include "matplotlibcpp.h"
namespace plt = matplotlibcpp;
int main() {
plt::plot({1,3,2,4});
plt::show();
}
注意:似乎段错误并不依赖于上面的示例,而是真正出现在调用 mathplotlibcpp.h
头文件中的函数的任何程序中。我选择这个绘图示例是因为实际的绘图会起作用,你会看到绘图但是一旦你关闭它并且程序完成,你就会得到段错误。此外,它是项目 github 页面上的官方示例之一。
您也可以将主函数中的两行替换为例如plt::figure()
并且您仍然会得到一个工作程序和一个段错误在执行的最后。
用python2.7编译好像没问题
g++ minimal.cpp -std=c++11 -I/usr/include/python2.7 -I/home/<user>/.local/lib/python2.7/site-packages/numpy/core/include/ -lpython2.7
$ ldd a.out
linux-vdso.so.1 (0x00007ffe1f3f7000)
libpython2.7.so.1.0 => /usr/lib/libpython2.7.so.1.0 (0x00007f8320f8f000)
libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x00007f8320db2000)
libm.so.6 => /usr/lib/libm.so.6 (0x00007f8320c6d000)
libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0x00007f8320c53000)
libc.so.6 => /usr/lib/libc.so.6 (0x00007f8320a86000)
libpthread.so.0 => /usr/lib/libpthread.so.0 (0x00007f8320a65000)
libdl.so.2 => /usr/lib/libdl.so.2 (0x00007f8320a5c000)
libutil.so.1 => /usr/lib/libutil.so.1 (0x00007f8320a57000)
/lib64/ld-linux-x86-64.so.2 => /usr/lib64/ld-linux-x86-64.so.2 (0x00007f83211c2000)
用python3.9编译好像会出现segmentation fault
g++ minimal.cpp -std=c++11 -I/usr/include/python3.9 -I/home/pascal/.local/lib/python3.9/site-packages/numpy/core/include/ -lpython3.9
此处 ./a.out
导致段错误(核心已转储)
$ ldd a.out
linux-vdso.so.1 (0x00007fff8dbc5000)
libpython3.9.so.1.0 => /usr/lib/libpython3.9.so.1.0 (0x00007f60176ec000)
libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x00007f601750f000)
libm.so.6 => /usr/lib/libm.so.6 (0x00007f60173ca000)
libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0x00007f60173b0000)
libc.so.6 => /usr/lib/libc.so.6 (0x00007f60171e3000)
libpthread.so.0 => /usr/lib/libpthread.so.0 (0x00007f60171c2000)
libdl.so.2 => /usr/lib/libdl.so.2 (0x00007f60171b9000)
libutil.so.1 => /usr/lib/libutil.so.1 (0x00007f60171b4000)
/lib64/ld-linux-x86-64.so.2 => /usr/lib64/ld-linux-x86-64.so.2 (0x00007f6017adf000)
两者都是在使用 arch linux 和 g++ 版本 10.2.0 的系统上编译的。
这是一个 issue在他们的 git 中找到,但到目前为止,还没有人提出解决方案。
现在我将问题隔离为对 Py_Finalize()
的调用。对于 Python3,这会调用 Py_FinalizeEx()
。所以这就是Python2和Python3的区别。
现在在 matplotlibcpp.h
文件中 Py_Finalize()
在析构函数中被调用:
~_interpreter() {
Py_Finalize();
}
如果你把它注释掉,你就摆脱了段错误。现在我真的对这个最终确定函数感到困惑,因为文档状态(对于 python3)
Bugs and caveats: The destruction of modules and objects in modules isdone in random order; this may cause destructors (del() methods)to fail when they depend on other objects (even functions) or modules.Dynamically loaded extension modules loaded by Python are notunloaded. Small amounts of memory allocated by the Python interpretermay not be freed (if you find a leak, please report it). Memory tiedup in circular references between objects is not freed. Some memoryallocated by extension modules may not be freed. Some extensions maynot work properly if their initialization routine is called more thanonce; this can happen if an application calls Py_Initialize() andPy_FinalizeEx() more than once.
现在头文件中还有一个 Kill()
函数调用解构器 explicitity 但它从未被使用过。
现在,似乎只有当我们超出范围时才会调用解构函数,即它们从不使用 free()
或 delete
。而且我认为它只是尝试释放已经释放的东西,但弄清楚它有点困难,因为我对 C Python API 非常不熟悉。
堆栈跟踪:(我希望我正确安装了 python 调试符号。不确定为什么 Qt5 小部件符号不显示。)
注意:我使用 -std=c++17 -Wall -g
另请注意,函数 matplotlibcpp::detail::_interpreter::interkeeper(bool)
显式调用解构函数,请参阅 kill()
。我之所以提到,是因为在下面的堆栈跟踪中提到了这个函数——但我不确定为什么。该函数的源代码具有以下注释:
/*
For now, _interpreter is implemented as a singleton since its currently not possible to have
multiple independent embedded python interpreters without patching the python source code
or starting a separate process for each. [1]
Furthermore, many python objects expect that they are destructed in the same thread as they
were constructed. [2] So for advanced usage, a `kill()` function is provided so that library
users can manually ensure that the interpreter is constructed and destroyed within the
same thread.
1: http://bytes.com/topic/python/answers/793370-multiple-independent-python-interpreters-c-c-program
2: https://github.com/lava/matplotlib-cpp/pull/202#issue-436220256
*/
堆栈跟踪:
Thread 1 "MAIN" received signal SIGSEGV, Segmentation fault.
0x00007fffde884225 in ?? () from /usr/lib/libQt5Widgets.so.5
(gdb) bt
#0 0x00007fffde884225 in ?? () from /usr/lib/libQt5Widgets.so.5
#1 0x00007fffdf14540a in ?? () from /usr/lib/python3.9/site-packages/PyQt5/QtWidgets.abi3.so
#2 0x00007fffe2bc67eb in ?? () from /usr/lib/python3.9/site-packages/PyQt5/QtCore.abi3.so
#3 0x00007ffff7d0ea5c in cfunction_vectorcall_NOARGS (func=0x7fffe2cccb80, args=<optimized out>, nargsf=<optimized out>, kwnames=<optimized out>) at Objects/methodobject.c:485
#4 0x00007ffff7e0ca69 in atexit_callfuncs (module=<optimized out>) at ./Modules/atexitmodule.c:93
#5 0x00007ffff7c744e7 in call_py_exitfuncs (tstate=0x555555597240) at Python/pylifecycle.c:2374
#6 0x00007ffff7dfc627 in Py_FinalizeEx () at Python/pylifecycle.c:1373
#7 0x000055555555926d in matplotlibcpp::detail::_interpreter::~_interpreter (this=0x55555555e620 <matplotlibcpp::detail::_interpreter::interkeeper(bool)::ctx>,
__in_chrg=<optimized out>) at /home/pascal/test/cpp/foo/matplotlibcpp.h:288
#8 0x00007ffff76d24a7 in __run_exit_handlers () from /usr/lib/libc.so.6
#9 0x00007ffff76d264e in exit () from /usr/lib/libc.so.6
#10 0x00007ffff76bab2c in __libc_start_main () from /usr/lib/libc.so.6
#11 0x000055555555646e in _start ()
最佳答案
我无法轻松访问可以测试它的 Linux,但我想我现在明白发生了什么。
matplotlibcpp
使用静态变量来保存 Python 解释器(参见 interkeeper(bool should_kill)
中的第 129 行)。与 C++ 静态函数变量一样,它在第一次调用函数时初始化,并在程序退出时销毁 (reference)。
当 main
完成时,libc
为所有共享库和您的程序运行清理例程(即堆栈跟踪中的 __run_exit_handlers
).由于您的程序是 C++ 程序,因此其退出处理程序的一部分正在破坏所有使用过的静态变量。其中之一是 Python 解释器。它的析构函数调用 Py_Finalize()
,这是 Python 的清理例程。到目前为止,一切都很好。
Python 有一个类似的atexit
机制,允许来自任何地方的 Python 代码注册在解释器关闭期间应该调用的函数。显然,这里选择使用的后端 matplotlib 是 PyQt5。它似乎注册了这样的 atexit 回调。
PyQt5 的回调被调用,然后崩溃。请注意,这是现在的内部 PyQt5 代码。为什么会崩溃?我“有根据”的猜测是,在调用程序的退出处理程序之前,Qt 的库退出处理程序在第 2 步中已经调用。这显然会导致库中出现一些奇怪的状态(也许某些对象被释放了?)和崩溃。
这留下了两个有趣的问题:
如何解决这个问题?解决方案应该是在程序退出之前销毁 ctx
,这样 Python 解释器就会在任何共享库自行终止之前被销毁。 Static lifetimes are known for causing similar problems .如果将 matplotlibcpp 的接口(interface)更改为不使用全局静态状态不是一个可能的解决方案,我认为您真的必须在主函数末尾手动调用 plt::detail::_interpreter::kill()
.您应该能够使用 atexit()
并注册一个在库拆卸之前终止解释器的回调——不过我还没有测试过。
为什么这行得通?我的猜测是,也许 PyQt5 的回调中的某些内容已更改,现在导致此崩溃,或者您在 Python 2 中使用了不同的后端。如果在程序退出之前没有其他库破坏性终止,这很好。
关于python - Py_Finalize() 导致 Python 3.9 的段错误但不是 Python 2.7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67533541/
我已经使用 vue-cli 两个星期了,直到今天一切正常。我在本地建立这个项目。 https://drive.google.com/open?id=0BwGw1zyyKjW7S3RYWXRaX24tQ
您好,我正在尝试使用 python 库 pytesseract 从图像中提取文本。请找到代码: from PIL import Image from pytesseract import image_
我的错误 /usr/bin/ld: errno: TLS definition in /lib/libc.so.6 section .tbss mismatches non-TLS reference
我已经训练了一个模型,我正在尝试使用 predict函数但它返回以下错误。 Error in contrasts<-(*tmp*, value = contr.funs[1 + isOF[nn]])
根据Microsoft DataConnectors的信息我想通过 this ODBC driver 创建一个从 PowerBi 到 PostgreSQL 的连接器使用直接查询。我重用了 Micros
我已经为 SoundManagement 创建了一个包,其中有一个扩展 MediaPlayer 的类。我希望全局控制这个变量。这是我的代码: package soundmanagement; impo
我在Heroku上部署了一个应用程序。我正在使用免费服务。 我经常收到以下错误消息。 PG::Error: ERROR: out of memory 如果刷新浏览器,就可以了。但是随后,它又随机发生
我正在运行 LAMP 服务器,这个 .htaccess 给我一个 500 错误。其作用是过滤关键字并重定向到相应的域名。 Options +FollowSymLinks RewriteEngine
我有两个驱动器 A 和 B。使用 python 脚本,我在“A”驱动器中创建一些文件,并运行 powerscript,该脚本以 1 秒的间隔将驱动器 A 中的所有文件复制到驱动器 B。 我在 powe
下面的函数一直返回这个错误信息。我认为可能是 double_precision 字段类型导致了这种情况,我尝试使用 CAST,但要么不是这样,要么我没有做对...帮助? 这是错误: ERROR: i
这个问题已经有答案了: Syntax error due to using a reserved word as a table or column name in MySQL (1 个回答) 已关闭
我的数据库有这个小问题。 我创建了一个表“articoli”,其中包含商品的品牌、型号和价格。 每篇文章都由一个 id (ID_ARTICOLO)` 定义,它是一个自动递增字段。 好吧,现在当我尝试插
我是新来的。我目前正在 DeVry 在线学习中级 C++ 编程。我们正在使用 C++ Primer Plus 这本书,到目前为止我一直做得很好。我的老师最近向我们扔了一个曲线球。我目前的任务是这样的:
这个问题在这里已经有了答案: What is an undefined reference/unresolved external symbol error and how do I fix it?
我的网站中有一段代码有问题;此错误仅发生在 Internet Explorer 7 中。 我没有在这里发布我所有的 HTML/CSS 标记,而是发布了网站的一个版本 here . 如您所见,我在列中有
如果尝试在 USB 设备上构建 node.js 应用程序时在我的树莓派上使用 npm 时遇到一些问题。 package.json 看起来像这样: { "name" : "node-todo",
在 Python 中,您有 None单例,在某些情况下表现得很奇怪: >>> a = None >>> type(a) >>> isinstance(a,None) Traceback (most
这是我的 build.gradle (Module:app) 文件: apply plugin: 'com.android.application' android { compileSdkV
我是 android 的新手,我的项目刚才编译和运行正常,但在我尝试实现抽屉导航后,它给了我这个错误 FAILURE: Build failed with an exception. What wen
谁能解释一下?我想我正在做一些非常愚蠢的事情,并且急切地等待着启蒙。 我得到这个输出: phpversion() == 7.2.25-1+0~20191128.32+debian8~1.gbp108
我是一名优秀的程序员,十分优秀!