Wed Jun 29 12:38:18 2011: Request 57273 was acted upon.
Transaction: Correspondence added by vvm
Queue: PAR-Packer
Subject: Error building on Strawberry 5.12.0.1 64-bit (win32.coff file
format not recognized)
Broken in: (no value)
Severity: Important
Owner: Nobody
Requestors: [email protected]
Status: open
Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=57273 >
On Wed Jun 29 08:54:45 2011, RSCHUPP wrote:
> On 2011-06-28 10:53:31, vvm wrote:
> > I'm try "Method N2": simply "Turn off use win32.coff"
> Unfortunately "Method N2" breaks PAR::Packer on 32-bit Windows
=>
Idea: need implement this ( or like this) algoritm
if x86
$res = ($^O =~ /^(?:MSWin|cygwin)/) ? 'win32.coff' : '';
elsif x64
$res = ($^O =~ /^(?:MSWin|cygwin)/) ? 'win64.coff' : '';
end if