我正在关注本指南在我的 Ubuntu 18.04 机器(64 位双核)上安装 Linaro。与指南不同,我想要最新版本的 Linaro。因此,我使用的命令如下:
sudo apt-get install aptitude
sudo apt-get install gcc-multilib
wget -c https://releases.linaro.org/components/toolchain/binaries/latest/arm-linux-gnueabihf/gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabihf.tar.xz --no-check-certificate
tar xf gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabihf.tar.xz
export CC=`pwd`/gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf-
{CC}gcc --version
它在最后一行失败,并抱怨:
{CC}gcc: command not found
有人能告诉我吗?我做错了什么?当我按照指南使用 Linaro 6.4.1 时,此过程以前失败了。提前谢谢您。
正如 N0rbert 指出的那样,我把 放在$
那里。输出是:
gcc (Ubuntu 7.3.0-16ubuntu3) 7.3.0
Copyright (C) 2017 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.
找不到 Linaro。该export
命令如何工作?为什么没有执行应有的操作?
答案1
下载 Linaro 并在文件底部添加路径~/.bashrc
。
PATH=$PATH:“Linaro 提取目录路径/bin”