in reply to Problem in installing the Digest::MD5.pm module

/bin/sh: cc_r: not found

You need a C compiler — more specifically, the IBM® XL C/C++ compiler (part of which is the cc_r program), because that's what your Perl binary has been built with.

That said, an easier/cheaper way out would probably be to use the pure-Perl variant Digest::MD5::Perl instead.  It is significantly slower, though, but depending on how much data you actually need to compute digests for, this might be a non-issue...

Alternatively, you could build your own perl from scratch with the free gcc compiler, in which case you could then build extension modules with the same compiler.

Replies are listed 'Best First'.
Re^2: Problem in installing the Digest::MD5.pm module
by TGhosh (Initiate) on Mar 02, 2012 at 20:39 UTC

    Thanks! I will try to install the perl from the scratch with gcc.