public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Vineet Gupta <Vineet.Gupta1@synopsys.com>
To: libc-alpha@sourceware.org
Cc: linux-snps-arc@lists.infradead.org,
	Vineet Gupta <Vineet.Gupta1@synopsys.com>
Subject: [PATCH v5 14/14] Documentation for ARC port
Date: Wed,  8 Apr 2020 19:56:15 -0700	[thread overview]
Message-ID: <20200409025615.27003-15-vgupta@synopsys.com> (raw)
In-Reply-To: <20200409025615.27003-1-vgupta@synopsys.com>

Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
---
 NEWS                | 9 +++++++++
 README              | 1 +
 manual/install.texi | 5 +++++
 3 files changed, 15 insertions(+)

diff --git a/NEWS b/NEWS
index 14fd59a16a2d..6d17b6a0a087 100644
--- a/NEWS
+++ b/NEWS
@@ -17,6 +17,15 @@ Major new features:
     - rv32imafdc ilp32
     - rv32imafdc ilp32d
 
+* Support for Synpsys ARC HS cores (ARCv2 ISA) running Linux.
+
+  Port requires atleast
+    - binutils-2.32 (binutils-2_31-branch: commit 6ce881c15fc4, 2018-10-04)
+    - gcc 8.3 (gcc-8-stable: commit 0d5ba57508c5, 2019-01-29)
+    - Linux kernel 5.1+ (64-bit time and offsets)
+
+  Both Little and Big-Endian supported
+
 Deprecated and removed features, and other changes affecting compatibility:
 
   [Add deprecations, removals and changes affecting compatibility here]
diff --git a/README b/README
index cee86ab178cf..d0f0edb3930a 100644
--- a/README
+++ b/README
@@ -24,6 +24,7 @@ The GNU C Library supports these configurations for using Linux kernels:
 
 	aarch64*-*-linux-gnu
 	alpha*-*-linux-gnu
+	arc*-*-linux-gnu
 	arm-*-linux-gnueabi
 	csky-*-linux-gnuabiv2
 	hppa-*-linux-gnu
diff --git a/manual/install.texi b/manual/install.texi
index 71bf47cac659..c4b11e4e7973 100644
--- a/manual/install.texi
+++ b/manual/install.texi
@@ -507,6 +507,9 @@ the newest version of the compiler that is known to work for building
 release time, GCC 9.2.1 is the newest compiler verified to work to build
 @theglibc{}.
 
+For ARC architecture builds, GCC 8.3 is needed which has the necessary
+fixes to support @theglibc{}.
+
 For multi-arch support it is recommended to use a GCC which has been built with
 support for GNU indirect functions.  This ensures that correct debugging
 information is generated for functions selected by IFUNC resolvers.  This
@@ -528,6 +531,8 @@ No other assembler or linker has the necessary functionality at the
 moment. As of release time, GNU @code{binutils} 2.32 is the newest
 verified to work to build @theglibc{}.
 
+ARC architecture needs @code{binutils} 2.32 for TLS related fixes.
+
 @item
 GNU @code{texinfo} 4.7 or later
 
-- 
2.20.1


  parent reply	other threads:[~2020-04-09  2:56 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-09  2:56 [PATCH v5 00/14] glibc port to ARC processors Vineet Gupta
2020-04-09  2:56 ` [PATCH v5 01/14] ARC: ABI Implementation Vineet Gupta
2020-04-17 22:37   ` Joseph Myers
2020-04-17 23:30     ` Vineet Gupta
2020-04-09  2:56 ` [PATCH v5 02/14] ARC: startup and dynamic linking code Vineet Gupta
2020-04-17 22:42   ` Joseph Myers
2020-04-17 23:40     ` Vineet Gupta
2020-04-09  2:56 ` [PATCH v5 03/14] ARC: Thread Local Storage support Vineet Gupta
2020-04-17 22:44   ` Joseph Myers
2020-04-17 23:43     ` Vineet Gupta
2020-04-09  2:56 ` [PATCH v5 04/14] ARC: Atomics and Locking primitives Vineet Gupta
2020-04-09  2:56 ` [PATCH v5 05/14] ARC: math soft float support Vineet Gupta
2020-04-09  2:56 ` [PATCH v5 06/14] ARC: hardware floating point support Vineet Gupta
2020-04-17 22:59   ` Joseph Myers
2020-04-17 23:49     ` Vineet Gupta
2020-04-20 18:21       ` Joseph Myers
2020-04-09  2:56 ` [PATCH v5 07/14] ARC: Linux Syscall Interface Vineet Gupta
2020-04-09  2:56 ` [PATCH v5 08/14] ARC: Linux ABI Vineet Gupta
2020-04-17 23:02   ` Joseph Myers
2020-04-17 23:52     ` Vineet Gupta
2020-04-09  2:56 ` [PATCH v5 09/14] ARC: Linux Startup and Dynamic Loading Vineet Gupta
2020-04-09  2:56 ` [PATCH v5 10/14] ARC: ABI lists Vineet Gupta
2020-04-09  2:56 ` [PATCH v5 11/14] ARC: Update syscall-names.list for ARC specific syscalls Vineet Gupta
2020-04-17 23:05   ` Joseph Myers
2020-04-17 23:53     ` Vineet Gupta
2020-04-18 10:31       ` Florian Weimer
2020-04-20 18:24       ` Joseph Myers
2020-04-09  2:56 ` [PATCH v5 12/14] ARC: Build Infrastructure Vineet Gupta
2020-04-17 23:10   ` Joseph Myers
2020-04-18  0:12     ` Vineet Gupta
2020-04-18  5:46       ` Vineet Gupta
2020-04-09  2:56 ` [PATCH v5 13/14] build-many-glibcs.py: Enable ARC builds Vineet Gupta
2020-04-17 23:12   ` Joseph Myers
2020-04-17 23:57     ` Vineet Gupta
2020-04-09  2:56 ` Vineet Gupta [this message]
2020-04-17 23:13   ` [PATCH v5 14/14] Documentation for ARC port Joseph Myers
2020-04-17 23:58     ` Vineet Gupta

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=20200409025615.27003-15-vgupta@synopsys.com \
    --to=vineet.gupta1@synopsys.com \
    --cc=libc-alpha@sourceware.org \
    --cc=linux-snps-arc@lists.infradead.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).