Android NDK R5 and support of C++ exception

前端 未结 4 1597
借酒劲吻你
借酒劲吻你 2020-12-06 01:48

I am trying to use the NDK 5 full C++ gnustl:

The CPLUSPLUS-SUPPORT.html states:

The NDK toolchain supports C++ exceptions, since

4条回答
  •  萌比男神i
    2020-12-06 02:00

    The NDK-r5 tools support the use of exceptions and RTTI in C++ code. The use of an STL other than the GNU STL as a static library is not, however, supported, in the presence of RTTI or exceptions.

    The STLport supplied is not usable together with exceptions or RTTI.

    Note that it may be necessary to clean the build objects when swapping between STL implementations.

提交回复
热议问题