mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* bcc32/Makefile.sub: set PROCESSOR_LEVEL to 6 if it's too big value.
* win32/Makefile.sub: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2545 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0b67be50a5
commit
ec16af8173
3 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
Tue Jun 11 13:15:41 2002 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* bcc32/Makefile.sub: set PROCESSOR_LEVEL to 6 if it's too big value.
|
||||
|
||||
* win32/Makefile.sub: ditto.
|
||||
|
||||
Tue Jun 11 12:37:46 2002 KONISHI Hiromasa <konishih@fd6.so-net.ne.jp>
|
||||
|
||||
* bcc32/configure.bat fix.
|
||||
|
|
|
@ -50,6 +50,9 @@ AUTOCONF = autoconf
|
|||
!ifndef PROCESSOR_LEVEL
|
||||
PROCESSOR_LEVEL = 5
|
||||
!endif
|
||||
!if 6 < $(PROCESSOR_LEVEL)
|
||||
PROCESSOR_LEVEL = 6
|
||||
!endif
|
||||
PROCESSOR_FLAG = -$(PROCESSOR_LEVEL)
|
||||
CPU = i$(PROCESSOR_LEVEL)86
|
||||
ARCH = i$(PROCESSOR_LEVEL)86
|
||||
|
|
|
@ -43,6 +43,9 @@ AUTOCONF = autoconf
|
|||
!if !defined(PROCESSOR_LEVEL)
|
||||
PROCESSOR_LEVEL = 5
|
||||
!endif
|
||||
!if 6 < $(PROCESSOR_LEVEL)
|
||||
PROCESSOR_LEVEL = 6
|
||||
!endif
|
||||
PROCESSOR_FLAG = -G$(PROCESSOR_LEVEL)
|
||||
CPU = i$(PROCESSOR_LEVEL)86
|
||||
ARCH = i386
|
||||
|
|
Loading…
Add table
Reference in a new issue