mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Makefile.sub: CFLAGS_NO_ARCH
* win32/Makefile.sub: split CFLAGS into CFLAGS_NO_ARCH and ARCH_FLAG, as well as Makefile.in. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62201 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
25a82d7936
commit
1a5470e95b
1 changed files with 7 additions and 1 deletions
|
@ -228,8 +228,14 @@ WARNFLAGS = -W2
|
|||
!endif
|
||||
!endif
|
||||
WERRORFLAG = -WX
|
||||
!if !defined(CFLAGS_NO_ARCH)
|
||||
CFLAGS_NO_ARCH = $(RUNTIMEFLAG) $(DEBUGFLAGS) $(WARNFLAGS) $(OPTFLAGS) $(COMPILERFLAG)
|
||||
!endif
|
||||
!if !defined(ARCH_FLAG)
|
||||
ARCH_FLAG = $(PROCESSOR_FLAG)
|
||||
!endif
|
||||
!if !defined(CFLAGS)
|
||||
CFLAGS = $(RUNTIMEFLAG) $(DEBUGFLAGS) $(WARNFLAGS) $(OPTFLAGS) $(PROCESSOR_FLAG) $(COMPILERFLAG)
|
||||
CFLAGS = $(CFLAGS_NO_ARCH) $(ARCH_FLAG)
|
||||
!endif
|
||||
!if !defined(CXXFLAGS)
|
||||
CXXFLAGS = $(CFLAGS)
|
||||
|
|
Loading…
Reference in a new issue