|
From: Paul F. <pa...@so...> - 2023-05-06 05:55:18
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=92a661ebf328b4cf0027234a33952e6e13964b5d commit 92a661ebf328b4cf0027234a33952e6e13964b5d Author: Paul Floyd <pj...@wa...> Date: Sat May 6 07:54:45 2023 +0200 Bug 469049 - link failure on ppc64 (big endian) valgrind 3.20 Diff: --- NEWS | 1 + coregrind/Makefile.am | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index f44cfde1dc..0b54c9cb7b 100644 --- a/NEWS +++ b/NEWS @@ -26,6 +26,7 @@ bugzilla (https://bugs.kde.org/enter_bug.cgi?product=valgrind) rather than mailing the developers (or mailing lists) directly -- bugs that are not entered into bugzilla tend to get forgotten about or ignored. +469049 link failure on ppc64 (big endian) valgrind 3.20 469146 massif --ignore-fn does not ignore inlined functions To see details of a given bug, visit diff --git a/coregrind/Makefile.am b/coregrind/Makefile.am index 80115f21fe..553211782f 100644 --- a/coregrind/Makefile.am +++ b/coregrind/Makefile.am @@ -334,7 +334,6 @@ COREGRIND_SOURCES_COMMON = \ m_seqmatch.c \ m_signals.c \ m_sparsewa.c \ - m_stacks.c \ m_stacktrace.c \ m_syscall.c \ m_threadstate.c \ @@ -394,7 +393,6 @@ COREGRIND_SOURCES_COMMON = \ m_dispatch/dispatch-x86-solaris.S \ m_dispatch/dispatch-amd64-solaris.S \ m_gdbserver/inferiors.c \ - m_gdbserver/m_gdbserver.c \ m_gdbserver/regcache.c \ m_gdbserver/remote-utils.c \ m_gdbserver/server.c \ @@ -493,7 +491,9 @@ COREGRIND_SOURCES_COMMON = \ # These objects are added to the libcoregrind library. NOLTO_COREGRIND_SOURCES_COMMON = \ m_libcsetjmp.c \ - m_main.c + m_main.c \ + m_stacks.c \ + m_gdbserver/m_gdbserver.c noinst_LIBRARIES = libnolto_coregrind-@VGCONF_ARCH_PRI@-@VGCONF_OS@.a libnolto_coregrind_@VGCONF_ARCH_PRI@_@VGCONF_OS@_a_SOURCES = \ $(NOLTO_COREGRIND_SOURCES_COMMON) |