I read that only the GNU implementation of the STL supports the C++ exceptions. I'm not sure about what it means exactly.
If I'm not using this implementation, does it mean that :
The STL does not throw exceptions, but I'm still able to use my own exceptions wherever I want to.
Or that all the exceptions are disabled, in every piece of code, like they were not a C++ feature ?
From the Android NDK page:
So, the NDK can support STL with exceptions, but it is off by default. This page details what happens when you use
-fno-exceptions
with GNU compilers (and the NDK compiler is gcc based). Since this STL is implemented all in headers, its usage of exceptions depends on whether the code that includes it (eg. your code) is compiled with or without exceptions. If you use exceptions in your code, and compile with-fexceptions
, then you can use exceptions as normal in your own code, as well as using exceptions in the STL.