From: Gurusamy Sarathy Date: Wed, 18 Feb 1998 18:11:08 +0000 (+0000) Subject: [win32] non-debug VC builds are -O1 now (they say it works, and is X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=31948633cfdfb40606891aba5aa991c21b11820e;p=p5sagit%2Fp5-mst-13.2.git [win32] non-debug VC builds are -O1 now (they say it works, and is faster) p4raw-id: //depot/win32/perl@533 --- diff --git a/win32/Makefile b/win32/Makefile index be70f67..3e1ad86 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -109,9 +109,9 @@ OPTIMIZE = -Od $(RUNTIME)d -Z7 -D_DEBUG -DDEBUGGING LINK_DBG = -debug -pdb:none !ELSE ! IF "$(CCTYPE)" == "MSVC20" -OPTIMIZE = -Od $(RUNTIME) -DNDEBUG +OPTIMIZE = -O1 $(RUNTIME) -DNDEBUG ! ELSE -OPTIMIZE = -Od $(RUNTIME) -DNDEBUG +OPTIMIZE = -O1 $(RUNTIME) -DNDEBUG ! ENDIF LINK_DBG = -release !ENDIF diff --git a/win32/makefile.mk b/win32/makefile.mk index a6efca0..aed9f59 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -195,9 +195,9 @@ OPTIMIZE = -Od $(RUNTIME)d -Z7 -D_DEBUG -DDEBUGGING LINK_DBG = -debug -pdb:none .ELSE .IF "$(CCTYPE)" == "MSVC20" -OPTIMIZE = -Od $(RUNTIME) -DNDEBUG +OPTIMIZE = -O1 $(RUNTIME) -DNDEBUG .ELSE -OPTIMIZE = -Od $(RUNTIME) -DNDEBUG +OPTIMIZE = -O1 $(RUNTIME) -DNDEBUG .ENDIF LINK_DBG = -release .ENDIF