After changing the makefile according to pervious posting in this NG the
compilation worked for a very short time. It all ended up in unresolved
symbols in one of the systems lib filed (crt1.o) and in various places
in file bbox.o. I can't find any way around this so if anyone have an
idea how to fix this problem I would appreciate some help.
Tanks...
/Johan
Johan Eriksson wrote:
> > After changing the makefile according to pervious posting in this NG the> compilation worked for a very short time. It all ended up in unresolved> symbols in one of the systems lib filed (crt1.o) and in various places> in file bbox.o. I can't find any way around this so if anyone have an> idea how to fix this problem I would appreciate some help.> > Tanks...> /Johan
It worked all OK with me in the end but I had to change a thing here and
there. If you want the binaries (at least for x-povray) then mail me.
All the Best,
Marc
--
Marc Schimmler
Johan,
I had similar problems, but know everything is working fine.
If you have the basic installation of IRIX on your machine, then you have
to edit the makefile. Change following lines
X11 = /usr/X11R6 to X11 = /usr
XLIBLIB = -L$(X11)/lib -lX11 to XLIBLIB = -L$(X11)/lib32 -lX11
# CFLAGS = -O2 -ansi -c -DCOMPILER_VER=\".`uname`.$(CC)\" .....
and
# Linux compiler flags
CFLAGS = -O6 -finline-functions -ffast-math -c -ansi -DCOMP.....
to
CFLAGS = -O2 -ansi -c -DCOMPILER_VER=\".`uname`.$(CC)\" .....
and
# Linux compiler flags
#CFLAGS = -O6 -finline-functions -ffast-math -c -ansi -DCO....
CC = gcc to CC = cc
That should work fine. Perhaps you have to make a new version of the
libz and libpng.
that's all
chris
> After changing the makefile according to pervious posting in this NG the> compilation worked for a very short time. It all ended up in unresolved> symbols in one of the systems lib filed (crt1.o) and in various places> in file bbox.o. I can't find any way around this so if anyone have an> idea how to fix this problem I would appreciate some help.>> Tanks...> /Johan