From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1521) id 34AD03858C2C; Tue, 2 Jan 2024 04:36:20 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 34AD03858C2C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1704170184; bh=qjKimVQdauYVG/gaTokSm/c7urjCMHeEw/6Ob9oZUjM=; h=From:To:Subject:Date:From; b=smGIVi85bmCBJp4qBWohlpRhTx8Ark3DsmuTDTNtYi3Y+CLUQY5E6iWCt8K/igVAu STgqmkQZj8Fn3Cq/yw4KvQE+NB9dk2Ks4fzG9Yf/AVn6sQblAAu/OvjdiQ4Ee3Fbti ixcU8x2sDB001bA2ZXBMoXXBQVL0BPlNguqin+XU= 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/users/vapier/wip] libgloss: msp430: delete stub crt_init.o X-Act-Checkin: newlib-cygwin X-Git-Author: Mike Frysinger X-Git-Refname: refs/heads/users/vapier/wip X-Git-Oldrev: 025679996d1fb3bc985f5e22c6b111b5ef2093fd X-Git-Newrev: 466514c02077e4f05b3590fbc8f920105098d8ef Message-Id: <20240102043624.34AD03858C2C@sourceware.org> Date: Tue, 2 Jan 2024 04:36:20 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3D466514c0207= 7e4f05b3590fbc8f920105098d8ef commit 466514c02077e4f05b3590fbc8f920105098d8ef 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@