我正在尝试安装GNU ARM嵌入式工具链,以便将它与Sublime Text 3集成到Ubuntu机器中。
我按照这个步骤,但是我收到了一个错误:
1.从“https://launchpad.net/gcc-arm-embedded/+downloadGo”下载数据包,然后在主目录中解压缩数据包:
cd ~/
tar -xvjf ~/Downloads/gcc-arm-none-eabi-5_4-2016q3-20160926-linux.tar.bz2
2.测试文件是否存在,权限是否正常。
ll ~/gcc-arm-none-eabi-5_4-2016q3/bin
-rwxrwxrwx 2 root root 776368 set 26 19:36 arm-none-eabi-gcc*
--- I obmited the others files... ---
3.测试是否有效:
sudo ~/gcc-arm-none-eabi-5_4-2016q3/bin/arm-none-eabi-gcc --version
但我收到了这个错误:
bash: /home/fabio/gcc-arm-none-eabi-5_4-2016q3/bin/arm-none-eabi-gcc: No such file or directory
我该如何解决这个问题?我的用户是“fabio”,但该文件的所有者是root。
答案 0 :(得分:1)
问题解决了。
"No such file or directory" error when executing a binary
我错过了/lib/ld-linux.so.2文件,这是运行32位应用程序所必需的。