in reply to Re^2: RFC: Setting up a minGW compiling envronment for Perl 5.10
in thread RFC: Setting up a minGW compiling envronment for Perl 5.10

undefined reference to ....

Looks like the glib libraries are not being found. If you're using Strawberry Perl, and libraries that were built with Visual Studio, then you probably need to change the '.lib' extensions to '.a'.

Cheers,
Rob
  • Comment on Re^3: RFC: Setting up a minGW compiling envronment for Perl 5.10

Replies are listed 'Best First'.
Re^4: RFC: Setting up a minGW compiling envronment for Perl 5.10
by Bloodrage (Monk) on Mar 02, 2008 at 23:12 UTC

    Fantastic. I did not know to do this. A quick little script:

    ...and that's done.

    Update The code now handles files ending in .dll.lib and renames them to .a as well...(and files that have been misnamed .dll.a, oh and properly escapes the .)