Ndk R5 supports rtti

Source: Internet
Author: User

In the sources/cxx-STL/gnu-libstdc ++/readme file of ndk R5, it says:

To use it, define app_stl to 'gnustl _ static 'in your application. mk. <br/> see Docs/CPLUSPLUS-SUPPORT.html for more details. <br/> This implementation fully supports C ++ exceptions and rtti. <br/>

That is to say, if we add the following in the application. mk file:

App_stl: = gnustl_static

 

You can use GNU libstdc ++. This version supports C ++ exception and rtti. (I tried stlport in ndk R5. rtti is not supported. If typeid is used, an error is returned)

 

Note: Android build system always includes the-fno-rtti compilation option, but if you specify app_stl as gnustl_static, it will automatically add a-frtti to you later, in this way, G ++ uses the last flag, so rtti is enabled.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.