我想交叉编译一个在x86_64上使用libncurses的简单程序。目标系统是MIPS。
我的crosstool-ng-1.20版本运行良好(带有未知精灵的示例mips)
然而,一个简单的hello世界却以糟糕的结局收场。
#include <stdio.h>
int main(void)
{
printf("OH HAI.n");
return 0;
}
--
x86host:~/toolchain$ mips-unknown-elf-gcc -o hello hello.c
hello.c:1:19: fatal error: stdio.h: No such file or directory
#include <stdio.h>
^
compilation terminated.
我显然做错了什么,但我该从哪里开始呢?
[编辑]
谢谢你,马克。Codesourcery正是我所需要的。
mips-linux-gnu-gcc.exe -static -o helloStatic hello.c
概念验证完成。现在开始编译我的ncurses程序。
[Switch:/]$ file /mnt/sd3/user/helloStatic
/mnt/sd3/user/helloStatic: ELF 32-bit MSB executable, MIPS, MIPS32 rel2 version 1,
statically linked, for GNU/Linux 2.6.16, with unknown capability
0x41000000 = 0xf676e75, not stripped
[Switch:/]$ uname -a
Linux Switch 2.6.32.59-cavium-octeon2.cge-cavium-octeon #1
SMP PREEMPT Fri May 10 11:48:14 PDT 2013 mips64 GNU/Linux
[Switch:/]$ /mnt/sd3/user/helloStatic
HOLIDAYS ARE COMING.
您可能需要构建mips-linux-elf-gcc。您确定您的MIPS目标系统配置为big-endian吗?
无论如何,您可以通过从这里下载免费的Mentor/Coodesourcery MIPS gnu/gcc交叉编译工具链来避免所有这些问题。此工具链可用于Windows和Linux。
root@x86host:~/ncurses-5.9-20141101# export CC=mips-linux-gnu-gcc
root@x86host:~/ncurses-5.9-20141101# ./configure --target=mips-linux-gnu --host=mips-linux-gnu
[..]
root@x86host:~/ncurses-5.9-20141101# make
然后,我从/usr/include/复制了几个标题,使其消失:
root@x86host:~/ninvaders-0.1.1# make
In file included from ./ncurses.h:1685:0,
from view.h:25,
from view.c:25:
./unctrl.h:54:20: fatal error: curses.h: No such file or directory
#include <curses.h>
^
compilation terminated.
make: *** [view.o] Error 1
root@x86host:~/ninvaders-0.1.1# make
mips-linux-gnu-gcc -static -c -I. -O -Wall globals.c
mips-linux-gnu-gcc -static -c -I. -O -Wall view.c
mips-linux-gnu-gcc -static -c -I. -O -Wall aliens.c
mips-linux-gnu-gcc -static -c -I. -O -Wall ufo.c
mips-linux-gnu-gcc -static -c -I. -O -Wall player.c
mips-linux-gnu-gcc -static -c -I. -O -Wall nInvaders.c
mips-linux-gnu-gcc -static -L /root/ncurses-5.9-20141101/lib -onInvaders globals.o view.o aliens.o ufo.o player.o nInvaders.o -lncurses
root@x86host:~/ninvaders-0.1.1# ls -l nInvaders
-rwxr-xr-x 1 root root 933003 Nov 6 16:18 nInvaders
root@x86host:~/ninvaders-0.1.1# mv nInvaders nInvaders_IOSXE_MIPS
对于未来的谷歌用户来说,Makefile是:
CC=mips-linux-gnu-gcc -static
CFLAGS=-O -Wall
LIBS=-lncurses
LDFLAGS=-L /root/ncurses-5.9-20141101/lib
CFILES=globals.c view.c aliens.c ufo.c player.c nInvaders.c
HFILES=globals.h view.h aliens.h ufo.h player.h nInvaders.h
OFILES=globals.o view.o aliens.o ufo.o player.o nInvaders.o
all: nInvaders
nInvaders: $(OFILES) $(HFILES)
$(CC) $(LDFLAGS) -o$@ $(OFILES) $(LIBS)
.c.o:
$(CC) -c -I. $(CFLAGS) $(OPTIONS) $<
clean:
rm -f nInvaders $(OFILES)
最终结果:
root@x86host:~/ninvaders-0.1.1# file nInvaders_IOSXE_MIPS
nInvaders_IOSXE_MIPS: ELF 32-bit MSB executable, MIPS,
MIPS32 rel2 version 1, statically linked, for GNU/Linux 2.6.16, not stripped
屏幕截图:
https://i.stack.imgur.com/Dlmen.jpg
https://www.youtube.com/watch?v=-qbmKYQ2jCA