diff options
author | Vladimir Mezentsev <vladimir.mezentsev@oracle.com> | 2024-08-23 13:43:18 -0700 |
---|---|---|
committer | Vladimir Mezentsev <vladimir.mezentsev@oracle.com> | 2024-08-26 13:48:29 -0700 |
commit | abb27dd124fd8d8a879ff667776bbf22422f464e (patch) | |
tree | 435f182c8d3a5e7edc114530ccd143470df5e688 /configure.ac | |
parent | Simplify ada_identical_enum_types_p (diff) | |
download | binutils-gdb-abb27dd124fd8d8a879ff667776bbf22422f464e.tar.gz binutils-gdb-abb27dd124fd8d8a879ff667776bbf22422f464e.tar.bz2 binutils-gdb-abb27dd124fd8d8a879ff667776bbf22422f464e.zip |
Disable gprofng build for *musl*
I disable gprofng until gprofng is ported to musl.
gprofng/ChangeLog
2024-08-22 Vladimir Mezentsev <vladimir.mezentsev@oracle.com>.
PR gprofng/30779
PR gprofng/29593
PR gprofng/29477
* configure.ac: Disable gprofng build for *musl*.
* configure: Rebuild.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
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" ;; |