From e5b8bced3ffa27fa4af648f0dd890c017a1220ad Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Mon, 26 Nov 2018 19:14:33 +0000 Subject: [PATCH] btx: rename .s files to .S to use Clang IAS As part of the migration away from obsolete binutils we want to retire GNU as. Most assembly files used on amd64 have a .S extension and are assembled with Clang's integrated assembler; rename two files in stand/i386/btx/lib to .S to use IAS as well. The generated .text is identical (the entire .o files are not, as Clang adds debug info). PR: 205250, 233094 Discussed with: imp Sponsored by: The FreeBSD Foundation --- stand/i386/btx/lib/Makefile | 2 +- stand/i386/btx/lib/{btxsys.s => btxsys.S} | 0 stand/i386/btx/lib/{btxv86.s => btxv86.S} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename stand/i386/btx/lib/{btxsys.s => btxsys.S} (100%) rename stand/i386/btx/lib/{btxv86.s => btxv86.S} (100%) diff --git a/stand/i386/btx/lib/Makefile b/stand/i386/btx/lib/Makefile index 2988f4297660..a9e2e4350a55 100644 --- a/stand/i386/btx/lib/Makefile +++ b/stand/i386/btx/lib/Makefile @@ -4,7 +4,7 @@ PROG= crt0.o INTERNALPROG= -SRCS= btxcsu.S btxsys.s btxv86.s +SRCS= btxcsu.S btxsys.S btxv86.S CFLAGS+=-I${BOOTSRC}/i386/common LDFLAGS+=-Wl,-r diff --git a/stand/i386/btx/lib/btxsys.s b/stand/i386/btx/lib/btxsys.S similarity index 100% rename from stand/i386/btx/lib/btxsys.s rename to stand/i386/btx/lib/btxsys.S diff --git a/stand/i386/btx/lib/btxv86.s b/stand/i386/btx/lib/btxv86.S similarity index 100% rename from stand/i386/btx/lib/btxv86.s rename to stand/i386/btx/lib/btxv86.S