Carsten Grzemba <[email protected]> wrote: > after some fiddle around why a non autotools package will find 32bit-libs and > 64bit-libs not I saw that CSWcommon has a link > /opt/csw/lib/sparcv8 -> . > but it has no link > /opt/csw/lib/sparcv9/sparcv9 -> . > > Should we have this link or have we solve this with an explicit listed search > path for the base: '-R/opt/csw/lib/64/$ISALIST -R/opt/csw/lib/64'
The runpath option -R/opt/csw/lib/64/$ISALIST is wrong. The link /opt/csw/lib/sparcv8 -> . esists because the 32 bit libs are not located in a directory parallel to /opt/csw/lib/64/ (which would be /opt/csw/lib/32/) but in /opt/csw/lib/. Correct would be -R/opt/csw/lib/$ISALIST Jörg -- EMail:[email protected] (home) Jörg Schilling D-13353 Berlin [email protected] (uni) [email protected] (work) Blog: http://schily.blogspot.com/ URL: http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily
