[gs-cvs] rev 8361 - trunk/gs/src - wrong log message.

Leonardo leonardo at artifex.com
Tue Nov 13 11:24:18 PST 2007


The patch has been committed with a wrong log message
due to a non-ascii character in the text.
Here is the right log :

[Log message beg]
Fix (make) : Could not build for x64 platform with Developer Studio 2005.

DETAILS :

1. The old code uses the 32 bits compiler for compiling build utilities
(genarch, echogs), and then tries to link them with x64 libraries.

2. Developer Studio 2005 doesn't support -ZI
(debug database for edit end continue) for the x64 platform.

EXPECTED DIFFERENCES :

None.
[Log message end]

I fixed the repository.

Igor.


----- Original Message ----- 
From: <leonardo at ghostscript.com>
To: <gs-cvs at ghostscript.com>
Sent: Tuesday, November 13, 2007 9:57 PM
Subject: [gs-cvs] rev 8361 - trunk/gs/src


> Author: leonardo
> Date: 2007-11-13 10:57:18 -0800 (Tue, 13 Nov 2007)
> New Revision: 8361
>
> Modified:
>   trunk/gs/src/msvccmd.mak
> Log:
> Fix (make) : Could not build for x64 platform with Developer Studio 2005.
>
> DETAILS :
>
> 1,
> (genarchg, echogs), and then tries to link them with x64 libraries.
>
> 2. Developer Studio 2005 doesn't support -ZI
> (debug database for edit end continue) for the x64 platform.
>
> EXPECTED DIFFERENCES :
>
> None.
>
>
> Modified: trunk/gs/src/msvccmd.mak
> ===================================================================
> --- trunk/gs/src/msvccmd.mak 2007-11-13 10:01:55 UTC (rev 8360)
> +++ trunk/gs/src/msvccmd.mak 2007-11-13 18:57:18 UTC (rev 8361)
> @@ -34,7 +34,7 @@
>
> # Define separate CCAUX command-line switch that must be at END of line.
>
> -CCAUX_TAIL= /link
> +CCAUX_TAIL= /link /LIBPATH:"$(COMPBASE)\lib"
>
> !endif
> #endif #$(MSVC_VERSION) == 4
> @@ -81,8 +81,12 @@
> !if ($(MSVC_VERSION) < 8)
> CDCC=/Gi /ZI
> !else
> +!ifdef WIN64
> +CDCC=/Zi
> +!else
> CDCC=/ZI
> !endif
> +!endif
>
> !if "$(CPU_FAMILY)"=="i386"
>
>
> _______________________________________________
> gs-cvs mailing list
> gs-cvs at ghostscript.com
> http://www.ghostscript.com/mailman/listinfo/gs-cvs 



More information about the gs-cvs mailing list