Blame SOURCES/gdb-rhel5-gcc44.patch

861f93
Some functionality is available on RHEL-5.4+ only with gcc44 and gfortran44 as
861f93
the default gcc and gfortran binaries are from gcc-4.1.
861f93
861f93
Index: gdb-7.5.50.20130118/gdb/testsuite/gdb.base/vla.exp
861f93
===================================================================
861f93
--- gdb-7.5.50.20130118.orig/gdb/testsuite/gdb.base/vla.exp	2013-01-18 23:43:04.455756362 +0100
861f93
+++ gdb-7.5.50.20130118/gdb/testsuite/gdb.base/vla.exp	2013-01-18 23:43:08.082761164 +0100
861f93
@@ -16,7 +16,25 @@
861f93
 set testfile vla
861f93
 set srcfile ${testfile}.c
861f93
 set binfile ${objdir}/${subdir}/${testfile}
861f93
-if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
861f93
+# Temporarily provide compiler=gcc44 saving the original value around.
861f93
+
861f93
+set board [target_info name]
861f93
+if [board_info $board exists compiler] {
861f93
+    set old_compiler [board_info $board compiler]
861f93
+    unset_board_info compiler
861f93
+} elseif [info exists old_compiler] {
861f93
+    unset old_compiler
861f93
+}
861f93
+set_board_info compiler gcc44
861f93
+
861f93
+set err [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug quiet}]
861f93
+
861f93
+unset_board_info compiler
861f93
+if [info exists old_compiler] {
861f93
+    set_board_info compiler $old_compiler
861f93
+}
861f93
+
861f93
+if  { $err != "" } {
861f93
     untested "Couldn't compile test program"
861f93
     return -1
861f93
 }
861f93
Index: gdb-7.5.50.20130118/gdb/testsuite/gdb.base/break-interp.exp
861f93
===================================================================
861f93
--- gdb-7.5.50.20130118.orig/gdb/testsuite/gdb.base/break-interp.exp	2013-01-18 23:43:04.456756365 +0100
861f93
+++ gdb-7.5.50.20130118/gdb/testsuite/gdb.base/break-interp.exp	2013-01-18 23:43:08.082761164 +0100
861f93
@@ -34,9 +34,29 @@ if [get_compiler_info] {
861f93
     return -1
861f93
 }
861f93
 
861f93
+# Temporarily provide compiler=gcc44 saving the original value around.
861f93
+# RHEL-5 workaround of its:
861f93
+#   gcc: -soname: linker input file unused because linking not done
861f93
+
861f93
+set board [target_info name]
861f93
+if [board_info $board exists compiler] {
861f93
+    set old_compiler [board_info $board compiler]
861f93
+    unset_board_info compiler
861f93
+} elseif [info exists old_compiler] {
861f93
+    unset old_compiler
861f93
+}
861f93
+set_board_info compiler gcc44
861f93
+
861f93
 # Use -soname so that the new library gets copied by build_executable_own_libs.
861f93
 
861f93
-if {[gdb_compile_shlib ${srcdir}/${subdir}/${srcfile_lib} ${binfile_lib} [list debug ldflags=-Wl,-soname,${test}.so]] != ""} {
861f93
+set err [gdb_compile_shlib ${srcdir}/${subdir}/${srcfile_lib} ${binfile_lib} [list debug ldflags=-Wl,-soname,${test}.so]]
861f93
+
861f93
+unset_board_info compiler
861f93
+if [info exists old_compiler] {
861f93
+    set_board_info compiler $old_compiler
861f93
+}
861f93
+
861f93
+if { $err != "" } {
861f93
     return -1
861f93
 }
861f93
 
861f93
Index: gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/common-block.exp
861f93
===================================================================
861f93
--- gdb-7.5.50.20130118.orig/gdb/testsuite/gdb.fortran/common-block.exp	2013-01-18 23:43:08.082761164 +0100
861f93
+++ gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/common-block.exp	2013-01-18 23:44:23.047856182 +0100
861f93
@@ -22,8 +22,25 @@ if {[skip_fortran_tests]} {
861f93
 
861f93
 standard_testfile .f90
861f93
 
861f93
-if {[prepare_for_testing ${testfile}.exp ${testfile} \
861f93
-	 $srcfile {debug f90 quiet}]} {
861f93
+# Temporarily provide f90compiler=gfortran44 saving the original value around.
861f93
+
861f93
+set board [target_info name]
861f93
+if [board_info $board exists f90compiler] {
861f93
+    set old_f90compiler [board_info $board f90compiler]
861f93
+    unset_board_info f90compiler
861f93
+} elseif [info exists old_f90compiler] {
861f93
+    unset old_f90compiler
861f93
+}
861f93
+set_board_info f90compiler gfortran44
861f93
+
861f93
+set err [prepare_for_testing ${testfile}.exp ${testfile} $srcfile {debug f90 quiet}]
861f93
+
861f93
+unset_board_info f90compiler
861f93
+if [info exists old_f90compiler] {
861f93
+    set_board_info f90compiler $old_f90compiler
861f93
+}
861f93
+
861f93
+if {$err} {
861f93
     return -1
861f93
 }
861f93
 
861f93
Index: gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/dwarf-stride.exp
861f93
===================================================================
861f93
--- gdb-7.5.50.20130118.orig/gdb/testsuite/gdb.fortran/dwarf-stride.exp	2013-01-18 23:43:04.456756365 +0100
861f93
+++ gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/dwarf-stride.exp	2013-01-18 23:43:08.083761148 +0100
861f93
@@ -27,7 +27,25 @@
861f93
 set testfile dwarf-stride
861f93
 set srcfile ${testfile}.f90
861f93
 
861f93
-if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} {debug f90}] } {
861f93
+# Temporarily provide f90compiler=gfortran44 saving the original value around.
861f93
+
861f93
+set board [target_info name]
861f93
+if [board_info $board exists f90compiler] {
861f93
+    set old_f90compiler [board_info $board f90compiler]
861f93
+    unset_board_info f90compiler 
861f93
+} elseif [info exists old_f90compiler] {
861f93
+    unset old_f90compiler
861f93
+} 
861f93
+set_board_info f90compiler gfortran44
861f93
+
861f93
+set err [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} {debug f90}]
861f93
+
861f93
+unset_board_info f90compiler
861f93
+if [info exists old_f90compiler] {
861f93
+    set_board_info f90compiler $old_f90compiler
861f93
+}
861f93
+
861f93
+if $err {
861f93
     return -1
861f93
 }
861f93
 
861f93
Index: gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/dynamic.exp
861f93
===================================================================
861f93
--- gdb-7.5.50.20130118.orig/gdb/testsuite/gdb.fortran/dynamic.exp	2013-01-18 23:43:04.457756367 +0100
861f93
+++ gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/dynamic.exp	2013-01-18 23:43:08.083761148 +0100
861f93
@@ -25,7 +25,25 @@ set testfile "dynamic"
861f93
 set srcfile ${testfile}.f90
861f93
 set binfile ${objdir}/${subdir}/${testfile}
861f93
 
861f93
-if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug f90 quiet}] != "" } {
861f93
+# Temporarily provide f90compiler=gfortran44 saving the original value around.
861f93
+
861f93
+set board [target_info name]
861f93
+if [board_info $board exists f90compiler] {
861f93
+    set old_f90compiler [board_info $board f90compiler]
861f93
+    unset_board_info f90compiler
861f93
+} elseif [info exists old_f90compiler] {
861f93
+    unset old_f90compiler
861f93
+}
861f93
+set_board_info f90compiler gfortran44
861f93
+
861f93
+set err [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug f90 quiet}]
861f93
+
861f93
+unset_board_info f90compiler
861f93
+if [info exists old_f90compiler] {
861f93
+    set_board_info f90compiler $old_f90compiler
861f93
+}
861f93
+
861f93
+if  { $err != "" } {
861f93
     untested "Couldn't compile ${srcfile}"
861f93
     return -1
861f93
 }
861f93
Index: gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/library-module.exp
861f93
===================================================================
861f93
--- gdb-7.5.50.20130118.orig/gdb/testsuite/gdb.fortran/library-module.exp	2013-01-18 23:43:04.457756367 +0100
861f93
+++ gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/library-module.exp	2013-01-18 23:43:08.083761148 +0100
861f93
@@ -23,16 +23,34 @@ if [get_compiler_info] {
861f93
    return -1
861f93
 }
861f93
 
861f93
-if  { [gdb_compile_shlib "${srcdir}/${subdir}/${srclibfile}" $libfile {debug f90}] != "" } {
861f93
-    untested "Couldn't compile ${srclibfile}"
861f93
-    return -1
861f93
+# Temporarily provide f90compiler=gfortran44 saving the original value around.
861f93
+
861f93
+set board [target_info name]
861f93
+if [board_info $board exists f90compiler] {
861f93
+    set old_f90compiler [board_info $board f90compiler]
861f93
+    unset_board_info f90compiler
861f93
+} elseif [info exists old_f90compiler] {
861f93
+    unset old_f90compiler
861f93
 }
861f93
+set_board_info f90compiler gfortran44
861f93
 
861f93
 # prepare_for_testing cannot be used as linking with $libfile cannot be passed
861f93
 # just for the linking phase (and not the source compilation phase).  And any
861f93
 # warnings on ignored $libfile abort the process.
861f93
 
861f93
-if  { [gdb_compile $srcdir/$subdir/$srcfile $binfile executable [list debug f90 shlib=$libfile]] != "" } {
861f93
+set err1 [gdb_compile_shlib "${srcdir}/${subdir}/${srclibfile}" $libfile {debug f90}]
861f93
+set err2 [gdb_compile $srcdir/$subdir/$srcfile $binfile executable [list debug f90 shlib=$libfile]]
861f93
+
861f93
+unset_board_info f90compiler
861f93
+if [info exists old_f90compiler] {
861f93
+    set_board_info f90compiler $old_f90compiler
861f93
+}
861f93
+
861f93
+if  { $err1 != "" } {
861f93
+    untested "Couldn't compile ${srclibfile}"
861f93
+    return -1
861f93
+}
861f93
+if  { $err2 != "" } {
861f93
     untested "Couldn't compile ${srcfile}"
861f93
     return -1
861f93
 }
861f93
Index: gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/module.exp
861f93
===================================================================
861f93
--- gdb-7.5.50.20130118.orig/gdb/testsuite/gdb.fortran/module.exp	2013-01-18 23:43:04.457756367 +0100
861f93
+++ gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/module.exp	2013-01-18 23:43:08.083761148 +0100
861f93
@@ -15,7 +15,25 @@
861f93
 
861f93
 standard_testfile .f90
861f93
 
861f93
-if { [prepare_for_testing $testfile.exp $testfile $srcfile {debug f90}] } {
861f93
+# Temporarily provide f90compiler=gfortran44 saving the original value around.
861f93
+
861f93
+set board [target_info name]
861f93
+if [board_info $board exists f90compiler] {
861f93
+    set old_f90compiler [board_info $board f90compiler]
861f93
+    unset_board_info f90compiler
861f93
+} elseif [info exists old_f90compiler] {
861f93
+    unset old_f90compiler
861f93
+}
861f93
+set_board_info f90compiler gfortran44
861f93
+
861f93
+set err [prepare_for_testing $testfile.exp $testfile $srcfile {debug f90}]
861f93
+
861f93
+unset_board_info f90compiler
861f93
+if [info exists old_f90compiler] {
861f93
+    set_board_info f90compiler $old_f90compiler
861f93
+}
861f93
+
861f93
+if $err {
861f93
     return -1
861f93
 }
861f93
 
861f93
Index: gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/string.exp
861f93
===================================================================
861f93
--- gdb-7.5.50.20130118.orig/gdb/testsuite/gdb.fortran/string.exp	2013-01-18 23:43:04.457756367 +0100
861f93
+++ gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/string.exp	2013-01-18 23:43:08.083761148 +0100
861f93
@@ -23,7 +23,25 @@ set testfile "string"
861f93
 set srcfile ${testfile}.f90
861f93
 set binfile ${objdir}/${subdir}/${testfile}
861f93
 
861f93
-if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug f90 quiet}] != "" } {
861f93
+# Temporarily provide f90compiler=gfortran44 saving the original value around.
861f93
+
861f93
+set board [target_info name]
861f93
+if [board_info $board exists f90compiler] {
861f93
+    set old_f90compiler [board_info $board f90compiler]
861f93
+    unset_board_info f90compiler
861f93
+} elseif [info exists old_f90compiler] {
861f93
+    unset old_f90compiler
861f93
+}
861f93
+set_board_info f90compiler gfortran44
861f93
+
861f93
+set err [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug f90 quiet}]
861f93
+
861f93
+unset_board_info f90compiler
861f93
+if [info exists old_f90compiler] {
861f93
+    set_board_info f90compiler $old_f90compiler
861f93
+}
861f93
+
861f93
+if { $err != "" } {
861f93
     untested "Couldn't compile ${srcfile}"
861f93
     return -1
861f93
 }
861f93
Index: gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/omp-step.exp
861f93
===================================================================
861f93
--- gdb-7.5.50.20130118.orig/gdb/testsuite/gdb.fortran/omp-step.exp	2013-01-18 23:43:04.458756369 +0100
861f93
+++ gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/omp-step.exp	2013-01-18 23:43:08.083761148 +0100
861f93
@@ -15,7 +15,26 @@
861f93
 
861f93
 set testfile "omp-step"
861f93
 set srcfile ${testfile}.f90
861f93
-if { [prepare_for_testing $testfile.exp $testfile $srcfile {debug f90 additional_flags=-fopenmp}] } {
861f93
+
861f93
+# Temporarily provide f90compiler=gfortran44 saving the original value around.
861f93
+
861f93
+set board [target_info name]
861f93
+if [board_info $board exists f90compiler] {
861f93
+    set old_f90compiler [board_info $board f90compiler]
861f93
+    unset_board_info f90compiler 
861f93
+} elseif [info exists old_f90compiler] {
861f93
+    unset old_f90compiler
861f93
+} 
861f93
+set_board_info f90compiler gfortran44
861f93
+
861f93
+set err [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} {debug f90 additional_flags=-fopenmp}]
861f93
+
861f93
+unset_board_info f90compiler
861f93
+if [info exists old_f90compiler] {
861f93
+    set_board_info f90compiler $old_f90compiler
861f93
+}
861f93
+
861f93
+if $err {
861f93
     return -1
861f93
 }
861f93
 
861f93
Index: gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/derived-type.exp
861f93
===================================================================
861f93
--- gdb-7.5.50.20130118.orig/gdb/testsuite/gdb.fortran/derived-type.exp	2013-01-18 23:43:04.458756369 +0100
861f93
+++ gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/derived-type.exp	2013-01-18 23:43:08.084761135 +0100
861f93
@@ -22,7 +22,25 @@ if { [skip_fortran_tests] } { return -1
861f93
 
861f93
 standard_testfile .f90
861f93
 
861f93
-if {[prepare_for_testing $testfile.exp $testfile $srcfile {debug f90}]} {
861f93
+# Temporarily provide f90compiler=gfortran44 saving the original value around.
861f93
+
861f93
+set board [target_info name]
861f93
+if [board_info $board exists f90compiler] {
861f93
+    set old_f90compiler [board_info $board f90compiler]
861f93
+    unset_board_info f90compiler
861f93
+} elseif [info exists old_f90compiler] {
861f93
+    unset old_f90compiler
861f93
+}
861f93
+set_board_info f90compiler gfortran44
861f93
+
861f93
+set err [prepare_for_testing $testfile.exp $testfile $srcfile {debug f90}]
861f93
+
861f93
+unset_board_info f90compiler
861f93
+if [info exists old_f90compiler] {
861f93
+    set_board_info f90compiler $old_f90compiler
861f93
+}
861f93
+
861f93
+if $err {
861f93
     return -1
861f93
 }
861f93
 
861f93
Index: gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/subarray.exp
861f93
===================================================================
861f93
--- gdb-7.5.50.20130118.orig/gdb/testsuite/gdb.fortran/subarray.exp	2013-01-18 23:43:04.458756369 +0100
861f93
+++ gdb-7.5.50.20130118/gdb/testsuite/gdb.fortran/subarray.exp	2013-01-18 23:43:08.084761135 +0100
861f93
@@ -22,7 +22,25 @@ if { [skip_fortran_tests] } { return -1
861f93
 
861f93
 standard_testfile .f
861f93
 
861f93
-if {[prepare_for_testing $testfile.exp $testfile $srcfile {debug f90}]} {
861f93
+# Temporarily provide f90compiler=gfortran44 saving the original value around.
861f93
+
861f93
+set board [target_info name]
861f93
+if [board_info $board exists f90compiler] {
861f93
+    set old_f90compiler [board_info $board f90compiler]
861f93
+    unset_board_info f90compiler
861f93
+} elseif [info exists old_f90compiler] {
861f93
+    unset old_f90compiler
861f93
+}
861f93
+set_board_info f90compiler gfortran44
861f93
+
861f93
+set err [prepare_for_testing $testfile.exp $testfile $srcfile {debug f90}]
861f93
+
861f93
+unset_board_info f90compiler
861f93
+if [info exists old_f90compiler] {
861f93
+    set_board_info f90compiler $old_f90compiler
861f93
+}
861f93
+
861f93
+if $err {
861f93
     return -1
861f93
 }
861f93
 
861f93
Index: gdb-7.5.50.20130118/gdb/testsuite/gdb.threads/tls-sepdebug.exp
861f93
===================================================================
861f93
--- gdb-7.5.50.20130118.orig/gdb/testsuite/gdb.threads/tls-sepdebug.exp	2013-01-18 23:43:04.459756371 +0100
861f93
+++ gdb-7.5.50.20130118/gdb/testsuite/gdb.threads/tls-sepdebug.exp	2013-01-18 23:43:08.084761135 +0100
861f93
@@ -32,7 +32,25 @@ set binshareddebugfile ${objdir}/${subdi
861f93
 
861f93
 # FIXME: gcc dependency (-Wl,-soname).
861f93
 
861f93
-if  { [gdb_compile_shlib "${srcdir}/${subdir}/${srcsharedfile}" "${binsharedfile}" [list debug additional_flags=-Wl,-soname=${binsharedbase}]] != "" } {
861f93
+# Temporarily provide compiler=gcc44 saving the original value around.
861f93
+
861f93
+set board [target_info name]
861f93
+if [board_info $board exists compiler] {
861f93
+    set old_compiler [board_info $board compiler]
861f93
+    unset_board_info compiler
861f93
+} elseif [info exists old_compiler] {
861f93
+    unset old_compiler
861f93
+}
861f93
+set_board_info compiler gcc44
861f93
+
861f93
+set err [gdb_compile_shlib "${srcdir}/${subdir}/${srcsharedfile}" "${binsharedfile}" [list debug additional_flags=-Wl,-soname=${binsharedbase}]]
861f93
+
861f93
+unset_board_info compiler
861f93
+if [info exists old_compiler] {
861f93
+    set_board_info compiler $old_compiler
861f93
+}
861f93
+
861f93
+if { $err != "" } {
861f93
     untested "Couldn't compile test library"
861f93
     return -1
861f93
 }
861f93
Index: gdb-7.5.50.20130118/gdb/testsuite/lib/prelink-support.exp
861f93
===================================================================
861f93
--- gdb-7.5.50.20130118.orig/gdb/testsuite/lib/prelink-support.exp	2013-01-18 23:43:04.459756371 +0100
861f93
+++ gdb-7.5.50.20130118/gdb/testsuite/lib/prelink-support.exp	2013-01-18 23:43:08.084761135 +0100
861f93
@@ -119,9 +119,31 @@ proc file_copy {src dest} {
861f93
 proc build_executable_own_libs {testname executable sources options {interp ""} {dir ""}} {
861f93
     global objdir subdir
861f93
 
861f93
-    if {[build_executable $testname $executable $sources $options] == -1} {
861f93
-	return ""
861f93
+    # Temporarily provide compiler=gcc44 saving the original value around.
861f93
+    # RHEL-5 workaround of its:
861f93
+    #   gcc: -rpath: linker input file unused because linking not done
861f93
+    #   gcc: --dynamic-linker: linker input file unused because linking not done
861f93
+
861f93
+    set board [target_info name]
861f93
+    if [board_info $board exists compiler] {
861f93
+	set old_compiler [board_info $board compiler]
861f93
+	unset_board_info compiler
861f93
+    } elseif [info exists old_compiler] {
861f93
+	unset old_compiler
861f93
+    }
861f93
+    set_board_info compiler gcc44
861f93
+
861f93
+    set err [build_executable $testname $executable $sources $options]
861f93
+
861f93
+    unset_board_info compiler
861f93
+    if [info exists old_compiler] {
861f93
+	set_board_info compiler $old_compiler
861f93
     }
861f93
+
861f93
+    if { $err == -1 } {
861f93
+	return ""   
861f93
+    }
861f93
+
861f93
     set binfile ${objdir}/${subdir}/${executable}
861f93
 
861f93
     set command "ldd $binfile"