Meta: Fix path to kernel binary in debug-kernel.sh

This appears to have been broken since the migration to cmake.
This commit is contained in:
Brian Gianforcaro 2021-02-06 23:14:19 -08:00 committed by Andreas Kling
commit 489fe9b66a
Notes: sideshowbarker 2024-07-18 22:32:20 +09:00

View file

@ -9,6 +9,6 @@
# the debugger which binary to load symbols, etc from. # the debugger which binary to load symbols, etc from.
# #
$SERENITY_KERNEL_DEBUGGER \ $SERENITY_KERNEL_DEBUGGER \
-ex "file $(pwd)/kernel" \ -ex "file $(dirname "$0")/../Build/Kernel/Kernel" \
-ex 'set arch i386:intel' \ -ex 'set arch i386:intel' \
-ex 'target remote localhost:1234' -ex 'target remote localhost:1234'