返回顶部
首页 > 资讯 > 移动开发 >Android Studio编译JNI项目,Cmake出错:Detecting C compiler ABI info - failed
  • 183
分享到

Android Studio编译JNI项目,Cmake出错:Detecting C compiler ABI info - failed

android 2023-09-23 05:09:45 183人浏览 独家记忆
摘要

cmake的定义是什么 ?-----⾼级编译配置⼯具cmake就是将多个cpp、hpp文件组合构建为一个大工程的语言。他能够输出各种各样的makefile或者project文件,所有操作都是通过编译C

cmake的定义是什么 ?-----⾼级编译配置⼯具cmake就是将多个cpp、hpp文件组合构建为一个大工程的语言。他能够输出各种各样的makefile或者project文件,所有操作都是通过编译CMakeLists.txt来完成。

在使用Android Stodio编译JNI项目时出现Cmake错误,报错如下:

Execution failed for task ':app:configureCMakeDebug[arm64-v8a]'.> [CXX1429] error when building with cmake using C:\Users\Dell\AndroidStudioProjects\MyApplication2\app\src\main\cpp\CMakeLists.txt: -- Android: Targeting api '31' with architecture 'arm64', ABI 'arm64-v8a', and processor 'aarch64'  -- Android: Selected unified Clang toolchain  -- The C compiler identification is unknown  -- The CXX compiler identification is Clang 12.0.8  -- Detecting C compiler ABI info  -- Detecting C compiler ABI info - failed  -- Check for working C compiler: D:/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe  -- Check for working C compiler: D:/Sdk/ndk/23.1.7779620/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe - broken  -- Configuring incomplete, errors occurred!

在这里插入图片描述

在cpp\CMakeLists.txt文件最上方添加后解决问题

会在编译时跳过编译器检查,就不会再出现异常了。

set(CMAKE_C_COMPILER_WORKS TRUE)set(CMAKE_CXX_COMPILER_WORKS TRUE)
弱小不是逃避的借口,应是竭尽全力的理由。

来源地址:https://blog.csdn.net/weixin_45377770/article/details/132320347

--结束END--

本文标题: Android Studio编译JNI项目,Cmake出错:Detecting C compiler ABI info - failed

本文链接: https://lsjlt.com/news/416096.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作