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

Hi, I am trying to install perl module ClearCase::CtCmd. But I am getting error.

C:\CtCmd-1.08>perl Makefile.PL
Set up gcc environment - 3.4.5 (mingw-vista special r3) Looking for Version 12 Not Found Cannot find C:/Perl/site/bin/gcc.exe -> Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12 at Makefile.PL line 162.

I also tried installing it through cpan install command but no success. Can you please help me how do I install this module on my machine. As my script can't go ahead without this module. I have installed ClearCase::ClearPrompt module on same machine and I could do it witout error but ClearCase::CtCmd is giving me error.

  • Comment on Unable to install ClearCase::CtCmd module

Replies are listed 'Best First'.
Re: Unable to install ClearCase::CtCmd module
by mzedeler (Pilgrim) on Apr 22, 2010 at 07:17 UTC

    You need to install some of the c development tools, such as gcc and make. As the script writes, it is looking for gcc, but cant find it, so try installing gcc. You can get it from MinGW.

      Hi, Thanks for your reply. I already have gcc.exe and other files in my /perl/site/bin directory but still i am getting this error. Do you have any other solution for this.
Re: Unable to install ClearCase::CtCmd module
by Anonymous Monk on Apr 22, 2010 at 08:53 UTC