3

我正在尝试在 Android NDK 项目中包含 Crypto++ (http://www.cryptopp.com/)。我希望能够从我的代码的 C++ 部分调用 Crypto++ 成员函数。我以为我可以在我的 C++ 代码中包含来自 Crypto++ 的标头和源代码,但我似乎无法让它工作。

我的 C++ 文件如下所示:

#include <jni.h>
#include "cryptopp/modes.h"
#include "cryptopp/aes.h"
using namespace CryptoPP;
...

在 cryptopp 子目录中包含所有 Crypto++ 头文件和源文件。

最初我收到许多编译错误,因为没有找到标准 C++ 库,但我通过添加 Application.mk 并添加以下行来解决这个问题:

APP_STL := stlport_static

使用 ndk-build 编译(标准版本和水晶版本)给我以下错误:

ABI='armeabi'
ABI='armeabi-v7a'
ABI='x86'
Gdbserver      : [arm-linux-androideabi-4.4.3] libs/armeabi/gdbserver
Gdbsetup       : libs/armeabi/gdb.setup
Compile++ thumb  : ndk-tests-cpp <= ndk-tests.cpp
In file included from jni/cryptopp/modes.h:7,
             from jni/ndk-tests.cpp:2:
jni/cryptopp/cryptlib.h: In static member function 'static void CryptoPP::NameValuePairs::ThrowIfTypeMismatch(const char*, const std::type_info&, const std::type_info&)':
jni/cryptopp/cryptlib.h:291: error: exception handling disabled, use -fexceptions to enable
make: *** [obj/local/armeabi/objs-debug/ndk-tests-cpp/ndk-tests.o] Error 1

我以前从未在 NDK 项目中包含外部库 - 也许我只是忽略了一些基本的东西。

4

1 回答 1

6

您必须为您的 Android 项目启用例外。尝试将这些行包含到您的 Applications.mk 中:

APP_CPPFLAGS += -frtti 
APP_CPPFLAGS += -fexceptions
于 2012-04-28T19:37:24.890 回答