aarch64-elf-gdb

GNU debugger for aarch64-elf cross-development targeting ARM64

brewmacoslinux
Try with needOr install directly
Source

About

GNU debugger for aarch64-elf cross development

Commands

aarch64-elf-gdb

Examples

Start debugging an aarch64-elf executable$ aarch64-elf-gdb ./program.elf
Connect to a remote GDB server on localhost:3333$ aarch64-elf-gdb -ex 'target remote localhost:3333' ./program.elf
Load symbols and set a breakpoint at main$ aarch64-elf-gdb -ex 'break main' -ex 'run' ./program.elf