From 285866651cd0d404087438668012289d278e4179 Mon Sep 17 00:00:00 2001 From: Bernhard Heckel Date: Wed, 2 Mar 2016 15:30:05 +0100 Subject: [PATCH] Fix detection of gfortran compilers. Newer gfortran compilers changed naming convention in DW_AT_producer tag. For example "GNU Fortran 4.6.3" vs "GNU Fortran2008 5.3.0" 2016-03-02 Bernhard Heckel gdb/Changelog: * dwarf2read.c (new_symbol_full): Fix detection of gfortran compilers. --- gdb/ChangeLog | 4 ++++ gdb/dwarf2read.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 75c9285..6538a4a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2016-03-02 Bernhard Heckel + + * dwarf2read.c (new_symbol_full): Fix detection of gfortran compilers. + 2016-03-01 Andreas Arnez * s390-linux-tdep.c (s390_backchain_frame_unwind_cache): Avoid diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 1020c12..dcd49e3 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -18506,7 +18506,7 @@ new_symbol_full (struct die_info *die, struct type *type, struct dwarf2_cu *cu, if (cu->language == language_fortran && die->parent && die->parent->tag == DW_TAG_module && cu->producer - && startswith (cu->producer, "GNU Fortran ")) + && startswith (cu->producer, "GNU Fortran")) SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED; /* A variable with DW_AT_external is never static, -- 2.7.4