1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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/branches/ruby_1_8@9060 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2005-08-31 05:43:51 +00:00
parent 97943549d5
commit 4326e98025
2 changed files with 6 additions and 4 deletions

View file

@ -1,3 +1,8 @@
Wed Aug 31 14:43:15 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 11:35:43 2005 NAKAMURA Usaku <usa@ruby-lang.org>
* test/gdbm/test_gdbm.rb (teardown): should remove GDBM temporary

View file

@ -67,10 +67,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