tinycc-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Tinycc-devel] /usr/lib/libgtk.so referenced dll: arrow not found


From: Greg Haerr
Subject: Re: [Tinycc-devel] /usr/lib/libgtk.so referenced dll: arrow not found
Date: Thu, 10 Mar 2005 08:55:13 -0800

> %.o:
>     $(CC) $(CCFLAGS) -c $*.c
>
> gbase.o: gbase.c

Try changing the gbase.o: gbase.c rule to include a
specific compilation directive, rather than using the
implicit rule, since it appears that the compilation must
not be identical:


gbase.o: gbase.c
     $(CC) $(CCFLAGS) -c $*.c


Ultimately, you need to compare the console tcc command
line for each case, and see what's different.

Regards,

Greg


> Running this Makefile gives the error message shown above.
> However, if I do this:
>
> tcc `gtk-config --cflags` -o gbase gbase.c `gtk-config --libs`
>
> Then no error message, it compiles okay.
>
> Can anyone explain to me why the standard makefiles on gbase and some
> other packages give these error messages?
> I would greatly appreciate if you could send a copy of your reply to me at
> address@hidden as I'm not on the TinyCC email list.
>
> Regards,
> Barry Kauler
> http://www.goosee.com/puppy
>
>
>
>
>
> _______________________________________________
> Tinycc-devel mailing list
> address@hidden
> http://lists.nongnu.org/mailman/listinfo/tinycc-devel
>





reply via email to

[Prev in Thread] Current Thread [Next in Thread]