ruby-changes:44483
From: naruse <ko1@a...>
Date: Fri, 4 Nov 2016 15:37:15 +0900 (JST)
Subject: [ruby-changes:44483] naruse:r56556 (trunk): * configure.in: Add compiler version message into rbconfig
naruse 2016-11-04 15:37:09 +0900 (Fri, 04 Nov 2016) New Revision: 56556 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=56556 Log: * configure.in: Add compiler version message into rbconfig as RbConfig::CONFIG['CC_VERSION_MESSAGE']. [Feature #12896] Modified files: trunk/ChangeLog trunk/configure.in Index: configure.in =================================================================== --- configure.in (revision 56555) +++ configure.in (revision 56556) @@ -536,8 +536,10 @@ for option in --version -v -V -qversion; https://github.com/ruby/ruby/blob/trunk/configure.in#L536 AS_CASE($cc_version_status, [0], [:], [continue]) AS_CASE($cc_version_message, [*Warning*], [continue]) cc_version='$(CC) '$option + break done AC_SUBST(CC_VERSION, $cc_version) +AC_SUBST(CC_VERSION_MESSAGE, $cc_version_message) RUBY_UNIVERSAL_ARCH if test "$target_cpu" != "$host_cpu" -a "$GCC" = yes -a "$cross_compiling" = no -a "$universal_binary" = no; then Index: ChangeLog =================================================================== --- ChangeLog (revision 56555) +++ ChangeLog (revision 56556) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Fri Nov 4 15:31:00 2016 NARUSE, Yui <naruse@r...> + + * configure.in: Add compiler version message into rbconfig + as RbConfig::CONFIG['CC_VERSION_MESSAGE']. [Feature #12896] + Fri Nov 4 13:03:00 2016 Kenta Murata <mrkn@m...> * numeric.c (rb_int_digits): Fix exception message -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/