1
I’m trying to set up the gdb
for syntax intel
, however I am getting the following message :
Ambiguous set command "dis intel": disable-randomization, disassemble-next-line,
disassembly-flavor, disconnected-dprintf...
I’m tempted the procedures below, but when I perform the second procedure the above message appears.
root@debian:/home/novousuario# gdb -q
(gdb) set dis intel
(gdb) quit
root@debian:/home/novousuario# echo "set dis intel" > ~/.gdbinit
root@debian:/home/novousuario# cat ~/.gdbinit
Perfect, manow.. what will ? Should I perform some sort of configuration to accept abbreviations ?
– MagicHat
No, you don’t. The
gdb
did not accept the abbreviation because it has several commands starting with "dis" (ambiguity error). But if you abbreviate, for example, toset disassembly intel
, will work :)– Gomiero
Massa vlw... I got it...
– MagicHat