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 ツールチェーンについて質問しているわけではないことに注意してください。