https://sourceware.org/bugzilla/show_bug.cgi?id=30779
--- Comment #30 from Vladimir Mezentsev <vladimir.mezentsev at oracle dot com> --- Let's disable the gprofng build for musl. I don't have a musl machine to test this fix: % git diff diff --git a/configure b/configure index 7823f2c3784..93d286bb3b7 100755 --- a/configure +++ b/configure @@ -3146,6 +3146,8 @@ fi if test "$enable_gprofng" = "yes"; then case "${target}" in + *-musl*) + ;; x86_64-*-linux* | i?86-*-linux* | aarch64-*-linux* | riscv64-*-linux*) configdirs="$configdirs gprofng" ;; diff --git a/configure.ac b/configure.ac index a390639bfa9..6fd9e77f20a 100644 --- a/configure.ac +++ b/configure.ac @@ -414,6 +414,8 @@ enable_gprofng=$enableval, enable_gprofng=yes) if test "$enable_gprofng" = "yes"; then case "${target}" in + *-musl*) + ;; x86_64-*-linux* | i?86-*-linux* | aarch64-*-linux* | riscv64-*-linux*) configdirs="$configdirs gprofng" ;; I suggest to rename this bug as "support gprofng on musl" and update 29477 and 29593 as "suspended" or "waiting". -- You are receiving this mail because: You are on the CC list for the bug.