https://bugs.kde.org/show_bug.cgi?id=384729

--- Comment #5 from Paul Floyd <[email protected]> ---
This looks fairly straightforward. Just change

#  if defined(VGO_linux)
   /* __libc_freeres() not yet available on Solaris. */
   extern void __libc_freeres(void);
   if ((to_run & VG_RUN__LIBC_FREERES) != 0) {
      __libc_freeres();
   }
#  endif

to

   extern void __libc_freeres(void) __attribute__((weak));
   if (((to_run & VG_RUN__LIBC_FREERES) != 0)) &&
       (__libc_freeres != NULL)) {
      __libc_freeres();
   }

in vg_preloaded.c

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to