Index: [thread] [date] [subject] [author]
  From: Andrew Apted <ajapted@netspace.net.au>
  To  : ggi-develop@eskimo.com
  Date: Sun, 26 Jul 1998 14:20:42 +1000

Re: LibGGI won't compile

Jon writes:

>  Here's the make log.  The error is at the bottom, but also take note of 
>  all these warnings about ANSI nonconformity.  If macros with variable 
>  arguments are to be kept, this warning should be turned off, otherwise it 
>  should be fixed.
>
>  gcc -fPIC -O2 -funroll-loops -fomit-frame-pointer  -pedantic   -I/home/jon/degas/lib/libggi/include -I/home/jon/degas/lib/libggi/../../include -I/home/jon/degas/lib/libggi/../../driver/include  -Wall -Wstrict-prototypes -g -DDEBUG -DGGICONFFILE=\"TaG1/etc
>  /ggi/libggi.conf\" -c -o init.o init.c

This is looking like a makefile problem.  On my box it is :

    gcc -fPIC -O2 -funroll-loops -fomit-frame-pointer -m486 -malign-functions=2 
    -malign-loops=2 -malign-jumps=2 -pedantic   -I/home/ggi/lib/libggi/include 
    -I/home/ggi/lib/libggi/../../include -I/home/ggi/lib/libggi/../../driver/include  -Wall -Wstrict-prototypes -g -DDEBUG -DGGICONFFILE=\"TaG1/etc/ggi/libggi.conf\" -c -o init.o init.c

Note the missing "-m486 -malign..." stuff.  What compiler are you using ?
(me: gcc 2.7.2.1).  Are you using libc5 or libc6 ?  (me: libc5).  That's
all I can think of (I don't understand the LibGGI makefiles :-/).

Cheers,
_____________________________________________  ____
                                               \  /
  Andrew Apted   <andrew@ggi-project.org>       \/
  

Index: [thread] [date] [subject] [author]