diff options
-rw-r--r-- | meta/recipes-devtools/build-compare/build-compare_git.bb | 8 | ||||
-rw-r--r-- | meta/recipes-devtools/build-compare/files/Ignore-DWARF-sections.patch | 37 |
2 files changed, 3 insertions, 42 deletions
diff --git a/meta/recipes-devtools/build-compare/build-compare_git.bb b/meta/recipes-devtools/build-compare/build-compare_git.bb index b0560cc277..d2a4b5444d 100644 --- a/meta/recipes-devtools/build-compare/build-compare_git.bb +++ b/meta/recipes-devtools/build-compare/build-compare_git.bb | |||
@@ -5,15 +5,13 @@ HOMEPAGE = "https://github.com/openSUSE/build-compare" | |||
5 | LICENSE = "GPLv2" | 5 | LICENSE = "GPLv2" |
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" |
7 | 7 | ||
8 | SRC_URI = "git://github.com/openSUSE/build-compare.git \ | 8 | SRC_URI = "git://github.com/openSUSE/build-compare.git" |
9 | file://Ignore-DWARF-sections.patch;striplevel=1 \ | ||
10 | " | ||
11 | 9 | ||
12 | # Date matches entry in build-compare.changes and date of SRCREV. | 10 | # Date matches entry in build-compare.changes and date of SRCREV. |
13 | # | 11 | # |
14 | SRCREV = "4dfa207660776cae120afa4353aec7f1f2a998d2" | 12 | SRCREV = "28bf642fcfdab94adb9b847329338005be6f73c7" |
15 | PE = "1" | 13 | PE = "1" |
16 | PV = "2019.08.14+git${SRCPV}" | 14 | PV = "2020.03.31+git${SRCPV}" |
17 | UPSTREAM_CHECK_COMMITS = "1" | 15 | UPSTREAM_CHECK_COMMITS = "1" |
18 | 16 | ||
19 | S = "${WORKDIR}/git" | 17 | S = "${WORKDIR}/git" |
diff --git a/meta/recipes-devtools/build-compare/files/Ignore-DWARF-sections.patch b/meta/recipes-devtools/build-compare/files/Ignore-DWARF-sections.patch deleted file mode 100644 index 2fb62ae8ce..0000000000 --- a/meta/recipes-devtools/build-compare/files/Ignore-DWARF-sections.patch +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | From 015715694eadd714b903f30ade876e0738d44974 Mon Sep 17 00:00:00 2001 | ||
2 | From: Randy Witt <randy.e.witt@linux.intel.com> | ||
3 | Date: Mon, 5 Jan 2015 15:09:20 -0800 | ||
4 | Subject: [PATCH] Ignore DWARF sections. | ||
5 | |||
6 | Assume for now that we don't care about the DWARF sections due to path | ||
7 | differences. However, in the case the tool is ran on a "debug" package | ||
8 | it will most likely falsely say the packages have no differences. | ||
9 | |||
10 | Upstream-Status: Inappropriate [other] | ||
11 | |||
12 | The package difference tool is correctly labelling the packages as different | ||
13 | when the DWARF sections don't match due to paths. The paths in the debug info | ||
14 | should actually be made to be the same using compile flags or some other | ||
15 | mechanism. | ||
16 | |||
17 | However, to make the tool more useful to Yocto until the work can be done | ||
18 | to ensure identical paths in debug sections, this patch is being applied. | ||
19 | |||
20 | Signed-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 | |||
25 | diff --git a/pkg-diff.sh b/pkg-diff.sh | ||
26 | index 9c2125e..b0d77c8 100755 | ||
27 | --- a/pkg-diff.sh | ||
28 | +++ b/pkg-diff.sh | ||
29 | @@ -851,7 +851,7 @@ check_single_file() | ||
30 | echo "" >$file1 | ||
31 | echo "" >$file2 | ||
32 | # 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" " ")" | ||
35 | for section in $sections; do | ||
36 | $OBJDUMP -s -j $section old/$file | sed "s,^old/,," > $file1 | ||
37 | $OBJDUMP -s -j $section new/$file | sed "s,^new/,," > $file2 | ||