无法在 Firefox 中调试 Moonlight 插件

发布于 2024-12-28 14:59:32 字数 556 浏览 1 评论 0原文

加载 libmoonplugin.so 时出现以下错误 无法从远程内存读取 JIT 描述符!

以下是完整的 GDB 会话

GNU gdb (Ubuntu/Linaro 7.2-1ubuntu11) 7.2

从 /usr/lib/firefox-4.0/firefox-bin 读取符号...(未找到调试符号)...完毕。

(gdb) 符号文件 /usr/local/lib/moonlight/plugin/libmoonplugin.so

从 /usr/local/lib/moonlight/plugin/libmoonplugin.so 读取符号...完成。

无法从远程内存读取 JIT 描述符!

(gdb) run ~/Desktop/default.html

启动程序: /usr/lib/firefox-4.0/firefox-bin ~/Desktop/default.html

< strong>无法从远程内存读取 JIT 描述符!

(gdb)

On loading libmoonplugin.so I am getting following following error
Unable to read JIT descriptor from remote memory!

Following is complete GDB session

GNU gdb (Ubuntu/Linaro 7.2-1ubuntu11) 7.2

Reading symbols from /usr/lib/firefox-4.0/firefox-bin...(no debugging symbols found)...done.

(gdb) symbol-file /usr/local/lib/moonlight/plugin/libmoonplugin.so

Reading symbols from /usr/local/lib/moonlight/plugin/libmoonplugin.so...done.

Unable to read JIT descriptor from remote memory!

(gdb) run ~/Desktop/default.html

Starting program: /usr/lib/firefox-4.0/firefox-bin ~/Desktop/default.html

Unable to read JIT descriptor from remote memory!

(gdb)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

原来分手还会想你 2025-01-04 14:59:32

要调试 firefox+moonlight,最简单的方法是启动 firefox,然后附加 gdb:

  • 打开 firefox。
  • 在终端中运行此命令以获取 Firefox 进程的 PID:
ps aux | grep firefox-bin
  • 现在启动 gdb,附加到 Firefox 二进制文件:
gdb program (pid)  
(lots of output from gdb)  
(gdb) continue
  • 然后在 Firefox 中导航到要调试的网页。

To debug firefox+moonlight the easiest is to start firefox, then attach gdb:

  • Open firefox.
  • Run this in a terminal to get the pid of the firefox process:
ps aux | grep firefox-bin
  • Now start gdb, attaching to the firefox binary:
gdb program (pid)  
(lots of output from gdb)  
(gdb) continue
  • Then in firefox just navigate to the web page you want to debug.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文