在嵌入式开发板中运行程序提示-/bin/sh: ./xx: not found的解决办法
今天拿着我的tiny6410板子,在虚拟机上用
$arm-linux-gcc he.c -o he
编译后放到tiny6410的文件系统中提示
-/bin/sh: ./xx: not found
后来发现这是因为没有找到应用程序所需要的库
所以改成静态编译就可以了
$arm-linux-gcc -static he.c -o he
u-boot下载地址: ftp://ftp.denx.de/pub/u-boot/
linux内核下载地址: https://www.kernel.org/pub/linux/kernel
linux内核下载地址: https://www.kernel.org/pub/linux/kernel