ruby-changes:37395
From: nobu <ko1@a...>
Date: Tue, 3 Feb 2015 12:26:46 +0900 (JST)
Subject: [ruby-changes:37395] nobu:r49476 (trunk): mkmf.rb: set cxxflags
nobu 2015-02-03 12:26:38 +0900 (Tue, 03 Feb 2015) New Revision: 49476 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=49476 Log: mkmf.rb: set cxxflags * lib/mkmf.rb (configuration): set the default cxxflags, which is referred from the default CXXFLAGS, for extension libraries. [Fix GH-823] Modified files: trunk/ChangeLog trunk/lib/mkmf.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 49475) +++ ChangeLog (revision 49476) @@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Tue Feb 3 12:26:35 2015 Katsuhiko Nishimra <ktns.87@g...> + + * lib/mkmf.rb (configuration): set the default cxxflags, which is + referred from the default CXXFLAGS, for extension libraries. + [Fix GH-823] + Tue Feb 3 05:52:00 2015 Aman Gupta <ruby@t...> * gc.c (rb_objspace_free): cause rb_bug if lazy sweep is in progress Index: lib/mkmf.rb =================================================================== --- lib/mkmf.rb (revision 49475) +++ lib/mkmf.rb (revision 49476) @@ -1928,6 +1928,7 @@ COUTFLAG = #{COUTFLAG}$(empty) https://github.com/ruby/ruby/blob/trunk/lib/mkmf.rb#L1928 RUBY_EXTCONF_H = #{$extconf_h} cflags = #{CONFIG['cflags']} +cxxflags = #{CONFIG['cxxflags']} optflags = #{CONFIG['optflags']} debugflags = #{CONFIG['debugflags']} warnflags = #{$warnflags} -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/