diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-06-27 22:01:30 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-06-27 22:01:30 +0000 |
commit | ef3624b8d459fac368c3d24bc002a6088ca02fbb (patch) | |
tree | f00a60709b4bc77f9834d42ca4f19e72bbd0028f /dev-util/lcov/files | |
parent | www-servers/servefile: Improve dependencies (diff) | |
download | gentoo-2-ef3624b8d459fac368c3d24bc002a6088ca02fbb.tar.gz gentoo-2-ef3624b8d459fac368c3d24bc002a6088ca02fbb.tar.bz2 gentoo-2-ef3624b8d459fac368c3d24bc002a6088ca02fbb.zip |
Fix from upstream for working with gcc-4.7.
(Portage version: 2.2.0_alpha112/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/lcov/files')
-rw-r--r-- | dev-util/lcov/files/lcov-1.9-gcc-4.7.patch | 29 |
1 files changed, 29 insertions, 0 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 new file mode 100644 index 000000000000..1b9d6ac0ff21 --- /dev/null +++ b/dev-util/lcov/files/lcov-1.9-gcc-4.7.patch @@ -0,0 +1,29 @@ +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"); |