diff options
author | Jack Howarth <howarth@bromo.med.uc.edu> | 2010-12-10 10:40:43 +0000 |
---|---|---|
committer | Iain Sandoe <iains@gcc.gnu.org> | 2010-12-10 10:40:43 +0000 |
commit | 082b966fdc1d7f2514b040411f0c1ee6515b8348 (patch) | |
tree | fc7d9fd1c267b02080bf8d655778c31d143d223f | |
parent | 9901ac6e89b708367ec23239200575a9cb6ae6b4 (diff) | |
download | gcc-082b966fdc1d7f2514b040411f0c1ee6515b8348.zip gcc-082b966fdc1d7f2514b040411f0c1ee6515b8348.tar.gz gcc-082b966fdc1d7f2514b040411f0c1ee6515b8348.tar.bz2 |
dsymutil enabled for Fortran.
2010-12-10 Jack Howarth <howarth@bromo.med.uc.edu>
Iain Sandoe <iains@gcc.gnu.org>
PR 43751/target
gcc:
* config/darwin9.h (DSYMUTIL_SPEC): Add fortran source types.
testsuite:
* lib/prune.exp: Prune dsymutil warnings.
libstadc++-v3:
* testsuite/lib/prune.exp: Prune dsymutil warnings.
Co-Authored-By: Iain Sandoe <iains@gcc.gnu.org>
From-SVN: r167683
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/darwin9.h | 2 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/lib/prune.exp | 4 | ||||
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/lib/prune.exp | 5 |
6 files changed, 27 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6828fcd..f07a6de 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2010-12-10 Jack Howarth <howarth@bromo.med.uc.edu> + Iain Sandoe <iains@gcc.gnu.org> + + PR 43751/target + * config/darwin9.h (DSYMUTIL_SPEC): Add fortran source types. + 2010-12-10 Iain Sandoe <iains@gcc.gnu.org> * config/rs6000/rs6000.c diff --git a/gcc/config/darwin9.h b/gcc/config/darwin9.h index 65d3cb8..8281183 100644 --- a/gcc/config/darwin9.h +++ b/gcc/config/darwin9.h @@ -29,7 +29,7 @@ along with GCC; see the file COPYING3. If not see "%{!fdump=*:%{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\ %{v} \ %{g*:%{!gstabs*:%{!g0: -idsym}}}\ - %{.c|.cc|.C|.cpp|.cp|.c++|.cxx|.CPP|.m|.mm|.s: \ + %{.c|.cc|.C|.cpp|.cp|.c++|.cxx|.CPP|.m|.mm|.s|.f|.f90|.f95|.f03|.f77|.for|.F|.F90|.F95|.F03: \ %{g*:%{!gstabs*:%{!g0: -dsym}}}}}}}}}}}" /* Tell collect2 to run dsymutil for us as necessary. */ diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index afba479..b2978f0 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2010-12-10 Jack Howarth <howarth@bromo.med.uc.edu> + Iain Sandoe <iains@gcc.gnu.org> + + PR 43751/target + * lib/prune.exp: Prune dsymutil warnings. + 2010-12-10 Nicola Pero <nicola.pero@meta-innovation.com> * objc.dg/class-extension-1.m: New. diff --git a/gcc/testsuite/lib/prune.exp b/gcc/testsuite/lib/prune.exp index 0ec277b..4e08bf3 100644 --- a/gcc/testsuite/lib/prune.exp +++ b/gcc/testsuite/lib/prune.exp @@ -54,7 +54,9 @@ proc prune_gcc_output { text } { # Ignore harmless warnings from Xcode 3.2.x. regsub -all "(^|\n)\[^\n\]*ld: warning: can't add line info to anonymous symbol\[^\n\]*" $text "" text - + regsub -all "(^|\n)\[^\n\]*warning: DWARFDebugInfoEntry::AppendDependants\[^\n\]*AT_\[^\n\]*_bound\[^\n\]*FORM_ref4\[^\n\]*" $text "" text + regsub -all "(^|\n)\[^\n\]*warning:\[^\n\]*TAG_variable: AT_location\[^\n\]*didn't have valid function low pc\[^\n\]*" $text "" text + #send_user "After:$text\n" return $text diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 2f7f245..b11c4c5 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2010-12-10 Jack Howarth <howarth@bromo.med.uc.edu> + Iain Sandoe <iains@gcc.gnu.org> + + PR 43751/target + * testsuite/lib/prune.exp: Prune dsymutil warnings. + 2010-12-08 Nathan Froyd <froydnj@codesourcery.com> PR testsuite/46860 diff --git a/libstdc++-v3/testsuite/lib/prune.exp b/libstdc++-v3/testsuite/lib/prune.exp index a390878..a1d8d08 100644 --- a/libstdc++-v3/testsuite/lib/prune.exp +++ b/libstdc++-v3/testsuite/lib/prune.exp @@ -50,6 +50,11 @@ proc libstdc++-dg-prune { system text } { regsub -all "(^|\n)\[^\n\]*: Additional NOP may be necessary to workaround Itanium processor A/B step errata" $text "" text regsub -all "(^|\n)\[^\n*\]*: Assembler messages:\[^\n\]*" $text "" text + # Ignore harmless warnings from Xcode 3.2.x. + regsub -all "(^|\n)\[^\n\]*ld: warning: can't add line info to anonymous symbol\[^\n\]*" $text "" text + regsub -all "(^|\n)\[^\n\]*warning: DWARFDebugInfoEntry::AppendDependants\[^\n\]*AT_\[^\n\]*_bound\[^\n\]*FORM_ref4\[^\n\]*" $text "" text + regsub -all "(^|\n)\[^\n\]*warning:\[^\n\]*TAG_variable: AT_location\[^\n\]*didn't have valid function low pc\[^\n\]*" $text "" text + foreach p $additional_prunes { if { [string length $p] > 0 } { # Following regexp matches a complete line containing $p. |