in reply to Solaris problem or compile options

Looks like Module::Install did not find your static libperl.a
Just add it manually to your linker line and you'll be fine. Something like:

gcc -mcpu=v9 -m64 -G -L/usr/lib/sparcv9 -fstack-protector -G X509.o -o blib/arch/auto/Crypt/OpenSSL/X509/X509.so -L/tools/perl/5_14_2/lib/5.14.2/sun4-solaris-64/CORE -lperl

Replies are listed 'Best First'.
Re^2: Solaris problem or compile options
by Eliya (Vicar) on Feb 03, 2012 at 22:12 UTC

    XS shared object files are never explicitly linked against libperl, simply because they are designed to be dynamically loaded by perl itself (via dlopen). And perl being perl it does have all the Perl symbols already (linking in libperl.a would effectively duplicate the code — so don't do that).