Source a python script to gdb plugin?

Tom Tromey tromey@redhat.com
Thu Aug 7 19:17:00 GMT 2008


>>>>> "Neo" == Neo Jia <neojia@gmail.com> writes:

Neo> (gdb) python ./load_libc
Neo>   File "<string>", line 1
Neo>     ./load_libc
Neo>     ^
Neo> SyntaxError: invalid syntax

Neo> Is this the right way to use it?

Nope, try:

python execfile('./load_libc')

Anything after "python" is passed directly to the python interpreter.

Tom



More information about the Gdb mailing list