ERROR: No toolchains found in the NDK toolchains folder for ABI with prefix: mipsel-linux-android

问题:

Android Studio 版本升级到3.0,或更高版本后,打开以前的项目工程,

build后报错:ERROR: No toolchains found in the NDK toolchains folder for ABI with prefix: mipsel-linux-android


错误信息

从错误信息我们就可以看出,NDK的toolchais目录下没有 arm-linux-androideabi编译工具,

这样就容易处理了,首先确认你已经安装NDK并引入到项目里。


项目NDK配置

然后打开电脑上对应的NDK目录下的toolchains文件夹,查看一下是否有mips编译工具目录


mips

如果没有,需要你重新下载NDK安装,或直接找已经有的复制到你电脑的NDK toolchains目录下,回到AndroidStudio重新build项目即可。

搞定!

你可能感兴趣的:(ERROR: No toolchains found in the NDK toolchains folder for ABI with prefix: mipsel-linux-android)