From e64f71f812324d098bed12ed68c2bc1d6e780c90 Mon Sep 17 00:00:00 2001 From: samuel Date: Sat, 24 Nov 2018 11:35:29 +0000 Subject: [PATCH] Change Makefile rule for assembly to use .S rather than .s It is more conventional to use compiler to pre-process and assemble the `.S` file rather than forcing Makefile to use `.s`. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65952 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- Makefile.in | 2 +- coroutine/amd64/{Context.s => Context.S} | 0 coroutine/arm32/{Context.s => Context.S} | 0 coroutine/arm64/{Context.s => Context.S} | 0 coroutine/win64/{Context.s => Context.S} | 0 coroutine/x86/{Context.s => Context.S} | 0 ia64.s => ia64.S | 0 7 files changed, 1 insertion(+), 1 deletion(-) rename coroutine/amd64/{Context.s => Context.S} (100%) rename coroutine/arm32/{Context.s => Context.S} (100%) rename coroutine/arm64/{Context.s => Context.S} (100%) rename coroutine/win64/{Context.s => Context.S} (100%) rename coroutine/x86/{Context.s => Context.S} (100%) rename ia64.s => ia64.S (100%) diff --git a/Makefile.in b/Makefile.in index 1b4eb6ba4f..ac8652ea1d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -213,7 +213,7 @@ DTRACE_REBUILD= @DTRACE_REBUILD@ DTRACE_GLOMMED_OBJ = $(DTRACE_REBUILD:yes=ruby-glommed.$(OBJEXT)) OBJEXT = @OBJEXT@ -ASMEXT = s +ASMEXT = S SOEXT = @SOEXT@ DLEXT = @DLEXT@ MANTYPE = @MANTYPE@ diff --git a/coroutine/amd64/Context.s b/coroutine/amd64/Context.S similarity index 100% rename from coroutine/amd64/Context.s rename to coroutine/amd64/Context.S diff --git a/coroutine/arm32/Context.s b/coroutine/arm32/Context.S similarity index 100% rename from coroutine/arm32/Context.s rename to coroutine/arm32/Context.S diff --git a/coroutine/arm64/Context.s b/coroutine/arm64/Context.S similarity index 100% rename from coroutine/arm64/Context.s rename to coroutine/arm64/Context.S diff --git a/coroutine/win64/Context.s b/coroutine/win64/Context.S similarity index 100% rename from coroutine/win64/Context.s rename to coroutine/win64/Context.S diff --git a/coroutine/x86/Context.s b/coroutine/x86/Context.S similarity index 100% rename from coroutine/x86/Context.s rename to coroutine/x86/Context.S diff --git a/ia64.s b/ia64.S similarity index 100% rename from ia64.s rename to ia64.S