From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2050) id 581EC3858D1E; Sun, 15 Jan 2023 02:29:07 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 581EC3858D1E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1673749748; bh=Ru9SXE4R+KFKz1C5N3IuC+ZmAbf2GtqiaU+sco0x45w=; h=From:To:Subject:Date:From; b=MDeqyC1hKNmbOcroArcQV/x1Scabnkah86bvTEgudxnT2DlvMfKBkgAieige2piJO znpW5V14gmFdQD5PIQOL5X7PEeHzHlC5JfPlMT3WGgFALebab8Xs7vZgEnFOxV7k06 k+x23xRWIWznmlgGD2Lidthat7AM6cpMRG/h6m/U= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: qu To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-5174] C-SKY: Support --with-float=softfp in configuration. X-Act-Checkin: gcc X-Git-Author: Xianmiao Qu X-Git-Refname: refs/heads/master X-Git-Oldrev: 5013c3bb3ead9c27adb90152115ca1d606cbf2dc X-Git-Newrev: e658e8157db372555a853c02824f5fc78709a5b1 Message-Id: <20230115022908.581EC3858D1E@sourceware.org> Date: Sun, 15 Jan 2023 02:29:07 +0000 (GMT) List-Id: https://gcc.gnu.org/g:e658e8157db372555a853c02824f5fc78709a5b1 commit r13-5174-ge658e8157db372555a853c02824f5fc78709a5b1 Author: Xianmiao Qu Date: Sun Jan 15 10:04:35 2023 +0800 C-SKY: Support --with-float=softfp in configuration. Missed it before, it needs to be used when compiling non-multilib. gcc/ * config.gcc (csky-*-*): Support --with-float=softfp. Diff: --- 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