我正在使用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工具链。