Skip to content
View hsnovel's full-sized avatar

Organizations

@KeepItDev

Block or report hsnovel

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Debug AArch64 on x64 (and possibly o... Debug AArch64 on x64 (and possibly on other architectures)
    1
    # Wait for gdb
    2
    qemu-aarch64 -L /usr/arm-linux-gnueabihf -g 6969 ./name_of_file
    3
    
                  
    4
    # Launch gdb, if it doesn't work try with --nh which disables the .gdbinit file in the host machine.
    5
    aarch64-linux-gnu-gdb -q -ex 'set architecture arm64' -ex 'target remote localhost:6969' -ex 'layout split' -ex 'layout regs'