From de75252e291f27aa27846813cd2442f663c82fee Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sun, 1 Nov 2020 14:26:35 +0200 Subject: [PATCH] musl: add comments about valgrind --- core/musl/build | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/musl/build b/core/musl/build index 14c67fa7..a003f108 100755 --- a/core/musl/build +++ b/core/musl/build @@ -1,8 +1,13 @@ #!/bin/sh -e +# Uncomment if using valgrind or similar. +# :>nostrip + ./configure \ --prefix=/usr \ - --syslibdir=/usr/lib + --syslibdir=/usr/lib \ +# Uncomment if using valgrind or similar. +# --enable-debug make make DESTDIR="$1" install