From 7c67d0fd79a3cffe857587fa3cf576b611023840 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Fri, 2 Sep 2022 23:41:41 +0900 Subject: Make sources by BASERUBY if available instead of miniruby --- win32/Makefile.sub | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'win32') diff --git a/win32/Makefile.sub b/win32/Makefile.sub index bb9e12d3ca..05a088fe5c 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -358,8 +358,10 @@ RUNRUBY = $(RUNRUBY) "$(tooldir)/runruby.rb" --extout="$(EXTOUT)" $(RUNRUBYOPT) !if "$(CROSS_COMPILING)" == "yes" XRUBY = $(MINIRUBY) BOOTSTRAPRUBY = $(BASERUBY) +BOOTSTRAPRUBY_COMMAND = $(BOOTSTRAPRUBY) -r./$(arch)-fake !else BOOTSTRAPRUBY = $(MINIRUBY) +BOOTSTRAPRUBY_COMMAND = $(BOOTSTRAPRUBY) XRUBY = $(RUNRUBY) !endif BTESTRUBY = $(MINIRUBY) -r./$(arch)-fake @@ -1088,6 +1090,10 @@ s,@ruby_pc@,$(ruby_pc),;t t s,@MJIT_SUPPORT@,$(MJIT_SUPPORT),;t t <