我正在尝试为 linux 系统交叉编译一个简单的 hello world 程序。
我有以下信息:
uname -a
Linux (none) 2.6.32.28 #130 PREEMPT Mon Feb 18 13:54:18 CST 2013 armv5tejl GNU/Linux
cat /proc/cpuinfo
Processor : ARM926EJ-S rev 5 (v5l)
BogoMIPS : 421.06
Features : swp half fastmult edsp java
CPU implementer : 0x41
CPU architecture: 5TEJ
CPU variant : 0x0
CPU part : 0x926
CPU revision : 5
Hardware : KeyASIC Ka2000 EVM
Revision : 0000
Serial : 0000000000000000
我想知道如何为这个系统进行交叉编译。我尝试了以下方法:
- arm-linux-gnueabi-gcc helloworld.c -march=armv5 -o helloworld
- arm-linux-gnueabi-gcc helloworld.c -mcpu=arm926ej-s -o helloworld
但是当我尝试运行可执行文件时,我收到错误消息“找不到命令”。我可能没有正确编译它,但鉴于我拥有的信息,我不知道要使用哪些编译选项。
(我知道 helloworld.c 一切正常)。
ls -l helloworld
-rwxr-xr-x 1 0 0 8428 Jan 1 00:00 helloworld
which helloworld
which: applet not found
我把busybox-armv5l放在
busybox which helloworld
(no output)
ldd 也不在我试图编译的系统上(它是超越 WifiSD 卡)。
ls -ln /lib/libc*
-rwxrwxrwx 1 0 0 244279 Jan 19 2012 /lib/libc.so.0
-rwxrwxrwx 1 0 0 13043 Jan 19 2012 /lib/libcrypt.so.0
-rwxr-xr-x 1 0 0 1251776 Jan 1 00:00 /lib/libcrypto.so.0.9.8
我尝试运行 /lib/libc.so.0 以获取版本信息,但出现分段错误。似乎用 -static 编译解决了这个问题。所以我想这是 libc 库的问题。感谢您的帮助。