From 8938b002edbec432be46de7b6f1b9d0a6912873a Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Mon, 20 Dec 2021 00:45:35 +0100 Subject: [PATCH 03/15] move debugger scripts to /usr/share/rust --- src/bootstrap/dist.rs | 2 +- src/etc/rust-gdb | 2 +- src/etc/rust-gdbgui | 2 +- src/etc/rust-lldb | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs index b1fae356d..e7a077134 100644 --- a/src/bootstrap/dist.rs +++ b/src/bootstrap/dist.rs @@ -460,7 +460,7 @@ impl Step for DebuggerScripts { fn run(self, builder: &Builder<'_>) { let host = self.host; let sysroot = self.sysroot; - let dst = sysroot.join("lib/rustlib/etc"); + let dst = sysroot.join("share/rust"); t!(fs::create_dir_all(&dst)); let cp_debugger_script = |file: &str| { builder.install(&builder.src.join("src/etc/").join(file), &dst, 0o644); diff --git a/src/etc/rust-gdb b/src/etc/rust-gdb index b950cea79..559bfe3f1 100755 --- a/src/etc/rust-gdb +++ b/src/etc/rust-gdb @@ -12,7 +12,7 @@ fi # Find out where the pretty printer Python module is RUSTC_SYSROOT="$("$RUSTC" --print=sysroot)" -GDB_PYTHON_MODULE_DIRECTORY="$RUSTC_SYSROOT/lib/rustlib/etc" +GDB_PYTHON_MODULE_DIRECTORY="$RUSTC_SYSROOT/share/rust" # Run GDB with the additional arguments that load the pretty printers # Set the environment variable `RUST_GDB` to overwrite the call to a diff --git a/src/etc/rust-gdbgui b/src/etc/rust-gdbgui index 9744913b6..8722acdcc 100755 --- a/src/etc/rust-gdbgui +++ b/src/etc/rust-gdbgui @@ -41,7 +41,7 @@ fi # Find out where the pretty printer Python module is RUSTC_SYSROOT="$("$RUSTC" --print=sysroot)" -GDB_PYTHON_MODULE_DIRECTORY="$RUSTC_SYSROOT/lib/rustlib/etc" +GDB_PYTHON_MODULE_DIRECTORY="$RUSTC_SYSROOT/share/rust" # Set the environment variable `RUST_GDB` to overwrite the call to a # different/specific command (defaults to `gdb`). diff --git a/src/etc/rust-lldb b/src/etc/rust-lldb index bce72f1ba..8abb01245 100755 --- a/src/etc/rust-lldb +++ b/src/etc/rust-lldb @@ -30,8 +30,8 @@ EOF fi fi -script_import="command script import \"$RUSTC_SYSROOT/lib/rustlib/etc/lldb_lookup.py\"" -commands_file="$RUSTC_SYSROOT/lib/rustlib/etc/lldb_commands" +script_import="command script import \"$RUSTC_SYSROOT/share/rust/lldb_lookup.py\"" +commands_file="$RUSTC_SYSROOT/share/rust/lldb_commands" # Call LLDB with the commands added to the argument list exec "$lldb" --one-line-before-file "$script_import" --source-before-file "$commands_file" "$@" -- 2.37.2