in reply to Re^3: perl 5.14.0-RC1 is available for testing!
in thread perl 5.14.0-RC1 is available for testing!

You know, I wrote a little program to use objdump to find out what dlls are linked to perl.exe/perl514.dll , to copy them to t directory

I tested it, it worked, and then I dawned me how stupid I find this :)

The whole thing should be replaced with

.IF "$(CCTYPE)" == "GCC" $(XCOPY) $(CCHOME)\bin\* ..\t\$(NULL) .ENDIF
Since the dll's in ..\t\ aren't used for anything else and they're deleted during dmake clean

KISS