gcc problem - stdio.h não encontrado

1

Eu tenho que compilar um programa. teoricamente eu preciso apenas mudar o caminho ...

você pode me ajudar?

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: ~ / Desktop / MIPSEE / Programa $ make

gcc -o capture.o -c capture.c -O3 -seções -função -fdata-sections --sysroot = / home / mihai / Desktop / MIPSEE / Program

capture.c: 9: 19: erro fatal: stdio.h: Nenhum arquivo ou diretório desse tipo

compilação terminada.

make: * [capture.o] Erro 1

: ~ / Desktop / MIPSEE / Programa $ ls -l

total 216

-rw-r - r-- 1 mihai mihai 15905 30 de outubro às 19:34 capture.c

-rw-r - r-- 1 mihai mihai 453 17 de julho de 2012 capture.h

-rw-r - r-- 1 mihai mihai 3228 18 de julho de 2012 ClientTCP.c

-rw-r - r-- 1 mihai mihai 217 13 de setembro de 2012 ClientTCP.h

-rw-r - r-- 1 mihai mihai 948 10 de fev de 2012 ClientUDP.c

-rw-r - r-- 1 mihai mihai 141 9 de fev de 2012 ClienteUDP.h

drwxrwxr-x 18 mihai mihai 4096 nov 1 10:11 html

-rw-r - r-- 1 mihai mihai 6459 30 de outubro 19:31 main.c

-rw-r - r-- 1 mihai mihai 1374 21 de junho de 2012 main.h

-rw-r - r-- 1 mihai mihai 865 nov 1 12:46 Makefile

-rw-r - r-- 1 mihai mihai 870 1 de novembro 12:30 Makefile ~

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

-rw-rw-r-- 1 mihai mihai 75568 30 de outubro 14:57 mihaiDoxygenConfig ~

drwxr-xr-x 3 mihai mihai 4096 30 de outubro às 19:55 MIPSEE

: ~ / Desktop / MIPSEE / Programa $

: ~ / Desktop / MIPSEE / Programa $ locate 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

    
por MihaiC 01.11.2013 / 13:05

0 respostas