Configuring incomplete, errors occurred!

2024-06-04 07:18

本文主要是介绍Configuring incomplete, errors occurred!,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

(问题)主要报错:

-- Configuring incomplete, errors occurred!

CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage

CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage

Build command failed.

(解决)项目模块配置build.gradle:

把app/build.gradle  ndk{} 里面的 'armeabi' 去掉

修改前:

        cmake {
            abiFilters "armeabi","arm64-v8a","armeabi-v7a","x86"
        }

修改后:
        cmake {
            abiFilters "arm64-v8a","armeabi-v7a","x86"
        }


(分析)报错原因:

查看提示信息,大概意是为对armeabi的支持 no longer
 

这篇关于Configuring incomplete, errors occurred!的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1029420

相关文章

「Debug R」如何处理Error in readLines(f) :(converted from warning) incomplete final line found on xxx...

用devtools::install_github从GitHub上安装一个R包的时候出现了报错, 报错截图如下所示: 报错 从报错内容基本上可以确定是换行符惹的祸,我将该文件传送到Linux下,用cat -A检查,发现最后一行后面没有换行符。 ^M是Windows的换行符 解决方案: 手动增加最后一行。 手动加换行 到此当前的

MyEclipse:Errors occurred during the build. Errors running builder 'DeploymentBuilder' on project。

Errors occurred during the build. Errors running builder 'DeploymentBuilder' on project 'myf'. java.lang.NullPointerException 此问题一般发生在Myeclipse 保存文件并自动部署时候。 Errors occurred during the buil

tessy 单元测试 TDE 界面 数据无法填充:the test object interface is incomplete

目录 1,失败现象 2,失败原因 3,解决办法 1,失败现象         函数名字前的图标高度缩小为正常的一半,TDE界面的数据无法填充。错误提示为题目中的英文。 2,失败原因         TIE界面,此函数的参数的 passing 方向有 unknown,未正确识别。 3,解决办法         将 interface 栏的所有参数的 passing 和

Eclipse报错:An internal error has occurred. Widget is disposed

在使用Eclipse编写JavaWeb项目时,突然遇到了这样一个error: An internal error has occurred.Widget is disposed 之前Eclipse用的好好的,这个问题出现的甚是突然。采用以下方法后解决了这个问题,现在记录以下。 右键Eclipse的快捷方式,在兼容性窗口的兼容模式中,将“以兼容模式运行这个程序”选项打对勾,如下图

WPF Text=“{Binding AdornedElement.(Validation.Errors)[0].ErrorContent 报绑定错误

WPF  Text="{Binding AdornedElement.(Validation.Errors)[0].ErrorContent 报绑定错误 完整报错信息如下:System.Windows.Data Error: 17 : Cannot get 'Item[]' value (type 'ValidationError') from '(Validation.Errors)'(typ

reason: the Java file contained parse errors

今天用Maven打包项目是发生一个错误: file: D:\workspace\echoo2.0-xxx-xxx-portal\src\main\java\com\echoo\service\impl\DecDataServiceImpl.java; reason: the Java file contained parse errors 打包报错显示这个类解析错误 在ide中没有任何错误提示

安装Docker Desktop报错WSL 2 installation is incomplete(实操教程)

点击运行提示WSL2安装不完整问题描述:WSL 2 installation is incomplete. The WSL 2 Linux kernel is now installed using a separate MSl updatepackage. Please click the link and follow the instructions to install thekernel

An error occurred on the server when processing the URL解决方法(iis7)

在WINDOWS 7上安装了IIS7.5,调试ASP程序时出现以下错误: An erroroccurred on the server when processing the URL. Please contact the system administrator.If you are the system administrator please click here to fin

[Vue-常见错误]浏览器显示Uncaught runtime errors

文章目录 错误描述正确写法具体如下 错误描述 当前端代码发生错误时,浏览器中出现以下错误提示。 正确写法 显然这不是我们所期望的,在vue.config.js中配置如下设置关闭Uncaught runtime errors显示 devServer: {client: {overlay: false} 具体如下 const {defineConfig} =

MySQL无法连接[MySql Host is blocked because of many connection errors]

测试环境,发现数据库(MySQL数据库)无法登录,报错如下: Host is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts' 上网查到解决方案,转载如下:http://www.cnblogs.com/susuyu/archive/2013/05/28/3104249.htm