Hi,
I'm using Segger Embedded Studio (with gcc naturally). The standard C++ exception handling doesn't work: exceptions are not caught by exception handler. Is there a way to enable normal C++ behaviour?
Thanks,
Daniel
Hi,
I'm using Segger Embedded Studio (with gcc naturally). The standard C++ exception handling doesn't work: exceptions are not caught by exception handler. Is there a way to enable normal C++ behaviour?
Thanks,
Daniel
I don't know about SES but it might disabled it by default. The GCC flag to disable exceptions is -fno-exceptions. Look to see if it compiles with this flag.
I don't know about SES but it might disabled it by default. The GCC flag to disable exceptions is -fno-exceptions. Look to see if it compiles with this flag.