crosstool-ng - stdio.h:没有这样的文件或目录

时间:2014-11-06 17:09:33

标签: mips cross-compiling crosstool-ng

我想交叉编译一个在我的x86_64上使用libncurses的简单程序。目标系统是MIPS。

我的crosstool-ng-1.20版本很好(使用示例mips-unknown-elf)

然而,一个简单的问候世界结束了。

#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.

我在这里显然做了一些非常错误的事情,但我从哪里开始呢?


[编辑]

谢谢markgz。代码源正是我所需要的。

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.

2 个答案:

答案 0 :(得分:1)

您可能需要构建mips-linux-elf-gcc。您确定您的MIPS目标系统配置为big-endian吗?

无论如何,您可以通过从here下载免费的Mentor / Codesourcery MIPS gnu / gcc交叉编译工具链来避免所有这些问题。此工具链适用于Windows和Linux。

答案 1 :(得分:0)

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

对于未来的googlers,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

截图:
http://imgur.com/a/kf8cu
https://www.youtube.com/watch?v=-qbmKYQ2jCA