Which gcc version

Is there a way to know which version of gcc was used with a certain ruby
binary?
Thanks!
-=r

···

--
Posted via http://www.ruby-forum.com/.

no.

···

On Mar 6, 2009, at 16:43, Roger Pack wrote:

Is there a way to know which version of gcc was used with a certain ruby
binary?

Eric Hodel wrote:

···

On Mar 6, 2009, at 16:43, Roger Pack wrote:

Is there a way to know which version of gcc was used with a certain ruby binary?

no.

I'm curious: Why would someone want to know that?

Jeff Schwab wrote:

Eric Hodel wrote:

Is there a way to know which version of gcc was used with a certain
ruby binary?

no.

I'm curious: Why would someone want to know that?

I was looking for a way to include it in the output of the ruby
benchmark suite so that the logs were more descriptive of which version
of Ruby was being run :slight_smile:

Currently I can glean this information from rbconfig:
Ruby VM: ruby [ruby 1.8.6 (2008-07-17 patchlevel 279) [i386-mingw32];-g
-O2]

The -O2 is quite useful [don't want to compare versions that are
compiled with different -O settings and call it fair].. The version of
GCC would also be useful for the same reason.

-=r
[1] GitHub - acangiano/ruby-benchmark-suite: A set of Ruby benchmarks for testing Ruby implementations.

···

On Mar 6, 2009, at 16:43, Roger Pack wrote:

--
Posted via http://www.ruby-forum.com/\.

You only want the options passed to GCC? They're in rbconfig.rb

···

On Mar 9, 2009, at 08:46, Roger Pack wrote:

Jeff Schwab wrote:

Eric Hodel wrote:

On Mar 6, 2009, at 16:43, Roger Pack wrote:

Is there a way to know which version of gcc was used with a certain
ruby binary?

no.

I'm curious: Why would someone want to know that?

I was looking for a way to include it in the output of the ruby
benchmark suite so that the logs were more descriptive of which version
of Ruby was being run :slight_smile:

Currently I can glean this information from rbconfig:
Ruby VM: ruby [ruby 1.8.6 (2008-07-17 patchlevel 279) [i386-mingw32];-g
-O2]

why not build the ruby yourself as part of the benchmark suite? then "gcc --version" is valid.

···

On Mar 9, 2009, at 08:46 , Roger Pack wrote:

I was looking for a way to include it in the output of the ruby
benchmark suite so that the logs were more descriptive of which version
of Ruby was being run

Ryan Davis wrote:

···

On Mar 9, 2009, at 08:46 , Roger Pack wrote:

I was looking for a way to include it in the output of the ruby
benchmark suite so that the logs were more descriptive of which
version
of Ruby was being run

why not build the ruby yourself as part of the benchmark suite? then
"gcc --version" is valid.

Good idea.

re: which options I want. I have the info in rbconfig [parameters] but
I was wondering if ruby knew which version of the compiler was used for
itself somehow :slight_smile:

-=r
--
Posted via http://www.ruby-forum.com/\.