[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug gprofng/30779] gprofng: fails to build with musl-1.2.4 (gprofng/src
From: |
vladimir.mezentsev at oracle dot com |
Subject: |
[Bug gprofng/30779] gprofng: fails to build with musl-1.2.4 (gprofng/src/Data_window.h:56:3: error: 'off64_t' does not name a type; did you mean 'off_t'?) |
Date: |
Wed, 21 Aug 2024 02:22:55 +0000 |
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.