Replace old GDB and LLDB pretty-printers with new ones which were originally written for IntelliJ Rust. New LLDB pretty-printers support synthetic children. New GDB/LLDB pretty-printers support all Rust types supported by old pretty-printers, and also support: Rc, Arc, Cell, Ref, RefCell, RefMut, HashMap, HashSet.
34 lines
881 B
Bash
Executable file
34 lines
881 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Exit if anything fails
|
|
set -e
|
|
|
|
# Find the host triple so we can find lldb in rustlib.
|
|
host=$(rustc -vV | sed -n -e 's/^host: //p')
|
|
|
|
# Find out where to look for the pretty printer Python module
|
|
RUSTC_SYSROOT=$(rustc --print sysroot)
|
|
RUST_LLDB="$RUSTC_SYSROOT/lib/rustlib/$host/bin/lldb"
|
|
|
|
lldb=lldb
|
|
if [ -f "$RUST_LLDB" ]; then
|
|
lldb="$RUST_LLDB"
|
|
else
|
|
if ! command -v "$lldb" > /dev/null; then
|
|
echo "$lldb not found! Please install it." >&2
|
|
exit 1
|
|
else
|
|
LLDB_VERSION=$("$lldb" --version | cut -d ' ' -f3)
|
|
|
|
if [ "$LLDB_VERSION" = "3.5.0" ]; then
|
|
cat << EOF >&2
|
|
***
|
|
WARNING: This version of LLDB has known issues with Rust and cannot display the contents of local variables!
|
|
***
|
|
EOF
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
# Call LLDB with the commands added to the argument list
|
|
exec "$lldb" --source-before-file ./lldb_commands "$@"
|