2020-01-13 06:50:47 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Set this environment variable to override the default debugger.
|
|
|
|
#
|
|
|
|
[ -z "$SERENITY_KERNEL_DEBUGGER" ] && SERENITY_KERNEL_DEBUGGER="gdb"
|
|
|
|
|
|
|
|
# The QEMU -s option (enabled by default in ./run) sets up a debugger
|
|
|
|
# remote on localhost:1234. So point our debugger there, and inform
|
|
|
|
# the debugger which binary to load symbols, etc from.
|
|
|
|
#
|
2021-04-20 16:37:33 +00:00
|
|
|
exec $SERENITY_KERNEL_DEBUGGER \
|
2021-03-07 19:37:29 +00:00
|
|
|
-ex "file $(dirname "$0")/../Build/${SERENITY_ARCH:-i686}/Kernel/Kernel" \
|
2020-01-13 06:50:47 +00:00
|
|
|
-ex 'set arch i386:intel' \
|
2021-04-20 16:37:33 +00:00
|
|
|
-ex 'target remote localhost:1234' \
|
|
|
|
-ex "source $(dirname "$0")/serenity_gdb.py" \
|
|
|
|
"$@"
|