diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-02 03:59:39 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-02 03:59:39 +0000 |
| commit | b0348c487bc4be597ecc684a42931deed2fe186b (patch) | |
| tree | 84b3c353b2b97208fe56a61377f9570355d3235d | |
| parent | 0d0059d0ce994a6bcbae6dd38c7d7aa8981c56ce (diff) | |
| download | ruby-b0348c487bc4be597ecc684a42931deed2fe186b.tar.gz ruby-b0348c487bc4be597ecc684a42931deed2fe186b.tar.xz ruby-b0348c487bc4be597ecc684a42931deed2fe186b.zip | |
* win32/Makefile.sub (COMPILERFLAG): new compiler flag to compile
enc/trans/japanese*.c.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19059 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | win32/Makefile.sub | 5 |
2 files changed, 9 insertions, 1 deletions
@@ -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 fbd6c6f9c..f08d4f6f8 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) |
