我正在使用 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 OS 工具链不支持异常。谁能证实这一点?
请注意,我不是在询问 NDK 工具链。