Subject: | Makefile.PL compile problem |
When test_cc() runs, it executes the command
$Config{make} compile$Config{obj_ext}
which translates on my system to
make compile.o
which causes it to run 'cc -c compile.c'
Unfortunately, there is no cc on this system. Perl was built with gcc.
But this command hasn't picked up the way that it should be called and
built. You could use
$Config{cc} $Config{ccflags} -c ...
but then you'd have to hardcode the '-c' because I cannot figure out how
to get MakeMaker to cough it up. You may even need to build a makefile
first just to handle this test. But as it stands, I cannot put it in a
bundle or otherwise execute a CPAN install command on it and get the XS
version on my system, which is a pity.