x86_64-elf-gdb

GNU debugger for x86_64-elf cross-compilation development

brewmacoslinux
Try with needOr install directly
Source

About

GNU debugger for x86_64-elf cross development

Commands

x86_64-elf-gdb

Examples

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