如何在 Debian Buster 上安装 php 调试符号?
Posted
技术标签:
【中文标题】如何在 Debian Buster 上安装 php 调试符号?【英文标题】:How to install php debug symbols on Debian Buster? 【发布时间】:2020-08-12 07:06:15 【问题描述】:我正在尝试为 Debian Buster 中的 php-fpm 上发生的一些分段错误获取有意义的回溯。 看了Debian's guide,我明白了
-
我需要添加调试仓库
deb http://deb.debian.org/debian-debug/ buster-debug main
我需要安装debian-goodies
以便我可以使用find-dbgsym-packages
搜索我的调试符号包
但似乎find-dbgsym-packages /usr/bin/php
的输出中缺少 php 调试符号,这些是列出的包:
libargon2-1-dbgsym
libgcc1-dbg
libicu63-dbgsym
liblzma5-dbgsym
libpcre2-dbg
libsodium23-dbgsym
libssl1.1-dbgsym
libstdc++6-8-dbg
libxml2-dbg
php7.3-cli-dbgsym
zlib1g-dbg
我期待找到像 php7.3-dbgsym
这样的包...我错过了什么?
【问题讨论】:
运气好吗? 7.4面临同样的问题。尝试将 --enable-debug 添加到 Docker 文件中的 PHP_EXTRA_CONFIGURE_ARGS github.com/docker-library/php/blob/master/7.4/buster/apache/… 但 gdb 仍然显示 Reading symbols from /usr/local/bin/php...(no debugging symbols found)...done. 【参考方案1】:我期待找到一个像 php7.3-dbgsym 这样的包......我错过了什么?
您缺少php7.3-cli-dbgsym
中包含的调试符号。
安装 find-dbgsym-packages
找到的所有软件包,并再次分析您的 core
。
【讨论】:
我听从了你的建议,但gdb
bt
看起来和没有安装调试符号一样(很多 ??
调用)。【参考方案2】:
现在好像可以加个自动下载器了:
https://wiki.debian.org/HowToGetABacktrace#Automatically_loading_debugging_symbol_from_the_Internet
只需在控制台中输入:
export DEBUGINFOD_URLS="https://debuginfod.debian.net"
然后运行你的 PHP 脚本:
$ gdb -args /usr/bin/php my_faulty_script.php
(gdb) run
...
(wait for the crash)
...
(gdb) bt
【讨论】:
以上是关于如何在 Debian Buster 上安装 php 调试符号?的主要内容,如果未能解决你的问题,请参考以下文章
相同的 Web API 代码适用于 Windows 10,但不适用于 Linux Debian Buster