blob: 2fb62ae8ce31c1dc882951ecda8db4eb8b14552d [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001From 015715694eadd714b903f30ade876e0738d44974 Mon Sep 17 00:00:00 2001
2From: Randy Witt <randy.e.witt@linux.intel.com>
3Date: Mon, 5 Jan 2015 15:09:20 -0800
4Subject: [PATCH] Ignore DWARF sections.
5
6Assume for now that we don't care about the DWARF sections due to path
7differences. However, in the case the tool is ran on a "debug" package
8it will most likely falsely say the packages have no differences.
9
10Upstream-Status: Inappropriate [other]
11
12The package difference tool is correctly labelling the packages as different
13when the DWARF sections don't match due to paths. The paths in the debug info
14should actually be made to be the same using compile flags or some other
15mechanism.
16
17However, to make the tool more useful to Yocto until the work can be done
18to ensure identical paths in debug sections, this patch is being applied.
19
20Signed-off-by: Randy Witt <randy.e.witt@linux.intel.com>
21---
22 pkg-diff.sh | 2 +-
23 1 file changed, 1 insertion(+), 1 deletion(-)
24
25diff --git a/pkg-diff.sh b/pkg-diff.sh
Brad Bishop79641f22019-09-10 07:20:22 -040026index 9c2125e..b0d77c8 100755
Patrick Williamsc124f4f2015-09-15 14:41:29 -050027--- a/pkg-diff.sh
28+++ b/pkg-diff.sh
Brad Bishop79641f22019-09-10 07:20:22 -040029@@ -851,7 +851,7 @@ check_single_file()
Patrick Williamsc124f4f2015-09-15 14:41:29 -050030 echo "" >$file1
31 echo "" >$file2
Brad Bishop79641f22019-09-10 07:20:22 -040032 # Don't compare .build-id, .gnu_debuglink and .gnu_debugdata sections
33- sections="$($OBJDUMP -s new/$file | grep "Contents of section .*:" | sed -r "s,.* (.*):,\1,g" | grep -v -e "\.build-id" -e "\.gnu_debuglink" -e "\.gnu_debugdata" | tr "\n" " ")"
34+ sections="$($OBJDUMP -s new/$file | grep "Contents of section .*:" | sed -r "s,.* (.*):,\1,g" | grep -v -e "\.build-id" -e "\.gnu_debuglink" -e "\.gnu_debugdata" -e "\.debug_abbrev" -e "\.debug_aranges" -e "\.debug_frame" -e "\.debug_info" -e "\.debug_line" -e "\.debug_loc" -e "\.debug_macinfo" -e "\.debug_pubnames" -e "\.debug_pubtypes" -e "\.debug_ranges" -e "\.debug_str" | tr "\n" " ")"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050035 for section in $sections; do
Brad Bishop79641f22019-09-10 07:20:22 -040036 $OBJDUMP -s -j $section old/$file | sed "s,^old/,," > $file1
37 $OBJDUMP -s -j $section new/$file | sed "s,^new/,," > $file2