зеркало из https://github.com/github/ruby.git
mkmf.rb: no CFLAGS in CXXFLAGS
* lib/mkmf.rb (configuration): not include all CFLAGS in CXXFLAGS, to use different set than C for C++. [ruby-core:45273] [Bug #6504] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39994 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
cea3a73f19
Коммит
2e26edb633
|
@ -1,3 +1,8 @@
|
|||
Fri Mar 29 11:09:48 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/mkmf.rb (configuration): not include all CFLAGS in CXXFLAGS, to
|
||||
use different set than C for C++. [ruby-core:45273] [Bug #6504]
|
||||
|
||||
Fri Mar 29 10:24:10 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* include/ruby/io.h: undef POSIX compliants names on AIX, which are no
|
||||
|
|
|
@ -1863,11 +1863,12 @@ cflags = #{CONFIG['cflags']}
|
|||
optflags = #{CONFIG['optflags']}
|
||||
debugflags = #{CONFIG['debugflags']}
|
||||
warnflags = #{$warnflags}
|
||||
CFLAGS = #{$static ? '' : CONFIG['CCDLFLAGS']} #$CFLAGS $(ARCH_FLAG)
|
||||
CCDLFLAGS = #{$static ? '' : CONFIG['CCDLFLAGS']}
|
||||
CFLAGS = $(CCDLFLAGS) #$CFLAGS $(ARCH_FLAG)
|
||||
INCFLAGS = -I. #$INCFLAGS
|
||||
DEFS = #{CONFIG['DEFS']}
|
||||
CPPFLAGS = #{extconf_h}#{$CPPFLAGS}
|
||||
CXXFLAGS = $(CFLAGS) #{CONFIG['CXXFLAGS']}
|
||||
CXXFLAGS = $(CCDLFLAGS) #{CONFIG['CXXFLAGS']} $(ARCH_FLAG)
|
||||
ldflags = #{$LDFLAGS}
|
||||
dldflags = #{$DLDFLAGS} #{CONFIG['EXTDLDFLAGS']}
|
||||
ARCH_FLAG = #{$ARCH_FLAG}
|
||||
|
|
Загрузка…
Ссылка в новой задаче