This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
PR 3591, PR 5676 - mcore C++
- From: Jakub Jelinek <jakub at redhat dot com>
- To: nickc at redhat dot com
- Cc: gcc at gcc dot gnu dot org
- Date: Thu, 21 Mar 2002 23:39:48 +0100
- Subject: PR 3591, PR 5676 - mcore C++
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
Hi!
Both these PRs are about the same thing:
mcore.h contains
/* The EPOC C++ environment does not support exceptions. */
#define CC1_SPEC "-funsigned-bitfields %{!DIN_GCC:-fno-rtti} %{!DIN_GCC:-fno-exceptions}"
and thus cannot build libstdc++-v3 which requires exception (particularly
in configure when detecting exception model).
I'd say either it wants libstdc++ and then it shouldn't disable exceptions
nor rtti by default, or it doesn't want libstdc++ and should turn it of in
configury.
Jakub