aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-02 03:59:39 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-02 03:59:39 +0000
commit6d4a6a309be089831fc8ee9d3dbdfc84f24df00d (patch)
tree84b3c353b2b97208fe56a61377f9570355d3235d
parenta2ada174a51525fbadfee8e0183035a5b1f3b036 (diff)
downloadruby-6d4a6a309be089831fc8ee9d3dbdfc84f24df00d.tar.gz
* win32/Makefile.sub (COMPILERFLAG): new compiler flag to compile
enc/trans/japanese*.c. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19059 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--win32/Makefile.sub5
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 10dad0fb80..7cc76b53df 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Sep 2 12:58:58 2008 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * win32/Makefile.sub (COMPILERFLAG): new compiler flag to compile
+ enc/trans/japanese*.c.
+
Tue Sep 2 12:37:10 2008 Tanaka Akira <akr@fsij.org>
* enc/trans/japanese_euc.trans: splitted from japanese.trans to avoid
diff --git a/win32/Makefile.sub b/win32/Makefile.sub
index fbd6c6f9c4..f08d4f6f82 100644
--- a/win32/Makefile.sub
+++ b/win32/Makefile.sub
@@ -152,8 +152,11 @@ COUTFLAG = -Fo
!if !defined(RUNTIMEFLAG)
RUNTIMEFLAG = -MD
!endif
+!if !defined(COMPILERFLAG)
+COMPILERFLAG = -Zm200
+!endif
!if !defined(CFLAGS)
-CFLAGS = $(RUNTIMEFLAG) $(DEBUGFLAGS) $(WARNFLAGS) $(OPTFLAGS) $(PROCESSOR_FLAG)
+CFLAGS = $(RUNTIMEFLAG) $(DEBUGFLAGS) $(WARNFLAGS) $(OPTFLAGS) $(PROCESSOR_FLAG) $(COMPILERFLAG)
!endif
!if !defined(CXXFLAGS)
CXXFLAGS = $(CFLAGS)