gcc 问题 -> 未找到 stdio.h

gcc 问题 -> 未找到 stdio.h

我必须编译一个程序。理论上我只需要改变两个路径......

你能帮助我吗?

Makefile

# Original
#CC=arm-1136jf_s_r1_vfp_hard_float-linux-gnueabi-gcc
#CFLAGS= -O3 -ffunction-sections -fdata-sections --sysroot=/home/mguivarch/Desktop/buildroot-2011.08-advansee/build/staging/ 
#LDFLAGS= -Wl,--gc-sections -lpthread -lrt -lm -L/home/mguivarch/Desktop/buildroot-2011.08-advansee/build/staging/usr/lib

# Change I made
CC=gcc 
CFLAGS= -O3 -ffunction-sections -fdata-sections --sysroot=/home/mihai/Desktop/MIPSEE/Programme
LDFLAGS= -Wl,--gc-sections -lpthread -lrt -lm -L/usr/include


EXEC=livic_sync

all: $(EXEC)


livic_sync: capture.o main.o clientTCP.o
$(CC) -o livic_sync capture.o main.o clientTCP.o $(LDFLAGS)


clientTCP.o: ClientTCP.c main.h
$(CC) -o clientTCP.o -c ClientTCP.c $(CFLAGS)

capture.o: capture.c ClientTCP.h
$(CC) -o capture.o -c capture.c $(CFLAGS)


main.o: main.c capture.h
$(CC) -o main.o -c main.c $(CFLAGS)


clean:
rm *.o


mrproper: clean
rm $(EXEC)

vPro:〜/桌面/MIPSEE/Program$ make

gcc -o capture.o -c capture.c -O3 -ffunction-sections -fdata-sections --sysroot=/home /mihai/Desktop/MIPSEE/Programme

capture.c:9:19:致命错误:stdio.h:没有此文件或目录

编译终止。

制作:*[capture.o] 错误 1


:〜/桌面/MIPSEE/程序$ ls -l

共 216

-rw-r--r-- 1 mihai mihai 15905 十月 30 19:34 capture.c

-rw-r--r-- 1 mihai mihai 453 2012 年 7 月 17 日 capture.h

-rw-r--r-- 1 mihai mihai 3228 2012 年 7 月 18 日 ClientTCP.c

-rw-r--r-- 1 mihai mihai 217 2012 年 9 月 13 日 ClientTCP.h

-rw-r--r-- 1 mihai mihai 948 2012年2月10日 ClientUDP.c

-rw-r--r-- 1 mihai mihai 141 2012 年 2 月 9 日 ClientUDP.h

drwxrwxr-x 18 mihai mihai 4096 11月1日 10:11 html

-rw-r--r-- 1 mihai mihai 6459 十月 30 19:31 main.c

-rw-r--r-- 1 mihai mihai 1374 2012 年 6 月 21 日 main.h

-rw-r--r-- 1 mihai mihai 865 11月 1 12:46 Makefile

-rw-r--r-- 1 mihai mihai 870 11月1日 12:30 Makefile~

-rw-rw-r-- 1 mihai mihai 75566 11月 1 10:11 mihaiDoxygenConfig

-rw-rw-r-- 1 mihai mihai 75568 十月 30 14:57 mihaiDoxygenConfig~

drwxr-xr-x 3 mihai mihai 4096 十月 30 19:55 MIPSEE

:〜/桌面/MIPSEE/程序$


:〜/桌面/MIPSEE/Programme$定位stdio.h

/usr/include/stdio.h

/usr/include/boost/iostreams/filter/stdio.hpp

/usr/include/c++/4.6/tr1/stdio.h

/usr/include/glib-2.0/glib/gstdio.h

/usr/include/i386-linux-gnu/bits/stdio.h

/usr/include/unicode/ustdio.h

/usr/lib/perl/5.14.2/CORE/nostdio.h

/usr/lib/syslinux/com32/include/stdio.h

相关内容