public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Palmer Dabbelt <palmer@dabbelt.com>
To: libc-alpha@sourceware.org, joseph@codesourcery.com
Cc: Andrew Waterman <andrew@sifive.com>,
	Darius Rad <darius@bluespec.com>,
	dj@redhat.com,    patches@groups.riscv.org,
	Palmer Dabbelt <palmer@dabbelt.com>
Subject: [PATCH 01/17] Skeleton documentation for the RISC-V port
Date: Thu, 25 Jan 2018 04:36:00 -0000	[thread overview]
Message-ID: <20180125043621.19972-2-palmer@dabbelt.com> (raw)
In-Reply-To: <20180125043621.19972-1-palmer@dabbelt.com>

During the upstreaming process it was suggested that I add a handful of
small documentation entries about the RISC-V port, which I've collected
here.

2018-01-13  Palmer Dabbelt  <palmer@sifive.com>

        * manual/math.texi: RISC-V supports _Float128 and _Float64x
---
 NEWS             | 15 +++++++++++----
 README           |  2 ++
 manual/math.texi |  2 +-
 3 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/NEWS b/NEWS
index ecefc5236489..4cd77c1e2f98 100644
--- a/NEWS
+++ b/NEWS
@@ -41,13 +41,13 @@ Major new features:
   process aborts as the result of assertion failures.
 
 * On platforms where long double has the IEEE binary128 format (aarch64,
-  alpha, mips64, s390 and sparc), the math library now implements _Float128
-  interfaces for that type, as defined by ISO/IEC TS 18661-3:2015.  These
-  are the same interfaces added in version 2.26 for some platforms where
+  alpha, mips64, riscv, s390 and sparc), the math library now implements
+  _Float128 interfaces for that type, as defined by ISO/IEC TS 18661-3:2015.
+  These are the same interfaces added in version 2.26 for some platforms where
   this format is supported but is not the format of long double.
 
 * On platforms with support for _Float64x (aarch64, alpha, i386, ia64,
-  mips64, powerpc64le, s390, sparc and x86_64), the math library now
+  mips64, powerpc64le, riscv, s390, sparc and x86_64), the math library now
   implements interfaces for that type, as defined by ISO/IEC TS
   18661-3:2015.  These are corresponding interfaces to those supported for
   _Float128.
@@ -98,6 +98,13 @@ Major new features:
   to fail to load locales and fall back to the builtin C/POSIX locales.
   See notes below for other changes affecting compatibility.
 
+* Support for the RISC-V ISA running on Linux has been added.  This port
+  requires at least binutils-2.30, gcc-7.3.0, and linux-4.15; and is supported
+  for the following ISA and ABI pairs:
+
+    - rv64imafdc lp64
+    - rv64imafdc lp64d
+
 Deprecated and removed features, and other changes affecting compatibility:
 
 * Statically compiled applications attempting to load locales compiled for the
diff --git a/README b/README
index d0e99ea7d5a0..425a82956fc8 100644
--- a/README
+++ b/README
@@ -39,6 +39,8 @@ 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
 	sparc64*-*-linux-gnu
diff --git a/manual/math.texi b/manual/math.texi
index a9f2a9813832..d19a14b47dc3 100644
--- a/manual/math.texi
+++ b/manual/math.texi
@@ -70,7 +70,7 @@ provided for @code{_Float32}, @code{_Float64} and @code{_Float32x} on
 all platforms.
 It is also provided for @code{_Float128} and @code{_Float64x} on
 powerpc64le (PowerPC 64-bits little-endian), x86_64, x86, ia64,
-aarch64, alpha, mips64, s390 and sparc.
+aarch64, alpha, mips64, riscv, s390 and sparc.
 
 @menu
 * Mathematical Constants::      Precise numeric values for often-used
-- 
2.13.6

  reply	other threads:[~2018-01-25  4:36 UTC|newest]

Thread overview: 63+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-25  4:37 RISC-V glibc port, v5 Palmer Dabbelt
2018-01-25  4:36 ` Palmer Dabbelt [this message]
2018-01-25 16:50   ` [PATCH 01/17] Skeleton documentation for the RISC-V port Joseph Myers
2018-01-25 18:04     ` Palmer Dabbelt
2018-01-25  4:36 ` [PATCH 04/17] Add documentation for __riscv_flush_icache Palmer Dabbelt
2018-01-25  4:36 ` [PATCH 02/17] Add RISC-V entries to config.h.in Palmer Dabbelt
2018-01-25  4:36 ` [PATCH 06/17] RISC-V: Startup and Dynamic Loading Code Palmer Dabbelt
2018-01-25 17:05   ` Joseph Myers
2018-01-25 19:55     ` Palmer Dabbelt
2018-01-25  4:36 ` [PATCH 03/17] Add support for the RISC-V-specific ELF flags Palmer Dabbelt
2018-01-25 16:51   ` Joseph Myers
2018-01-25 18:09     ` Palmer Dabbelt
2018-01-26 17:44       ` Szabolcs Nagy
2018-01-26 18:20         ` Palmer Dabbelt
2018-01-26 22:46         ` Joseph Myers
2018-01-25  4:37 ` [PATCH 11/17] RISC-V: Atomic and Locking Routines Palmer Dabbelt
2018-01-25  4:37 ` [PATCH 07/17] RISC-V: Thread-Local Storage Support Palmer Dabbelt
2018-01-25  4:37 ` [PATCH 16/17] RISC-V: Build Infastructure Palmer Dabbelt
2018-01-25  4:37 ` [PATCH 05/17] RISC-V: ABI Implementation Palmer Dabbelt
2018-01-25  4:37 ` [PATCH 09/17] RISC-V: RV32F Support Palmer Dabbelt
2018-01-25  4:37 ` [PATCH 12/17] RISC-V: Linux Syscall Interface Palmer Dabbelt
2018-01-25 17:15   ` Joseph Myers
2018-01-25 20:57     ` Palmer Dabbelt
2018-01-25  4:37 ` [PATCH 14/17] RISC-V: Linux Startup and Dynamic Loading Code Palmer Dabbelt
2018-01-25  4:37 ` [PATCH 10/17] RISC-V: RV32D, RV64F, and RV64D Support Palmer Dabbelt
2018-01-25  4:37 ` [PATCH 17/17] Add RISC-V to build-many-glibcs.py Palmer Dabbelt
2018-01-25 17:42   ` Joseph Myers
2018-01-25 21:18     ` Palmer Dabbelt
2018-01-25  4:37 ` [PATCH 13/17] RISC-V: Linux ABI Palmer Dabbelt
2018-01-25 17:24   ` Joseph Myers
2018-01-25 18:19     ` Adhemerval Zanella
2018-01-25 20:57     ` Palmer Dabbelt
2018-01-25  4:37 ` [PATCH 08/17] RISC-V: Generic <math.h> and soft-fp Routines Palmer Dabbelt
2018-01-25 17:12   ` Joseph Myers
2018-01-25 20:57     ` Palmer Dabbelt
2018-01-25  4:37 ` [PATCH 15/17] RISC-V: Add ABI Lists Palmer Dabbelt
2018-01-25 17:26   ` Joseph Myers
2018-01-25 20:57     ` Palmer Dabbelt
2018-01-25  9:35 ` RISC-V glibc port, v5 Andreas Schwab
2018-01-25 16:33   ` Palmer Dabbelt
2018-01-25 18:01   ` Joseph Myers
2018-01-25 11:47 ` Darius Rad
2018-01-25 16:44 ` Joseph Myers
2018-01-25 16:52   ` DJ Delorie
2018-01-25 17:06     ` Joseph Myers
2018-01-25 19:01       ` Jim Wilson
2018-01-25 20:27         ` Joseph Myers
2018-01-25 17:08     ` Andreas Schwab
2018-01-25 18:04   ` Palmer Dabbelt
2018-01-25 18:37     ` Joseph Myers
2018-01-26  2:58       ` Palmer Dabbelt
2018-01-25 17:06 ` DJ Delorie
2018-01-25 17:58 ` Joseph Myers
2018-01-25 19:59   ` Richard W.M. Jones
2018-01-25 20:52     ` Joseph Myers
2018-01-26  3:44       ` Palmer Dabbelt
2018-01-26  2:59     ` Palmer Dabbelt
2018-01-25 20:32   ` Joseph Myers
2018-01-26  3:44     ` Palmer Dabbelt
2018-01-26 12:37       ` Joseph Myers
2018-01-26 17:51         ` Palmer Dabbelt
2018-01-26  2:58   ` [patches] " Palmer Dabbelt
2018-01-26 12:32     ` Joseph Myers

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180125043621.19972-2-palmer@dabbelt.com \
    --to=palmer@dabbelt.com \
    --cc=andrew@sifive.com \
    --cc=darius@bluespec.com \
    --cc=dj@redhat.com \
    --cc=joseph@codesourcery.com \
    --cc=libc-alpha@sourceware.org \
    --cc=patches@groups.riscv.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).