From: Petar Jovanovic Date: Thu, 6 Apr 2017 12:39:15 +0000 (+0000) Subject: Add musl libc configure/compile X-Git-Tag: svn/VALGRIND_3_13_0~138 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f8f1e9cb434cc97ce16586437407a6ac7e6a74a7;p=thirdparty%2Fvalgrind.git Add musl libc configure/compile - add musl libc detection (prevents configure error) - adjust preload and symbol names (based on the OpenWrt patch, see [1]) [1] https://dev.openwrt.org/browser/trunk/package/devel/valgrind/patches/ 200-musl_fix.patch?rev=46302 Patch by Peter Seiderer It fixes Bug 359202. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@16296 --- diff --git a/configure.ac b/configure.ac index 4c3cc58446..26da681612 100644 --- a/configure.ac +++ b/configure.ac @@ -990,6 +990,13 @@ if test x$VGCONF_PLATFORM_PRI_CAPS = xX86_SOLARIS \ GLIBC_VERSION="solaris" fi +# GLIBC_VERSION is empty if a musl libc is used, so use the toolchain tuple +# in this case. +if test x$GLIBC_VERSION = x; then + if $CC -dumpmachine | grep -q musl; then + GLIBC_VERSION=musl + fi +fi AC_MSG_CHECKING([the glibc version]) @@ -1045,10 +1052,15 @@ case "${GLIBC_VERSION}" in # DEFAULT_SUPP set in host_os switch-case above. # No other suppression file is used. ;; + musl) + AC_MSG_RESULT(Musl) + AC_DEFINE([MUSL_LIBC], 1, [Define to 1 if you're using Musl libc]) + # no DEFAULT_SUPP file yet for musl libc. + ;; 2.0|2.1|*) AC_MSG_RESULT([unsupported version ${GLIBC_VERSION}]) - AC_MSG_ERROR([Valgrind requires glibc version 2.2 or later,]) - AC_MSG_ERROR([Darwin libc, Bionic libc or Solaris libc]) + AC_MSG_ERROR([Valgrind requires glibc version 2.2 or later, uClibc,]) + AC_MSG_ERROR([musl libc, Darwin libc, Bionic libc or Solaris libc]) ;; esac diff --git a/coregrind/vg_preloaded.c b/coregrind/vg_preloaded.c index 2f53a7d8fa..5c5a1bf8df 100644 --- a/coregrind/vg_preloaded.c +++ b/coregrind/vg_preloaded.c @@ -57,7 +57,7 @@ void VG_NOTIFY_ON_LOAD(freeres)(Vg_FreeresToRun to_run); void VG_NOTIFY_ON_LOAD(freeres)(Vg_FreeresToRun to_run) { -# if !defined(__UCLIBC__) \ +# if !defined(__UCLIBC__) && !defined(MUSL_LIBC) \ && !defined(VGPV_arm_linux_android) \ && !defined(VGPV_x86_linux_android) \ && !defined(VGPV_mips32_linux_android) \ diff --git a/include/pub_tool_redir.h b/include/pub_tool_redir.h index a4be688023..71c8d44835 100644 --- a/include/pub_tool_redir.h +++ b/include/pub_tool_redir.h @@ -244,8 +244,11 @@ /* --- Soname of the standard C library. --- */ #if defined(VGO_linux) || defined(VGO_solaris) +# if defined(MUSL_LIBC) +# define VG_Z_LIBC_SONAME libcZdZa // libc.* +#else # define VG_Z_LIBC_SONAME libcZdsoZa // libc.so* - +#endif #elif defined(VGO_darwin) && (DARWIN_VERS <= DARWIN_10_6) # define VG_Z_LIBC_SONAME libSystemZdZaZddylib // libSystem.*.dylib @@ -276,7 +279,11 @@ /* --- Soname of the pthreads library. --- */ #if defined(VGO_linux) +# if defined(MUSL_LIBC) +# define VG_Z_LIBPTHREAD_SONAME libcZdZa // libc.* +#else # define VG_Z_LIBPTHREAD_SONAME libpthreadZdsoZd0 // libpthread.so.0 +#endif #elif defined(VGO_darwin) # define VG_Z_LIBPTHREAD_SONAME libSystemZdZaZddylib // libSystem.*.dylib #elif defined(VGO_solaris)