http://qs1969.pair.com?node_id=11144705


in reply to Re: Better way to force Inline to use compiled binary instead of C source?
in thread Better way to force Inline to use compiled binary instead of C source?

running perl Makefile.PL, gmake test results in error

This might (untested) be because EU::MM expects the make utility to be "dmake" not "gmake".
Strawberry made the switch to "gmake" in perl-5.26.0, and have stayed with it since then.

You might get better mileage with something like:
use ExtUtils::MakeMaker; WriteMakefile(NAME => 'Test', MAKE => 'gmake' +);
or just use "dmake" on 5.24.

Cheers,
Rob
  • Comment on Re^2: Better way to force Inline to use compiled binary instead of C source?
  • Download Code

Replies are listed 'Best First'.
Re^3: Better way to force Inline to use compiled binary instead of C source?
by vr (Curate) on Jun 13, 2022 at 05:24 UTC

    Thanks, you are right, either of the 2 solutions fixes the problem.