From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out30-57.freemail.mail.aliyun.com (out30-57.freemail.mail.aliyun.com [115.124.30.57]) by sourceware.org (Postfix) with ESMTPS id B1C253858D1E for ; Sun, 15 Jan 2023 02:32:14 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org B1C253858D1E Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=linux.alibaba.com X-Alimail-AntiSpam:AC=PASS;BC=-1|-1;BR=01201311R601e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018045192;MF=cooper.qu@linux.alibaba.com;NM=1;PH=DS;RN=1;SR=0;TI=SMTPD_---0VZYs8qp_1673749928; Received: from localhost(mailfrom:cooper.qu@linux.alibaba.com fp:SMTPD_---0VZYs8qp_1673749928) by smtp.aliyun-inc.com; Sun, 15 Jan 2023 10:32:09 +0800 From: Xianmiao Qu To: gcc-patches@gcc.gnu.org Subject: [COMMITTED] C-SKY: Support --with-float=softfp in configuration. Date: Sun, 15 Jan 2023 10:32:07 +0800 Message-Id: <20230115023207.88481-1-cooper.qu@linux.alibaba.com> X-Mailer: git-send-email 2.32.1 (Apple Git-133) MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-20.7 required=5.0 tests=BAYES_00,ENV_AND_HDR_SPF_MATCH,GIT_PATCH_0,KAM_DMARC_STATUS,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,SPF_HELO_NONE,SPF_PASS,TXREP,UNPARSEABLE_RELAY,USER_IN_DEF_SPF_WL autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Missed it before, it needs to be used when compiling non-multilib. gcc/ * config.gcc (csky-*-*): Support --with-float=softfp. --- gcc/config.gcc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config.gcc b/gcc/config.gcc index c4633e869ac..f89a071b495 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1616,7 +1616,7 @@ csky-*-*) fi if test x${with_float} != x; then case ${with_float} in - soft | hard) ;; + soft | hard | softfp) ;; *) echo "Unknown floating point type used in --with-float=$with_float" exit 1 -- 2.32.1 (Apple Git-133)