i386-elf-gdb

GNU debugger for i386-elf cross-compilation and embedded development

brewmacoslinux
Try with needOr install directly
Source

About

GNU debugger for i386-elf cross development

Commands

i386-elf-gdb

Examples

Start debugging an i386-elf ELF executable$ i386-elf-gdb ./kernel.elf
Connect to a remote GDB server on localhost:1234$ i386-elf-gdb -ex 'target remote localhost:1234' ./kernel.elf
Load symbols and set breakpoint at main function$ i386-elf-gdb -ex 'break main' -ex 'run' ./kernel.elf