查看gcc-arm-linux-gnueabihf 版本
时间: 2024-10-15 17:15:47 浏览: 26
gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_windows.zip
3星 · 编辑精心推荐
查看GCC (GNU Compiler Collection) for ARM Linux with EABI (Embedded ABI) Hard Float version,你可以按照以下步骤操作:
1. 打开终端(Terminal)。
2. 输入命令 `arm-linux-gnueabihf-gcc --version` 或者 `gcc -v`(如果已经设置环境变量指向ARM交叉编译工具链)。
3. 按回车键后,你会看到GCC的版本信息,包括编译器名称、版本号以及相关的平台和架构信息。
例如输出可能会像这样:
```
arm-linux-gnueabihf-gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
```
阅读全文