From 199e910602dee48246fcbd9adb3986a3e01c4cb4 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 29 Feb 2016 07:31:56 +0000 Subject: [PATCH] mkconfig.rb: cross_compiling option * common.mk, tool/mkconfig.rb: set cross_compiling option from Makefile, but not from rbconfig.rb, which is just going to be created by this command. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53969 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ common.mk | 1 + tool/mkconfig.rb | 3 ++- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d52826bfc2..4fc9181b91 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Mon Feb 29 16:31:01 2016 Nobuyoshi Nakada + + * common.mk, tool/mkconfig.rb: set cross_compiling option from + Makefile, but not from rbconfig.rb, which is just going to be + created by this command. + Sun Feb 28 23:13:49 2016 C.J. Collier * configure.in: Add summary to end of configure output. diff --git a/common.mk b/common.mk index f3547d4a5c..36d8ca18d4 100644 --- a/common.mk +++ b/common.mk @@ -625,6 +625,7 @@ extconf: $(PREP) $(RBCONFIG): $(srcdir)/tool/mkconfig.rb config.status $(srcdir)/version.h $(Q)$(BOOTSTRAPRUBY) $(srcdir)/tool/mkconfig.rb -timestamp=$@ \ + -cross_compiling=$(CROSS_COMPILING) \ -arch=$(arch) -version=$(RUBY_PROGRAM_VERSION) \ -install_name=$(RUBY_INSTALL_NAME) \ -so_name=$(RUBY_SO_NAME) rbconfig.rb diff --git a/tool/mkconfig.rb b/tool/mkconfig.rb index 63dbecb775..63d0520dba 100755 --- a/tool/mkconfig.rb +++ b/tool/mkconfig.rb @@ -8,11 +8,12 @@ # avoid warnings with -d. $install_name ||= nil $so_name ||= nil +$cross_compiling ||= nil arch = $arch or raise "missing -arch" version = $version or raise "missing -version" srcdir = File.expand_path('../..', __FILE__) -$:.replace [srcdir+"/lib"] unless defined?(CROSS_COMPILING) +$:.replace [srcdir+"/lib"] unless $cross_compiling == "yes" $:.unshift(".") require "fileutils"