diff options
author | Nils-Christian Kempke <nils-christian.kempke@intel.com> | 2022-05-31 16:43:43 +0200 |
---|---|---|
committer | Nils-Christian Kempke <nils-christian.kempke@intel.com> | 2022-05-31 16:44:53 +0200 |
commit | cffe02acaa8396d46aa90831dede24cdd6095ba0 (patch) | |
tree | efd7e804c7a843d4107fa6ffc390874950d5f082 /gdb/testsuite/boards | |
parent | 622c4842bb451efd519c32312c2372f472cd99c8 (diff) | |
download | binutils-cffe02acaa8396d46aa90831dede24cdd6095ba0.zip binutils-cffe02acaa8396d46aa90831dede24cdd6095ba0.tar.gz binutils-cffe02acaa8396d46aa90831dede24cdd6095ba0.tar.bz2 |
gdb/testsuite: remove F77_FOR_TARGET support
The last uses of the F77_FOR_TARGET via passing f77 to GDB's compile
procedure were removed in this commit
commit 0ecee54cfd04a60e7ca61ae07c72b20e21390257
Author: Tom Tromey <tromey@redhat.com>
Date: Wed Jun 29 17:50:47 2011 +0000
over 10 years ago. The last .f files in the testsuite by now are all
being compiled by passing 'f90' to the GDB compile, thus only actually
using F90_FOR_TARGET (array-element.f, block-data.f, subarray.f).
Gfortran in this case is backwards compatible with most f77 code as
claimed on gcc.gnu.org/fortran.
The reason we'd like to get rid of this now is, that we'll be
implementing a Fortran compiler identification mechanism, similar to the
C/Cpp existing ones. It would be using the Fortran preprocessor macro
defines to identify the Fortran compiler version at hand. We found it
inconsequent to only implement this for f90 but, on the other hand, f77
seems deprecated. So, with this commit we remove the remaining lines for
its support.
Diffstat (limited to 'gdb/testsuite/boards')
-rw-r--r-- | gdb/testsuite/boards/cc-with-tweaks.exp | 5 | ||||
-rw-r--r-- | gdb/testsuite/boards/debug-types.exp | 1 | ||||
-rw-r--r-- | gdb/testsuite/boards/gold-gdb-index.exp | 1 |
3 files changed, 0 insertions, 7 deletions
diff --git a/gdb/testsuite/boards/cc-with-tweaks.exp b/gdb/testsuite/boards/cc-with-tweaks.exp index b7ff98f..fe5b9ee 100644 --- a/gdb/testsuite/boards/cc-with-tweaks.exp +++ b/gdb/testsuite/boards/cc-with-tweaks.exp @@ -44,7 +44,6 @@ set found_gcc [find_gcc] set found_gxx [find_g++] set found_gnatmake [find_gnatmake] set found_f90 [find_gfortran] -set found_f77 [find_g77] set_board_info compiler "$found_gcc" set contrib_dir [file normalize $srcdir/../contrib] @@ -64,10 +63,6 @@ if ![info exists F90_FOR_TARGET] { set F90_FOR_TARGET "$found_f90" } set F90_FOR_TARGET "$contrib_dir/cc-with-tweaks.sh $CC_WITH_TWEAKS_FLAGS $F90_FOR_TARGET" -if ![info exists F77_FOR_TARGET] { - set F77_FOR_TARGET "$found_f77" -} -set F77_FOR_TARGET "$contrib_dir/cc-with-tweaks.sh $CC_WITH_TWEAKS_FLAGS $F77_FOR_TARGET" set env(GDB) \ [cached_file gdb.sh "$GDB $INTERNAL_GDBFLAGS $GDBFLAGS \"\$@\"" 1] diff --git a/gdb/testsuite/boards/debug-types.exp b/gdb/testsuite/boards/debug-types.exp index f04a733..1c49822 100644 --- a/gdb/testsuite/boards/debug-types.exp +++ b/gdb/testsuite/boards/debug-types.exp @@ -29,7 +29,6 @@ set found_gcc [find_gcc] set found_gxx [find_g++] set found_gnatmake [find_gnatmake] set found_f90 [find_gfortran] -set found_f77 [find_g77] set_board_info compiler "$found_gcc" # The -fdebug-types-section switch only has an effect with DWARF version 4. diff --git a/gdb/testsuite/boards/gold-gdb-index.exp b/gdb/testsuite/boards/gold-gdb-index.exp index 30d2d8b..f62f489 100644 --- a/gdb/testsuite/boards/gold-gdb-index.exp +++ b/gdb/testsuite/boards/gold-gdb-index.exp @@ -29,7 +29,6 @@ set found_gcc [find_gcc] set found_gxx [find_g++] set found_gnatmake [find_gnatmake] set found_f90 [find_gfortran] -set found_f77 [find_g77] set_board_info compiler "$found_gcc" set opts [list] |