我有一台Ubuntu 14.04可靠的64位计算机。我的操作系统和内核都是64位的

 uname -a
Linux --- 3.13.0-43-generic #72-Ubuntu SMP Mon Dec 8 19:35:06 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

我从Linaro下载了预先构建的工具链二进制文件,因为我正在使用Raspberry Pi进行一些工作,但是我无法编译我的代码,因为我下载的二进制文件是32位的,在我的64位计算机上无法识别。
有人能给我指点一下吗?(如果我能从Linaro找到一个64位的预先构建的工具链)或者我可以在Ubuntu上部署的任何其他解决方案来解决这个问题
我的错误如下
some@somemachine:~/tools/compilers/linaro/gcc-linaro-arm-none-eabi-4.9-2014.09_linux/bin$ file ./arm-none-eabi-gcc-4.9.2
./arm-none-eabi-gcc-4.9.2: ELF 32-bit LSB  executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.15, stripped

文件(是的!在目录里)
some@somemachine:~/tools/compilers/linaro/gcc-linaro-arm-none-eabi-4.9-2014.09_linux/bin$ arm-none-eabi-gcc -v
bash: /home/some/tools/compilers/linaro/gcc-linaro-arm-none-eabi-4.9-2014.09_linux/bin/arm-none-eabi-gcc: No such file or directory

最佳答案

我发现了问题。我不得不用谷歌搜索一下。

sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0

会解决问题的。这将使32位应用程序能够在64位计算机上正常运行+可能需要安装其他*.i386库

关于linux - Linaro ARM工具链在64位OS中预构建二进制文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27585765/

10-15 10:35