Meta: Don't try to enable GDB support on Windows
This probably didn't work before either but the option was silently ignored by GDB. Unfortunately 7.2.0-rc0 isn't so kind.
This commit is contained in:
parent
67865306d3
commit
3287aa20b1
Notes:
sideshowbarker
2024-07-17 07:19:27 +09:00
Author: https://github.com/gunnarbeutner Commit: https://github.com/SerenityOS/serenity/commit/3287aa20b1 Pull-request: https://github.com/SerenityOS/serenity/pull/16065
1 changed files with 4 additions and 0 deletions
|
@ -238,6 +238,10 @@ if [ -z "$SERENITY_HOST_IP" ]; then
|
|||
SERENITY_HOST_IP="127.0.0.1"
|
||||
fi
|
||||
|
||||
if command -v wslpath >/dev/null; then
|
||||
SERENITY_DISABLE_GDB_SOCKET=1
|
||||
fi
|
||||
|
||||
if [ -z "$SERENITY_DISABLE_GDB_SOCKET" ]; then
|
||||
SERENITY_EXTRA_QEMU_ARGS="$SERENITY_EXTRA_QEMU_ARGS -gdb tcp:${SERENITY_HOST_IP}:1234"
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue