Bill Allombert on Tue, 06 Jan 2004 21:43:59 +0100


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

Re: Installation failed on ix86 Linux


On Tue, Jan 06, 2004 at 07:55:28PM +0100, Franck MICHEL wrote:
> I've tried to install Pari/gp on a centrino laptop under Linux, but without
> success. I paste below the output of "./Configure" and "make gp", all
> suggestions are welcome.

> /usr/bin/gcc -c -O3 -DGCC_INLINE -Wall -Wno-implicit -fomit-frame-pointer
> -I. -I../src/headers  -o buch2.o ../src/basemath/buch2.c
> ../src/basemath/buch2.c:1782: internal compiler error: in remove_edge, at
> callgraph.c:189
> Please submit a full bug report,
> with preprocessed source if appropriate.
> See <URL:https://qa.mandrakesoft.com/> for instructions.

As it is written, this indicate a bug in your compiler, not in PARI, and
this is probably specific to Mandrake.  Please use a fixed version like
gcc 3.3.2 or an older version like gcc 2.95.  We cannot really
work-around this kind of bug.  

You can try to compile this file with a lower optimisation level: try

/usr/bin/gcc -c -O0 -DGCC_INLINE -Wall -Wno-implicit -fomit-frame-pointer -I. -I../src/headers  -o buch2.o ../src/basemath/buch2.c

in the object directory, or remove -fomit-frame-pointer.
If that work, use make gp to finish the compilation.

Cheers,
Bill.