I figured out that the command gcc is not working and hence changed the "Makefile" in the line from "CC = gcc" to "CC = cc". Now, I encountered the error which says that the options are available only with the C/ANSI C product.
So why don't you change the options?
perl -V:cc tells you the name of the compiler your perl was compiled with.
perl -V:ccflags tells you what options will be passed. See `perldoc ExtUtils::MakeMaker' for more.
What you should really do is either recompile perl with cc, or install gcc.
| MJD says "you can't just make shit up and expect the computer to know what you mean, retardo!" | | I run a Win32 PPM repository for perl 5.6.x and 5.8.x -- I take requests (README). | | ** The third rule of perl club is a statement of fact: pod is sexy. |
| [reply] |
Many modules rely on the presence of other software, like the GNU Compiler Collection (aka gcc). Probably, the compiler you have isn't - er - fully compatible with the code in the state it is at the moment. It could be just a matter of compiler directives and switches (which would be luck for you), or a more serious problem that could cause you to install the new compiler.
To be on the safe side, and considering how many modules you have to install, you should jump onto GCC and get rid of many headaches. You don't say which U*ix you're working into, but I bet that you can find precompiled packages for many platforms if you don't want (or cannot) recompile it from the scratch.
Flavio
Don't fool yourself.
| [reply] |