summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/valgrind/valgrind/0001-Fix-dependencies-between-libcoregrind-.a-and-m_main..patch
diff options
context:
space:
mode:
authorRandy MacLeod <Randy.MacLeod@windriver.com>2019-04-19 15:01:39 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-04-23 23:30:19 +0100
commitf3b96fa0bbf924ed3477fe96554943f535c794f1 (patch)
treedc9f9c9785dc3bd37c41e53ed4a0797342293b44 /meta/recipes-devtools/valgrind/valgrind/0001-Fix-dependencies-between-libcoregrind-.a-and-m_main..patch
parent0573bf6b872e7523ba32010bb76a9fb54d3647bc (diff)
downloadpoky-f3b96fa0bbf924ed3477fe96554943f535c794f1.tar.gz
valgrind: update from 3.14.0 to 3.15.0
The SRC_URI moved. Two local patches are now fixed upstream so remove them. The glibc ptest results are essentially the same. 3.14 3.15 TOTAL: 579 589 PASSED: 297 301 FAILED: 251 254 SKIPPED: 31 34 DURATION: 1312 1171 (From OE-Core rev: dfbc1e03c1f98a5a987a94ea815ba44f61abf289) Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/valgrind/valgrind/0001-Fix-dependencies-between-libcoregrind-.a-and-m_main..patch')
-rw-r--r--meta/recipes-devtools/valgrind/valgrind/0001-Fix-dependencies-between-libcoregrind-.a-and-m_main..patch45
1 files changed, 0 insertions, 45 deletions
diff --git a/meta/recipes-devtools/valgrind/valgrind/0001-Fix-dependencies-between-libcoregrind-.a-and-m_main..patch b/meta/recipes-devtools/valgrind/valgrind/0001-Fix-dependencies-between-libcoregrind-.a-and-m_main..patch
deleted file mode 100644
index bedf1c1274..0000000000
--- a/meta/recipes-devtools/valgrind/valgrind/0001-Fix-dependencies-between-libcoregrind-.a-and-m_main..patch
+++ /dev/null
@@ -1,45 +0,0 @@
1From 7820fc268fae4353118b6355f1d4b9e1b7eeebec Mon Sep 17 00:00:00 2001
2From: Philippe Waroquiers <philippe.waroquiers@skynet.be>
3Date: Sun, 28 Oct 2018 18:35:11 +0100
4Subject: [PATCH] Fix dependencies between libcoregrind*.a and
5 *m_main.o/*m_libcsetjmp.o
6
7The primary and secondary coregrind libraries must be updated
8when m_main.c or m_libcsetjmp.c are changed.
9
10A dependency was missing between libcoregrind*.a and libnolto_coregrind*.a,
11and so tools were not relinked when m_main.c or m_libcsetjmp.c were
12changed.
13
14Upstream-Status: Backport[git://sourceware.org/git/valgrind.git 7820fc268fae4353118b6355f1d4b9e1b7eeebec]
15
16Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
17---
18 coregrind/Makefile.am | 4 ++++
19 1 file changed, 4 insertions(+)
20
21diff --git a/coregrind/Makefile.am b/coregrind/Makefile.am
22index 914a270..8de1996 100644
23--- a/coregrind/Makefile.am
24+++ b/coregrind/Makefile.am
25@@ -511,6 +511,8 @@ libcoregrind_@VGCONF_ARCH_PRI@_@VGCONF_OS@_a_CFLAGS += \
26 endif
27 libcoregrind_@VGCONF_ARCH_PRI@_@VGCONF_OS@_a_LIBADD = \
28 $(libnolto_coregrind_@VGCONF_ARCH_PRI@_@VGCONF_OS@_a_OBJECTS)
29+libcoregrind_@VGCONF_ARCH_PRI@_@VGCONF_OS@_a_DEPENDENCIES = \
30+ libnolto_coregrind-@VGCONF_ARCH_PRI@-@VGCONF_OS@.a
31
32 if VGCONF_HAVE_PLATFORM_SEC
33 libcoregrind_@VGCONF_ARCH_SEC@_@VGCONF_OS@_a_SOURCES = \
34@@ -531,6 +533,8 @@ libcoregrind_@VGCONF_ARCH_SEC@_@VGCONF_OS@_a_CFLAGS += \
35 endif
36 libcoregrind_@VGCONF_ARCH_SEC@_@VGCONF_OS@_a_LIBADD = \
37 $(libnolto_coregrind_@VGCONF_ARCH_SEC@_@VGCONF_OS@_a_OBJECTS)
38+libcoregrind_@VGCONF_ARCH_SEC@_@VGCONF_OS@_a_DEPENDENCIES = \
39+ libnolto_coregrind-@VGCONF_ARCH_SEC@-@VGCONF_OS@.a
40 endif
41
42 #----------------------------------------------------------------------------
43--
442.10.2
45