Skip to content

Commit 1278423

Browse files
committed
add producer sniffing
Fix #27
1 parent bd34f73 commit 1278423

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

gdb/dwarf2read.c

+5
Original file line numberDiff line numberDiff line change
@@ -9226,6 +9226,11 @@ read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
92269226
if (cu->producer && strstr (cu->producer, "GNU Go ") != NULL)
92279227
set_cu_language (DW_LANG_Go, cu);
92289228

9229+
/* Rust does not emit DW_LANG_Rust due to an lldb bug. See
9230+
https://github.com/rust-lang/rust/pull/33097. */
9231+
if (cu->producer && strstr (cu->producer, "rustc ") != NULL)
9232+
set_cu_language (DW_LANG_Rust, cu);
9233+
92299234
dwarf2_start_symtab (cu, name, comp_dir, lowpc);
92309235

92319236
/* Decode line number information if present. We do this before

0 commit comments

Comments
 (0)