我正在尝试为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
我想知道如何交叉编译这个系统。我尝试过以下方法:
但是当我尝试运行可执行文件时,我收到错误消息“command not found”。 我可能没有正确编译它,但我不知道根据我的信息使用哪些编译选项。
(我知道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库的一个问题。谢谢你的帮助。
答案 0 :(得分:3)
我不得不使用-static标志在二进制文件中包含c库。感谢auselen。