ARM上運行可執(zhí)行程序出現(xiàn)No such file or directory的問題
問題:
使用arm-none-linux-gnueabi-gcc –o hello hello.c編譯完成,在ARM上運行出現(xiàn)報錯:
-sh: ./hello: No such file or directory
原因:
因為我們的程序使用的是動態(tài)鏈接方式編譯的,而ARM上的鏈接庫文件路徑不同,導(dǎo)致找不到文件,可以用gcc-static命令改用靜態(tài)鏈接的方式編譯:
arm-none-linux-gnueabi-gcc –o hello hello.c -static
編譯器的架構(gòu)有差
這是發(fā)生在一次新的開發(fā)板的交叉編譯中產(chǎn)生的,同樣的程序用同樣的工具鏈編譯后,一個開發(fā)板正常,二另一個報No such file or directory,文件明明存在,這個問題在于arm-Linux-guneabi-和arm-linux-guneabihf-這兩個鏈的差別在于hf二字,這個是浮點單元的支持與否,選擇錯誤會導(dǎo)致上述錯誤發(fā)生。
用uname -a查看ARM的架構(gòu)和Linux版本,舉例:
root@imx6qsabresd:~# uname -a
Linux imx6qsabresd 3.14.28-1.0.0_ga+g91cf351 #14 SMP PREEMPT Tue Apr 25 16:25:22 CST 2017 armv7l GNU/Linux
查看執(zhí)行程序的屬性,舉例:
zhao@zhao-VirtualBox:/home/nfs/file/ntp$ file ntpdate
ntpdate: ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.32, not stripped
以上的情況就無法執(zhí)行,顯示“No such file or directory”,然后通過更換GCC成功了。新版本:
gcc-linaro-arm-linux-gnueabihf-4.9-2014.07_linux.tar.xz