BenRussell
Programmer
I cannot get my perl scripts to work if they use any modules. For example, take the following script (test.pl):
When I compile it with the command:
perlcc test.pl
It tells me:
I am running Red Hat Linux 7.3 and Perl 5.6.1
Any ideas?
- Ben
Code:
use Digest::MD5;
print Digest::MD5::md5_hex("Some text");
print "\n";
When I compile it with the command:
perlcc test.pl
It tells me:
Code:
/tmp/ccl0Jfet.o: In function `dl_init':
/tmp/ccl0Jfet.o(.text+0x33934): undefined reference to `boot_Digest__MD5'
collect2: ld returned 1 exit status
I am running Red Hat Linux 7.3 and Perl 5.6.1
Any ideas?
- Ben