Dave,
I noticed this in the gcc/libmudflap/ChangeLog...
* testsuite/lib/libmudflap.exp (libmudflap-init): Add extra libraries.
(prune_gcc_output): Add glibc static linking warnings.
which makes me think I can just add a line like...
regsub -all {(^|\n)[^\n]*can't find atom for N_GSYM stabs * in *[^\n]*} $text
"" text
...to the section...
proc gfortran-dg-prune { system text } {
return [gcc-dg-prune $system $text]
}
...in gcc/gcc/testsuite/lib/gfortran-dg.exp. Although I wonder if
I really need to add a...
proc prune_gcc_output { text } {
return $text
}
...section instead.
Jack
ps I am trying to eliminate the error of the form...
can't find atom for N_GSYM stabs i:G(0,2) in /var/tmp//cc6KtMzX.o
Did I get the wildcarding correct?