RE: [PATCH] Restore Win64 compilation with the Windows Platform SDK
Jan Dubois [Tue, 10 Apr 2007 16:49:21 +0000 (09:49 -0700)]
From: "Jan Dubois" <jand@activestate.com>
Message-ID: <001b01c77bca$dcae7720$960b6560$@com>

p4raw-id: //depot/perl@30943

lib/ExtUtils/CBuilder/Platform/Windows.pm

index 1523221..036d056 100644 (file)
@@ -374,8 +374,8 @@ sub format_linker_cmd {
     $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"
     ];