From ce9b056c5d37ad7760049550b269139f72bdfcfb Mon Sep 17 00:00:00 2001 From: hsbt Date: Mon, 16 Nov 2015 07:16:16 +0000 Subject: * mkconfig.rb: Add some high-level documentation. [ci skip][fix GH-1081] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52589 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/mkconfig.rb | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'tool/mkconfig.rb') diff --git a/tool/mkconfig.rb b/tool/mkconfig.rb index b37241df61..49b841f775 100755 --- a/tool/mkconfig.rb +++ b/tool/mkconfig.rb @@ -1,5 +1,10 @@ #!./miniruby -s +# This script, which is run when ruby is built, generates rbconfig.rb by +# parsing information from config.status. rbconfig.rb contains build +# information for ruby (compiler flags, paths, etc.) and is used e.g. by +# mkmf to build compatible native extensions. + # avoid warnings with -d. $install_name ||= nil $so_name ||= nil @@ -167,8 +172,10 @@ prefix = vars.expand(vars["prefix"] ||= "") rubyarchdir = vars.expand(vars["rubyarchdir"] ||= "") relative_archdir = rubyarchdir.rindex(prefix, 0) ? rubyarchdir[prefix.size..-1] : rubyarchdir puts %[\ -# This file was created by #{mkconfig} when ruby was built. Any -# changes made to this file will be lost the next time ruby is built. +# This file was created by #{mkconfig} when ruby was built. It contains +# build information for ruby which is used e.g. by mkmf to build +# compatible native extensions. Any changes made to this file will be +# lost the next time ruby is built. module RbConfig RUBY_VERSION.start_with?("#{version[/^[0-9]+\.[0-9]+\./] || version}") or -- cgit v1.2.3