From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1521) id CCFA6385840B; Sat, 20 Jan 2024 01:26:31 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CCFA6385840B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1705713991; bh=l8x3qKeSTi5po42q/l3Cu0dFH1if2+h+k3qq7EHam0k=; h=From:To:Subject:Date:From; b=r1qVo3WVL1uqCaOCWw/xYqsBaS5Gh8V/Xh6H+Qg5yGjBG6HpbVfsXzwjwdqTF5wF7 6uIBzxUOPL3fG7XXreVznqvzq1W8sOP3wtzhEgrCkpEgcqUtffEPbPZ8F4rSrHuU+M OfR/3USdjtfFRHYrF0xh0PiuU9FQIkWwEMI7n0lg= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Frysinger To: newlib-cvs@sourceware.org Subject: [newlib-cygwin/main] libgloss: msp430: delete stub crt_init.o X-Act-Checkin: newlib-cygwin X-Git-Author: Mike Frysinger X-Git-Refname: refs/heads/main X-Git-Oldrev: 0ed55d03b7e1083cd721a52876f021b211f3e24a X-Git-Newrev: 2b0fd7030830701a63781de9d67a596e361c39be Message-Id: <20240120012631.CCFA6385840B@sourceware.org> Date: Sat, 20 Jan 2024 01:26:31 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3D2b0fd703083= 0701a63781de9d67a596e361c39be commit 2b0fd7030830701a63781de9d67a596e361c39be Author: Mike Frysinger Date: Tue Dec 26 21:56:00 2023 -0500 libgloss: msp430: delete stub crt_init.o =20 This object is created by compiling crt0.S with -DLinit, but there has never been an "#if Linit" check in crt0.S, so this has always produced a stub object file. Drop compiling it entirely. Diff: --- libgloss/msp430/Makefile.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libgloss/msp430/Makefile.in b/libgloss/msp430/Makefile.in index 05d3f9cba..c5d70ff7d 100644 --- a/libgloss/msp430/Makefile.in +++ b/libgloss/msp430/Makefile.in @@ -90,8 +90,7 @@ CRT_OBJS =3D \ crt_run_init_array.o \ crt_run_preinit_array.o \ crt_run_fini_array.o \ - crt_run_array.o \ - crt_init.o + crt_run_array.o =20 #### Host specific Makefile fragment comes in here. @host_makefile_frag@