480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
|
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
|
-
-
+
-
|
!if $(SYMBOLS)
cdebug = $(cdebug) -Zi
!endif
!else if "$(MACHINE)" == "IA64" || "$(MACHINE)" == "AMD64"
### Warnings are too many, can't support warnings into errors.
cdebug = -Zi -Od $(DEBUGFLAGS)
!else
# no -WX option here (error C2220: warning treated as error):
#cdebug = -Zi -WX $(DEBUGFLAGS)
cdebug = -Zi -WX $(DEBUGFLAGS)
cdebug = -Zi $(DEBUGFLAGS)
!endif
### Declarations common to all compiler options
cwarn = $(WARNINGS) -D _CRT_SECURE_NO_DEPRECATE -D _CRT_NONSTDC_NO_DEPRECATE
cflags = -nologo -c $(COMPILERFLAGS) $(cwarn) -Fp$(TMP_DIR)^\
!if $(MSVCRT)
|