On 4 Apr, Robert Orr wrote: > I am getting this error below and I would prefer to go > around the debug and just find the binaries for > libxforms. > > Any suggestions appreciated. > > Thx. > > ld: fatal: too many symbols require `small' PIC > references: > have 2431, maximum 2048 -- recompile some > modules -K PIC.
ld provides the hint; here's a bit of Perl I run on the distribution to implement it: perl -i.bak -pe 's/PICFLAGS\s*=.*/PICFLAGS = -KPIC/' `find . -name Makefile`
