We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acfa113 commit 6be6289Copy full SHA for 6be6289
src/etc/rust-lldb
@@ -12,6 +12,17 @@
12
# Exit if anything fails
13
set -e
14
15
+LLDB_VERSION=`lldb --version 2>/dev/null | head -1 | cut -d. -f1`
16
+
17
+if [ "$LLDB_VERSION" = "lldb-350" ]
18
+then
19
+ echo "***"
20
+ echo \
21
+"WARNING: This version of LLDB has known issues with Rust and cannot \
22
+display the contents of local variables!"
23
24
+fi
25
26
# Create a tempfile containing the LLDB script we want to execute on startup
27
TMPFILE=`mktemp /tmp/rust-lldb-commands.XXXXXX`
28
0 commit comments