/bin/sh: 1: gcc-arm-9.2-2019.12-x86_64-arm-none-linux-gnueabihfgcc: not found Makefile:720: recipe for target 'apps/app_rand.o' failed make[1]: *** [apps/app_rand.o] Error 127 make[1]: Leaving directory '/opt/openssl-1.1.1/openssl-1.1.1' Makefile:169: recipe for target 'all' failed make: *** [all] Error 2如何解决
时间: 2024-03-27 12:35:53 浏览: 183
gcc-arm-8.3-2019.03-x86_64-aarch64-linux-gnu.tar.xz
5星 · 资源好评率100%
这个错误提示是在编译 OpenSSL 时出现的。错误原因是没有找到 gcc-arm-9.2-2019.12-x86_64-arm-none-linux-gnueabihfgcc 这个编译器。
要解决这个问题,需要安装 gcc-arm-9.2-2019.12-x86_64-arm-none-linux-gnueabihfgcc 编译器。你可以从官网下载并安装这个编译器,然后将其路径添加到 PATH 环境变量中。
运行以下命令,以在 PATH 环境变量中添加编译器路径:
```
export PATH=$PATH:/path/to/gcc-arm-9.2-2019.12-x86_64-arm-none-linux-gnueabihfgcc/bin
```
其中,/path/to/ 是你安装编译器的路径。将其替换为实际路径。
然后重新编译 OpenSSL,这个错误应该就会解决了。
阅读全文