summaryrefslogtreecommitdiff
path: root/hints/sunos_4_1.sh
diff options
context:
space:
mode:
authorPerl 5 Porters <perl5-porters@africa.nicoh.com>1996-09-08 23:40:23 +0000
committerAndy Dougherty <doughera@lafcol.lafayette.edu>1996-09-08 23:40:23 +0000
commit77c65e92af20c99e482a4ce915adf21d0d3e4ffa (patch)
tree19513163b9d5cfc4b1128117aeb729587c46219c /hints/sunos_4_1.sh
parent91d1e749126a486257fe54e05f275672ced818df (diff)
downloadperl-77c65e92af20c99e482a4ce915adf21d0d3e4ffa.tar.gz
perl 5.003_05: hints/sunos_4_1.sh
Describe solution for the __lib_version problem with acc on SunOS.
Diffstat (limited to 'hints/sunos_4_1.sh')
-rw-r--r--hints/sunos_4_1.sh10
1 files changed, 9 insertions, 1 deletions
diff --git a/hints/sunos_4_1.sh b/hints/sunos_4_1.sh
index 21c5d3b364..16ea47aa0c 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 <William_Setzer@ncsu.edu> for this info.