ruby-changes:53646
From: nobu <ko1@a...>
Date: Tue, 20 Nov 2018 20:45:19 +0900 (JST)
Subject: [ruby-changes:53646] nobu:r65885 (trunk): Change ASMEXT to s
nobu 2018-11-20 20:45:13 +0900 (Tue, 20 Nov 2018) New Revision: 65885 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=65885 Log: Change ASMEXT to s By the default of GNU make, .S is used to be compiled with CC, but we have already used .s as ia64.s, and now coroutine/*/Context.s. Modified files: trunk/Makefile.in trunk/common.mk Index: common.mk =================================================================== --- common.mk (revision 65884) +++ common.mk (revision 65885) @@ -895,7 +895,7 @@ strstr.$(OBJEXT): {$(VPATH)}strstr.c https://github.com/ruby/ruby/blob/trunk/common.mk#L895 nt.$(OBJEXT): {$(VPATH)}nt.c ia64.$(OBJEXT): {$(VPATH)}ia64.s $(CC) $(CFLAGS) -c $< -coroutine/amd64/Context.$(OBJEXT): {$(VPATH)}coroutine/amd64/Context.s +coroutine/amd64/Context.$(OBJEXT): {$(VPATH)}coroutine/amd64/Context.$(ASMEXT) coroutine/amd64/Context.$(OBJEXT): coroutine/amd64/.time coroutine/amd64/.time: $(Q) $(MAKEDIRS) $(@D) Index: Makefile.in =================================================================== --- Makefile.in (revision 65884) +++ Makefile.in (revision 65885) @@ -210,7 +210,7 @@ DTRACE_REBUILD= @DTRACE_REBUILD@ https://github.com/ruby/ruby/blob/trunk/Makefile.in#L210 DTRACE_GLOMMED_OBJ = $(DTRACE_REBUILD:yes=ruby-glommed.$(OBJEXT)) OBJEXT = @OBJEXT@ -ASMEXT = S +ASMEXT = s SOEXT = @SOEXT@ DLEXT = @DLEXT@ MANTYPE = @MANTYPE@ -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/