> <my makefile snippet>
> main.o: main.c $(H)
> ($CC) -c $(FLAGS) main.c
this should be
$(CC) -c $(FLAGS) main.c
> </my makefile snippet>
>
> $(CC) = gcc_arm (alias to my arm-unknown_linux_gnu_gcc)
is this in your makefile? if so shouldn't it be
CC=gcc_arm
rather than
$(CC)=gcc_arm
> FLAGS = empty
> H = header files
>
> I keep getting errors that say:
> gcc_arm -c main.c .... creating process<null>, failed
> make( e=2 ) ... something
> something... file cannot be found
I have seen this error when using mingw, seems to be caused when
CC is not defined.
Chris.
------------------------ Yahoo! Groups Sponsor --------------------~-->
Protect your PC from spy ware with award winning anti spy technology. It's free.
http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/CFFolB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ts-7000/
<*> To unsubscribe from this group, send an email to:
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|