From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp2200-217.mail.aliyun.com (smtp2200-217.mail.aliyun.com [121.197.200.217]) by sourceware.org (Postfix) with ESMTPS id 69A843851C3A for ; Wed, 16 Sep 2020 10:34:48 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 69A843851C3A Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=c-sky.com Authentication-Results: sourceware.org; spf=none smtp.mailfrom=jiejie_rong@c-sky.com X-Alimail-AntiSpam: AC=CONTINUE; BC=0.2161857|-1; CH=green; DM=|CONTINUE|false|; DS=CONTINUE|ham_system_inform|0.0189135-0.000484372-0.980602; FP=0|0|0|0|0|-1|-1|-1; HT=e02c03305; MF=jiejie_rong@c-sky.com; NM=1; PH=DS; RN=3; RT=3; SR=0; TI=SMTPD_---.IXqv7XM_1600252483; Received: from Ubuntu-14.04-i386.localdomain(mailfrom:jiejie_rong@c-sky.com fp:SMTPD_---.IXqv7XM_1600252483) by smtp.aliyun-inc.com(10.194.99.38); Wed, 16 Sep 2020 18:34:44 +0800 From: Jojo R To: jiejie_rong@c-sky.com, xianmiao_qu@c-sky.com, gcc-patches@gcc.gnu.org Subject: [PATCH 1/3] C-SKY: Enable crtbegin/crtend.o of libgcc for elf target Date: Wed, 16 Sep 2020 18:34:41 +0800 Message-Id: <1600252483-915-1-git-send-email-jiejie_rong@c-sky.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: References: X-Spam-Status: No, score=-10.6 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, SPF_HELO_NONE, SPF_NONE, TXREP, UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Sep 2020 10:34:51 -0000 libgcc/ChangeLog: * config.host (C-SKY): Enable crtbegin/crtend.o of libgcc for elf target. --- libgcc/config.host | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgcc/config.host b/libgcc/config.host index 7a3e29d..dbb378f 100644 --- a/libgcc/config.host +++ b/libgcc/config.host @@ -579,7 +579,7 @@ cris-*-elf) ;; csky-*-elf*) tmake_file="csky/t-csky t-fdpbit" - extra_parts="$extra_parts crti.o crtn.o" + extra_parts="crtbegin.o crtend.o crti.o crtn.o" ;; csky-*-linux*) tmake_file="$tmake_file csky/t-csky t-slibgcc-libgcc t-fdpbit csky/t-linux-csky" -- 1.9.1