dhammaBum has asked for the wisdom of the Perl Monks concerning the following question:

I'm trying to compile perl on AIX 4.2.1 using IBM's compiler and get the error below. I believe these functions are in fact in libm.a which is of course in the usual library directories, hence I don't think it is an AIX/IBM cc problem per se.

I know this isn't strictly a perl problem, but if anyone has been in this particular endless loop, I would really appreciate a way out.....

cc -o miniperl `echo gv.o toke.o perly.o op.o regcomp.o dump.o util +.o mg.o hv.o av.o run.o pp_hot.o sv.o pp.o scope.o pp_ctl.o pp_sys.o +doop.o doio.o regexec.o utf8.o taint.o deb.o universal.o xsutils.o gl +obals.o perlio.o perlapi.o | sed 's/ op.o / /'` miniperlmain.o opmi +ni.o perl.o ld: 0711-317 ERROR: Undefined symbol: .floor ld: 0711-317 ERROR: Undefined symbol: .sqrt ld: 0711-317 ERROR: Undefined symbol: .log ld: 0711-317 ERROR: Undefined symbol: .exp ld: 0711-317 ERROR: Undefined symbol: .cos ld: 0711-317 ERROR: Undefined symbol: .sin ld: 0711-317 ERROR: Undefined symbol: .atan2 ld: 0711-317 ERROR: Undefined symbol: .fmod ld: 0711-317 ERROR: Undefined symbol: .pow ld: 0711-317 ERROR: Undefined symbol: .__set_errno128
cheers and thanks.