错误记录Visual Studio 中编译 NDK 报错 ( error : cannot use ‘throw‘ with exceptions disabled )

Posted 韩曙亮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了错误记录Visual Studio 中编译 NDK 报错 ( error : cannot use ‘throw‘ with exceptions disabled )相关的知识,希望对你有一定的参考价值。





一、报错信息



使用 Visual Studio 2019 编译 android NDK 项目 , 报错如下 :

已启动生成…
1>------ 已启动生成: 项目: native, 配置: Debug ARM ------
1>ANDROID_HOME=D:\\\\Microsoft\\AndroidSDK\\25
1>ANT_HOME=D:\\001_Develop\\017_Microsoft Visual Studio\\2019\\Community\\Apps\\apache-ant-1.9.3
1>JAVA_HOME=C:\\Program Files\\Android\\jdk\\microsoft_dist_openjdk_1.8.0.25
1>NDK_ROOT=D:\\\\Microsoft\\AndroidNDK64\\android-ndk-r16b
1>json_reader.cpp
1>json\\json_reader.cpp(1129,14): error : cannot use 'throw' with exceptions disabled
1>    if (!ok) throw std::runtime_error(reader.getFormatedErrorMessages());
1>             ^
1>1 error generated.
1>已完成生成项目“native.vcxproj”的操作 - 失败。
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0==========





二、解决方案



在项目属性中设置 " 启动 C++ 异常 " 项为 " 是 ( -fexception ) " 选项 ;


如果使用 Android.mk 构建项目 , 可以添加 LOCAL_CPP_FEATURES += exceptionsLOCAL_CPPFLAGS += -fexceptions 配置 ;

也可以在 Application.mk 中配置 APP_CPPFLAGS += -fexceptions ;

以上是关于错误记录Visual Studio 中编译 NDK 报错 ( error : cannot use ‘throw‘ with exceptions disabled )的主要内容,如果未能解决你的问题,请参考以下文章

错误记录Visual Studio 中配置 NDK 头文件路径

错误记录Visual Studio 中配置 NDK 头文件路径 ( NDK 的三个头文件路径 | 与 CPU 架构相关 asm 头文件路径选择 )

错误记录Android Studio 编译报错 ( VirtualApp 编译 NDK 报错 | Error:A problem occurred configuring project ‘: )(代

错误记录Android Studio 编译报错 ( VirtualApp 编译 NDK 报错 | Error:A problem occurred configuring project ‘: )(代

Android 逆向Android 进程注入工具开发 ( Visual Studio 开发 Android NDK 应用 | 使用 Makefile 构建 Android 平台 NDK 应用 )(代码

Android 逆向Android 进程注入工具开发 ( Visual Studio 开发 Android NDK 应用 | Visual Studio 中 SDK 和 NDK 安装位置 )(代码片段