Como posso executar o hp-systray a partir do gdb?

0

Eu gostaria de poder executar hp-systray de gdb para obter um stacktrace e ajudar a consertar um muito irritante bug que existe há algum tempo. No entanto, se eu tentar executar

gdb hp-systray 2>&1 | tee ~/gdb-hp-systray.txt

de acordo com o artigo do Wiki do Ubuntu sobre a obtenção de um backtrace, recebo a seguinte saída:

GNU gdb (Ubuntu/Linaro 7.4-0ubuntu1) 7.4
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
"/usr/bin/hp-systray": not in executable format: File format not recognized

Além disso, o comando gdb ' run retorna o seguinte:

(gdb) run
Starting program:  
No executable file specified.
Use the "file" or "exec-file" command.

A execução de hp-systray sozinho no terminal funciona como esperado, então, como posso executá-lo a partir de gdb ?

    
por Christopher Kyle Horton 06.03.2012 / 05:54

1 resposta

1

hp-systray é um script python, então tente:

$ gdb --args python /usr/bin/hp-systray
    
por tumbleweed 06.03.2012 / 08:37