diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2019-11-18 11:35:34 +0100 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2019-11-18 17:15:43 -0500 |
commit | 65be439d3c9e151727ad05c7a13502536940120c (patch) | |
tree | a8a8a01e424d0cc696ad1a748901d1dc855ba6b4 /dev-util/lcov | |
parent | x11-misc/xkeyboard-config: arm64 stable (bug #700310) (diff) | |
download | gentoo-65be439d3c9e151727ad05c7a13502536940120c.tar.gz gentoo-65be439d3c9e151727ad05c7a13502536940120c.tar.bz2 gentoo-65be439d3c9e151727ad05c7a13502536940120c.zip |
dev-util/lcov: remove unused patch
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13695
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-util/lcov')
-rw-r--r-- | dev-util/lcov/files/lcov-1.9-gcc-4.7.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/dev-util/lcov/files/lcov-1.9-gcc-4.7.patch b/dev-util/lcov/files/lcov-1.9-gcc-4.7.patch deleted file mode 100644 index 1b9d6ac0ff21..000000000000 --- a/dev-util/lcov/files/lcov-1.9-gcc-4.7.patch +++ /dev/null @@ -1,29 +0,0 @@ -fix from upstream to work with gcc-4.7 - -Index: bin/geninfo -=================================================================== -RCS file: /cvsroot/ltp/utils/analysis/lcov/bin/geninfo,v -retrieving revision 1.95 -retrieving revision 1.96 -diff -u -p -r1.95 -r1.96 ---- bin/geninfo 20 Jan 2012 11:53:57 -0000 1.95 -+++ bin/geninfo 10 Apr 2012 11:48:52 -0000 1.96 -@@ -61,6 +61,7 @@ if( $^O eq "msys" ) - our $gcov_tool = "gcov"; - our $tool_name = basename($0); - -+our $GCOV_VERSION_4_7_0 = 0x40700; - our $GCOV_VERSION_3_4_0 = 0x30400; - our $GCOV_VERSION_3_3_0 = 0x30300; - our $GCNO_FUNCTION_TAG = 0x01000000; -@@ -3023,5 +3024,10 @@ sub read_gcno_function_record(*$$$$) - graph_expect("function record"); - # Skip ident and checksum - graph_skip($handle, 8, "function ident and checksum") or return undef; -+ if ($gcov_version >= $GCOV_VERSION_4_7_0) { -+ # Skip extra checksum added by android 4.4.0 / gcc >= 4.7 -+ # toolchains. -+ graph_skip($handle, 4, "function extra checksum"); -+ } - # Read function name - graph_expect("function name"); |