You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
879 B
18 lines
879 B
--- rustc-1.61.0-src/src/etc/rust-gdb.orig 2022-05-17 18:29:36.000000000 -0700 |
|
+++ rustc-1.61.0-src/src/etc/rust-gdb 2022-05-18 11:18:13.732709661 -0700 |
|
@@ -14,6 +14,9 @@ fi |
|
RUSTC_SYSROOT="$("$RUSTC" --print=sysroot)" |
|
GDB_PYTHON_MODULE_DIRECTORY="$RUSTC_SYSROOT/lib/rustlib/etc" |
|
|
|
+RUST_STD_BUILD="@BUILDDIR@/library/" |
|
+RUST_STD_SRC="$RUSTC_SYSROOT/lib/rustlib/src/rust/library/" |
|
+ |
|
# Run GDB with the additional arguments that load the pretty printers |
|
# Set the environment variable `RUST_GDB` to overwrite the call to a |
|
# different/specific command (defaults to `gdb`). |
|
@@ -21,4 +24,5 @@ RUST_GDB="${RUST_GDB:-gdb}" |
|
PYTHONPATH="$PYTHONPATH:$GDB_PYTHON_MODULE_DIRECTORY" exec ${RUST_GDB} \ |
|
--directory="$GDB_PYTHON_MODULE_DIRECTORY" \ |
|
-iex "add-auto-load-safe-path $GDB_PYTHON_MODULE_DIRECTORY" \ |
|
+ -iex "set substitute-path $RUST_STD_BUILD $RUST_STD_SRC" \ |
|
"$@"
|
|
|