From: Perl 5 Porters Date: Sun, 8 Sep 1996 23:40:23 +0000 (+0000) Subject: perl 5.003_05: hints/sunos_4_1.sh X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=77c65e92af20c99e482a4ce915adf21d0d3e4ffa;p=p5sagit%2Fp5-mst-13.2.git perl 5.003_05: hints/sunos_4_1.sh Describe solution for the __lib_version problem with acc on SunOS. --- diff --git a/hints/sunos_4_1.sh b/hints/sunos_4_1.sh index 21c5d3b..16ea47a 100644 --- a/hints/sunos_4_1.sh +++ b/hints/sunos_4_1.sh @@ -46,4 +46,12 @@ then # bsd else # sys5 groupstype='gid_t' fi - + +# If you get the message "unresolved symbol '__lib_version' " while +# linking, your system probably has the optional 'acc' compiler (and +# libraries) installed, but you are using the bundled 'cc' compiler with +# the unbundled libraries. The solution is either to use 'acc' and the +# unbundled libraries (specifically /lib/libm.a), or 'cc' and the bundled +# library. +# +# Thanks to William Setzer for this info.