Android开源项目构建系统是否支持异常和RTTI?

时间:2012-01-18 20:23:42

标签: android exception-handling android-build

我正在使用Android构建系统从源代码构建Android。我有一些C ++代码抛出异常,但它不会构建:

// test.cpp exceptions
#include <iostream>
using namespace std;

    int main () {
      try
      {
        throw 20;
      }
      catch (int e)
      {
        cout << "An exception occurred. Exception Nr. " << e << endl;
      }
      return 0;
    }

我收到此错误:

test.cpp:10: error: undefined reference to 'typeinfo for int'

其他一些工程师告诉我,Android操作系统工具链不支持异常。谁能证实这一点?

请注意,我 询问NDK工具链。

0 个答案:

没有答案