Disable C++ exception report for HPPA by default

`Ltest-cxx-exceptions` doesn't work, better off not buildinging it by
default.
This commit is contained in:
Stephen Webb
2025-09-02 12:16:58 -04:00
committed by Stephen M. Webb
parent 4ab1dbe714
commit e8a8b35f5f

View File

@@ -298,7 +298,7 @@ AC_ARG_ENABLE([cxx_exceptions],
)
AS_IF([test $enable_cxx_exceptions = check],
[AS_CASE([$target_arch],
[aarch64*|arm*|mips*|x86*|s390x*|loongarch64], [enable_cxx_exceptions=no],
[aarch64*|arm*|hppa*|mips*|x86*|s390x*|loongarch64], [enable_cxx_exceptions=no],
[enable_cxx_exceptions=yes])]
)
AC_MSG_RESULT([$enable_cxx_exceptions])