Subject: Re: problem building qt
To: Brad Salai <bsalai@law.roc.servtech.com>
From: Paul Kranenburg <pk@cs.few.eur.nl>
List: current-users
Date: 01/11/1998 16:08:11
> tsort: kernel/qapp.o
> tsort: kernel/qapp_x11.o
> ld: /usr/lib/c++rt0.o: illegal reloc type mix

The problem here is that c++rt.o is compiled with `-fpic', while the
other objects file were compiled with `-fPIC'. They don't mix on
some architectures (e.g. sparc).

You can work-around this by building a c++rt.0 with `-fPIC' and use that
to build the library.

I'm not sure what a generic solution should look like.

-pk