mirror of https://github.com/pwndbg/pwndbg.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
313 B
Bash
15 lines
313 B
Bash
#!/bin/bash
|
|
|
|
make -C binaries
|
|
|
|
qemu-aarch64 \
|
|
-g 1234 \
|
|
-L /usr/aarch64-linux-gnu/ \
|
|
./binaries/reference-binary.aarch64.out &
|
|
|
|
gdb-multiarch \
|
|
-ex "file ./binaries/reference-binary.aarch64.out" \
|
|
-ex "target remote :1234" \
|
|
-ex "source ./tests/test_qemu_user_aarch64.py" \
|
|
-ex "quit"
|