The patch titled
ignore all debugging info sections in scripts/reference_discarded.pl
has been added to the -mm tree. Its filename is
ignore-all-debugging-info-sections-in-scripts-reference_discardedpl.patch
Patches currently in -mm which might be from [EMAIL PROTECTED] are
ignore-all-debugging-info-sections-in-scripts-reference_discardedpl.patch
i386-clean-up-vdso-alignment-padding.patch
x86-64-ptrace-ia32-bp-fix.patch
ptrace-i386-fix-syscall-audit-interaction-with-singlestep.patch
sysemu-fix-sysaudit--singlestep-interaction.patch
kgdb-ga.patch
From: Roland McGrath <[EMAIL PROTECTED]>
GCC 4 emits more DWARF debugging information than before and there is now a
.debug_loc section as well. This causes "make buildcheck" to fail. Rather
than just add that one to the special case list, I used a regexp to ignore
any .debug_ANYTHING sections in case more show up in the future.
Signed-off-by: Roland McGrath <[EMAIL PROTECTED]>
Cc: Sam Ravnborg <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
scripts/reference_discarded.pl | 7 +------
1 files changed, 1 insertion(+), 6 deletions(-)
diff -puN
scripts/reference_discarded.pl~ignore-all-debugging-info-sections-in-scripts-reference_discardedpl
scripts/reference_discarded.pl
---
25/scripts/reference_discarded.pl~ignore-all-debugging-info-sections-in-scripts-reference_discardedpl
Mon Aug 29 15:05:39 2005
+++ 25-akpm/scripts/reference_discarded.pl Mon Aug 29 15:06:14 2005
@@ -91,12 +91,7 @@ foreach $object (keys(%object)) {
$from !~ /\.exit\.data$/ &&
$from !~ /\.altinstructions$/ &&
$from !~ /\.pdr$/ &&
- $from !~ /\.debug_info$/ &&
- $from !~ /\.debug_aranges$/ &&
- $from !~ /\.debug_ranges$/ &&
- $from !~ /\.debug_line$/ &&
- $from !~ /\.debug_frame$/ &&
- $from !~ /\.debug_loc$/ &&
+ $from !~ /\.debug_.*$/ &&
$from !~ /\.exitcall\.exit$/ &&
$from !~ /\.eh_frame$/ &&
$from !~ /\.stab$/)) {
_
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html