aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-31 05:43:51 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-31 05:43:51 +0000
commit7706418a4e6a3c5a57d00b19d93e9ca51eea53d0 (patch)
treede51c9d4ed719e401fa0683abf62759b2dd90a3b
parent76d6f560c9818d4afc13f36bd7b374f9c744cfe6 (diff)
downloadruby-7706418a4e6a3c5a57d00b19d93e9ca51eea53d0.tar.gz
* win32/Makefile.sub (OPTFLAGS): default global optimization to
disabled for all VC++ versions. fixed: [ruby-dev:26897] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9060 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--win32/Makefile.sub5
2 files changed, 6 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index dcf26bb33e..49709f54cc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Aug 31 14:41:30 2005 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * win32/Makefile.sub (OPTFLAGS): default global optimization to
+ disabled for all VC++ versions. fixed: [ruby-dev:26897]
+
Wed Aug 31 10:36:09 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* process.c (proc_detach, proc_setmaxgroups): missing argument type
diff --git a/win32/Makefile.sub b/win32/Makefile.sub
index 0647b5fc3f..c5c7b49ab5 100644
--- a/win32/Makefile.sub
+++ b/win32/Makefile.sub
@@ -68,10 +68,7 @@ ARCH = $(PROCESSOR_ARCHITECTURE)
DEBUGFLAGS = -Zi
!endif
!if !defined(OPTFLAGS)
-OPTFLAGS = -O2b2x
-!if $(MSC_VER) < 1300
-OPTFLAGS = $(OPTFLAGS)g-
-!endif
+OPTFLAGS = -O2b2xg-
!endif
!if !defined(OS)
OS = mswin32