On Tue, Feb 26, 2019 at 12:30 PM RAPPAZ Francois via par <[email protected]>
wrote:
> I’m hitting a wall with a recent strawberry perl setup, where all the
> dlls during modules installs are named foo.xs.dll. Would that be a reason
> why it fails, DynaLoader searching for foo.dll
>
>
>
No. Actually, DynLoader is looking for Bar.$Config{dlext} and
$Config{dlext} = "xs.dll" for non-ancient Strawberry Perls.
Note that you can see what DynaLoader is looking for by setting the
environment variable PERL_DL_DEBUG=1 (at least when it's in last resort
mode using dl_findfile()).
Cheers, Roderich