From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-io1-xd44.google.com (mail-io1-xd44.google.com [IPv6:2607:f8b0:4864:20::d44]) by sourceware.org (Postfix) with ESMTPS id D64823851C12 for ; Tue, 14 Jul 2020 13:38:02 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org D64823851C12 Received: by mail-io1-xd44.google.com with SMTP id y2so17283840ioy.3 for ; Tue, 14 Jul 2020 06:38:02 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=GCoL128n8Rb4su3gR/6PCrOcb/exLVuts9bF95NdbjU=; b=cfZAFuQrVVWKdn+cJNPvpSURcUMQdGvioKraB3lYCLUjRPuOt/O/mDbugT9QZCoG6p CxCPR4v1Fo8GwAtshgJqCLqd28mm8uJXRkPm4Zxjx8cXQ1jNajZid7zOnt6XQ/ZgornN vlzmR68o3zZoPjE662BHcil4hTlyDaXA2Uy8/hZOKccfJVyHcMVRBsDNvfQ70JXV3Q1p VfFzw+fTBlZ6VFxEBxKqfMtAJBbj3T3DgptWwjfgSO9S6j0PTiMwhVIUTadPNzPQg7cB 7AysJ/4g+VBJR3w5sFXkf+kC72l4NFDEprgDkngX6ZtpXF5mYId0KxtCSud7EzbCcGjB ZAig== X-Gm-Message-State: AOAM5301KrOzZpfZjVjKS7Po/FCijXqyZfor1rbdo7OOtLWpmYIJ8yzh +WDQ1msLQXcEVNFJYqbyvfeJJWa8Ud0ITK2m7wk= X-Google-Smtp-Source: ABdhPJxfoSGHsRgyioQqAOIrs7gxJopWA+ww0rSLP3zLqsGoUmmiZi64ezVYDVybf/sO5pzpeukDjgd19VFR9oh+LmI= X-Received: by 2002:a02:1a06:: with SMTP id 6mr6056468jai.8.1594733882420; Tue, 14 Jul 2020 06:38:02 -0700 (PDT) MIME-Version: 1.0 References: <4212e00f-08eb-818b-236c-498a1b87571e@linaro.org> In-Reply-To: <4212e00f-08eb-818b-236c-498a1b87571e@linaro.org> From: Alistair Francis Date: Tue, 14 Jul 2020 06:28:03 -0700 Message-ID: Subject: Re: [PATCH v3 18/19] Documentation for the RISC-V 32-bit port To: Adhemerval Zanella Cc: GNU C Library Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-10.0 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP 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: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Jul 2020 13:38:04 -0000 On Mon, Jul 13, 2020 at 10:25 AM Adhemerval Zanella via Libc-alpha wrote: > > > > On 12/07/2020 12:48, Alistair Francis via Libc-alpha wrote: > > There is already RISC-V 64-bit port information in the documentation. > > Let's add some documentation entries for the RISC-V 32-bit as well. > > --- > > NEWS | 6 ++++++ > > README | 1 + > > 2 files changed, 7 insertions(+) > > > > diff --git a/NEWS b/NEWS > > index 92dcb77fef..958f676b6f 100644 > > --- a/NEWS > > +++ b/NEWS > > @@ -89,6 +89,12 @@ Major new features: > > support, otherwise runtime objects linked into user code will not be > > BTI compatible. > > > > +* Support RISC-V port for 32-bit. The ISA and ABI pairs supported as follows: > > + > > + - rv32imac ilp32 > > + - rv32imafdc ilp32 > > + - rv32imafdc ilp32d > > + > > Could you extend it by adding the minimum required gcc, binutils, and Linux > version? Done! Alistair > > > > Deprecated and removed features, and other changes affecting compatibility: > > > > * Remove configure option --enable-obsolete-nsl. libnsl is only built > > diff --git a/README b/README > > index 903f07e484..d0f0edb393 100644 > > --- a/README > > +++ b/README > > @@ -39,6 +39,7 @@ The GNU C Library supports these configurations for using Linux kernels: > > powerpc64*-*-linux-gnu Big-endian and little-endian. > > s390-*-linux-gnu > > s390x-*-linux-gnu > > + riscv32-*-linux-gnu > > riscv64-*-linux-gnu > > sh[34]-*-linux-gnu > > sparc*-*-linux-gnu > >