[gs-cvs] rev 8361 - trunk/gs/src
leonardo at ghostscript.com
leonardo at ghostscript.com
Tue Nov 13 10:57:18 PST 2007
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"
More information about the gs-cvs
mailing list