[gs-cvs] rev 8394 - trunk/gs/src

ray at ghostscript.com ray at ghostscript.com
Tue Nov 20 21:57:24 PST 2007


Author: ray
Date: 2007-11-20 21:57:23 -0800 (Tue, 20 Nov 2007)
New Revision: 8394

Modified:
   trunk/gs/src/msvccmd.mak
Log:
Fix compiler flag conflict for non-debug build (seen when switching
PCL6 build to default to non-debug default). Changes /ZI to /Zi.


Modified: trunk/gs/src/msvccmd.mak
===================================================================
--- trunk/gs/src/msvccmd.mak	2007-11-20 19:18:54 UTC (rev 8393)
+++ trunk/gs/src/msvccmd.mak	2007-11-21 05:57:23 UTC (rev 8394)
@@ -34,7 +34,11 @@
 
 # Define separate CCAUX command-line switch that must be at END of line.
 
+!if $(MSVC_VERSION) < 7
+CCAUX_TAIL= /link
+!else
 CCAUX_TAIL= /link /LIBPATH:"$(COMPBASE)\lib"
+!endif
 
 !endif
 #endif #$(MSVC_VERSION) == 4
@@ -79,12 +83,12 @@
 !endif
 
 !if ($(MSVC_VERSION) < 8)
-CDCC=/Gi /ZI
+CDCC=/Gi /Zi
 !else
 !ifdef WIN64
 CDCC=/Zi
 !else
-CDCC=/ZI
+CDCC=/Zi
 !endif
 !endif
 



More information about the gs-cvs mailing list