diff options
author | Arnaud Moura <arnaudmoura@gmail.com> | 2023-03-03 23:37:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-03 23:37:12 +0100 |
commit | b2c5f8a05f2f9db6ed06663a077882eb112b3e3f (patch) | |
tree | 3786bd8ee67acdd235da9681d8cf5c6fd1b10bde /bin/nim-gdb | |
parent | 2e2affb13ce13723e5ab1996d05f7b82c184a090 (diff) | |
download | Nim-b2c5f8a05f2f9db6ed06663a077882eb112b3e3f.tar.gz |
fixes #21461 (#21463)
* fixes #21461; Move nim-gdb.py and add nim-lldb.py * fixes bad path for nim-gdb.py
Diffstat (limited to 'bin/nim-gdb')
-rwxr-xr-x | bin/nim-gdb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/nim-gdb b/bin/nim-gdb index 13b361f93..d4d60e432 100755 --- a/bin/nim-gdb +++ b/bin/nim-gdb @@ -14,7 +14,7 @@ else fi # Find out where the pretty printer Python module is -GDB_PYTHON_MODULE_PATH="$NIM_SYSROOT/tools/nim-gdb.py" +GDB_PYTHON_MODULE_PATH="$NIM_SYSROOT/tools/debug/nim-gdb.py" # Run GDB with the additional arguments that load the pretty printers # Set the environment variable `NIM_GDB` to overwrite the call to a |