public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH, wwwdocs/ARM] Mention new rmprofile value for --with-multilib-list
@ 2017-01-30 13:33 Thomas Preudhomme
  2017-01-30 14:23 ` Kyrill Tkachov
  2017-02-01 19:23 ` Gerald Pfeifer
  0 siblings, 2 replies; 4+ messages in thread
From: Thomas Preudhomme @ 2017-01-30 13:33 UTC (permalink / raw)
  To: gcc-patches, Gerald Pfeifer, Kyrill Tkachov,
	Ramana Radhakrishnan, Richard Earnshaw

[-- Attachment #1: Type: text/plain, Size: 278 bytes --]

Hi,

ARM backend now support a new set of multilib libraries enabled with 
--with-multilib-list=rmprofile [1]. This patch documents it in the changes for 
GCC 7.

[1] https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=r242696

Is this ok for wwwdocs?

Best regards,

Thomas

[-- Attachment #2: multilib_changes.1.0.diff --]
[-- Type: text/x-patch, Size: 742 bytes --]

Index: htdocs/gcc-7/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-7/changes.html,v
retrieving revision 1.44
diff -u -r1.44 changes.html
--- htdocs/gcc-7/changes.html	27 Jan 2017 09:54:32 -0000	1.44
+++ htdocs/gcc-7/changes.html	30 Jan 2017 10:00:48 -0000
@@ -517,6 +517,11 @@
       the generation of coprocessor instructions through the use of intrinsics
       such as <code>cdp</code>, <code>ldc</code>, and others.
     </li>
+     <li>
+      The configure option <code>--with-multilib-list</code> now accepts the
+      value <code>rmprofile</code> to build multilib libraries for a range of
+      embedded targets.
+    </li>
    </ul>
 
 <h3 id="avr">AVR</h3>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH, wwwdocs/ARM] Mention new rmprofile value for --with-multilib-list
  2017-01-30 13:33 [PATCH, wwwdocs/ARM] Mention new rmprofile value for --with-multilib-list Thomas Preudhomme
@ 2017-01-30 14:23 ` Kyrill Tkachov
  2017-02-01 19:23 ` Gerald Pfeifer
  1 sibling, 0 replies; 4+ messages in thread
From: Kyrill Tkachov @ 2017-01-30 14:23 UTC (permalink / raw)
  To: Thomas Preudhomme, gcc-patches, Gerald Pfeifer,
	Ramana Radhakrishnan, Richard Earnshaw

Hi Thomas,

On 30/01/17 13:32, Thomas Preudhomme wrote:
> Hi,
>
> ARM backend now support a new set of multilib libraries enabled with --with-multilib-list=rmprofile [1]. This patch documents it in the changes for GCC 7.
>
> [1] https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=r242696
>
> Is this ok for wwwdocs?
>

This is ok.
Thanks,
Kyrill

> Best regards,
>
> Thomas

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH, wwwdocs/ARM] Mention new rmprofile value for --with-multilib-list
  2017-01-30 13:33 [PATCH, wwwdocs/ARM] Mention new rmprofile value for --with-multilib-list Thomas Preudhomme
  2017-01-30 14:23 ` Kyrill Tkachov
@ 2017-02-01 19:23 ` Gerald Pfeifer
  2017-02-02  9:05   ` Thomas Preudhomme
  1 sibling, 1 reply; 4+ messages in thread
From: Gerald Pfeifer @ 2017-02-01 19:23 UTC (permalink / raw)
  To: Thomas Preudhomme
  Cc: gcc-patches, Kyrill Tkachov, Ramana Radhakrishnan, Richard Earnshaw

On Mon, 30 Jan 2017, Thomas Preudhomme wrote:
> ARM backend now support a new set of multilib libraries enabled with
> --with-multilib-list=rmprofile [1]. This patch documents it in the changes for
> GCC 7.

I will admit that even following this list, I had to look up what
this really referred to. ;-)

And once I found the documentation, I figured I could as well provide
a reference for others (since most consumers of our release notes will
be even farther away than me).

Below is the patch I applied.

Gerald

Index: changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-7/changes.html,v
retrieving revision 1.53
diff -u -r1.53 changes.html
--- changes.html	1 Feb 2017 19:05:53 -0000	1.53
+++ changes.html	1 Feb 2017 19:20:18 -0000
@@ -778,7 +778,9 @@
      <li>
       The configure option <code>--with-multilib-list</code> now accepts the
       value <code>rmprofile</code> to build multilib libraries for a range of
-      embedded targets.
+      embedded targets.  See our
+      <a href="https://gcc.gnu.org/install/configure.html">installation
+      instructions</a> for details.
     </li>
    </ul>
 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH, wwwdocs/ARM] Mention new rmprofile value for --with-multilib-list
  2017-02-01 19:23 ` Gerald Pfeifer
@ 2017-02-02  9:05   ` Thomas Preudhomme
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Preudhomme @ 2017-02-02  9:05 UTC (permalink / raw)
  To: Gerald Pfeifer; +Cc: gcc-patches

Looks good, thanks Gerald!

Best regards,

Thomas

On 01/02/17 19:23, Gerald Pfeifer wrote:
> On Mon, 30 Jan 2017, Thomas Preudhomme wrote:
>> ARM backend now support a new set of multilib libraries enabled with
>> --with-multilib-list=rmprofile [1]. This patch documents it in the changes for
>> GCC 7.
>
> I will admit that even following this list, I had to look up what
> this really referred to. ;-)
>
> And once I found the documentation, I figured I could as well provide
> a reference for others (since most consumers of our release notes will
> be even farther away than me).
>
> Below is the patch I applied.
>
> Gerald
>
> Index: changes.html
> ===================================================================
> RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-7/changes.html,v
> retrieving revision 1.53
> diff -u -r1.53 changes.html
> --- changes.html    1 Feb 2017 19:05:53 -0000    1.53
> +++ changes.html    1 Feb 2017 19:20:18 -0000
> @@ -778,7 +778,9 @@
>      <li>
>       The configure option <code>--with-multilib-list</code> now accepts the
>       value <code>rmprofile</code> to build multilib libraries for a range of
> -      embedded targets.
> +      embedded targets.  See our
> +      <a href="https://gcc.gnu.org/install/configure.html">installation
> +      instructions</a> for details.
>     </li>
>    </ul>
>
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-02-02  9:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-30 13:33 [PATCH, wwwdocs/ARM] Mention new rmprofile value for --with-multilib-list Thomas Preudhomme
2017-01-30 14:23 ` Kyrill Tkachov
2017-02-01 19:23 ` Gerald Pfeifer
2017-02-02  9:05   ` Thomas Preudhomme

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).