From: "Jan Dubois" <jand@activestate.com>
Message-ID: <
001b01c77bca$dcae7720$960b6560$@com>
p4raw-id: //depot/perl@30943
$spec{output} ,
) ];
- if ($cf->{cc} eq 'cl' and $cf->{ccversion} =~ /^(\d+)/ and $1 >= 14) {
- # Embed the manifest file for VC 2005 (aka VC 8) or higher
+ # Embed the manifest file for VC 2005 (aka VC 8) or higher, but not for the 64-bit Platform SDK compiler
+ if ($cf->{ivsize} == 4 && $cf->{cc} eq 'cl' and $cf->{ccversion} =~ /^(\d+)/ and $1 >= 14) {
push @cmds, [
'mt', '-nologo', $spec{manifest}, '-outputresource:' . "$output;2"
];