public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH V2][wwwdocs] Document GNU-stack support added to GCC 10 for MIPS
@ 2020-03-29 20:33 Dragan Mladjenovic
  2020-03-30 15:39 ` Jeff Law
  0 siblings, 1 reply; 5+ messages in thread
From: Dragan Mladjenovic @ 2020-03-29 20:33 UTC (permalink / raw)
  To: gcc-patches; +Cc: Dragan Mladjenovic, Matthew Fortune, Gerald Pfeifer, Jeff Law

diff --git a/htdocs/gcc-10/changes.html b/htdocs/gcc-10/changes.html
index b5cbcebf..1e1eaf43 100644
--- a/htdocs/gcc-10/changes.html
+++ b/htdocs/gcc-10/changes.html
@@ -692,7 +692,17 @@ a work-in-progress.</p>
 </ul>
 
 
-<!-- <h3 id="mips">MIPS</h3> -->
+ <h3 id="mips">MIPS</h3>
+ <ul>
+    <li>The <code>mips*-*-linux*</code> targets now mark object files with
+      appropriate GNU-stack note, facilitating use of non-executable stack
+      hardening on GNU/Linux.
+      The soft-float targets have this feature enabled by default, while
+      for hard-float targets it is required for GCC to be configured with
+      <code>--with-glibc-version=2.31</code>
+      against glibc 2.31 or later.
+   </li>
+ </ul>
 
 <!-- <h3 id="mep">MeP</h3> -->
 
-- 
2.17.1


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

* Re: [PATCH V2][wwwdocs] Document GNU-stack support added to GCC 10 for MIPS
  2020-03-29 20:33 [PATCH V2][wwwdocs] Document GNU-stack support added to GCC 10 for MIPS Dragan Mladjenovic
@ 2020-03-30 15:39 ` Jeff Law
  2020-03-30 15:49   ` Dragan Mladjenovic
  0 siblings, 1 reply; 5+ messages in thread
From: Jeff Law @ 2020-03-30 15:39 UTC (permalink / raw)
  To: Dragan Mladjenovic, gcc-patches; +Cc: Matthew Fortune, Gerald Pfeifer

On Sun, 2020-03-29 at 22:33 +0200, Dragan Mladjenovic wrote:
> diff --git a/htdocs/gcc-10/changes.html b/htdocs/gcc-10/changes.html
> index b5cbcebf..1e1eaf43 100644
> --- a/htdocs/gcc-10/changes.html
> +++ b/htdocs/gcc-10/changes.html
> @@ -692,7 +692,17 @@ a work-in-progress.</p>
>  </ul>
>  
>  
> -<!-- <h3 id="mips">MIPS</h3> -->
> + <h3 id="mips">MIPS</h3>
> + <ul>
> +    <li>The <code>mips*-*-linux*</code> targets now mark object files with
> +      appropriate GNU-stack note, facilitating use of non-executable stack
> +      hardening on GNU/Linux.
> +      The soft-float targets have this feature enabled by default, while
> +      for hard-float targets it is required for GCC to be configured with
> +      <code>--with-glibc-version=2.31</code>
> +      against glibc 2.31 or later.
> +   </li>
> + </ul>
OK
jeff
> 


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

* Re: [PATCH V2][wwwdocs] Document GNU-stack support added to GCC 10 for MIPS
  2020-03-30 15:39 ` Jeff Law
@ 2020-03-30 15:49   ` Dragan Mladjenovic
  2020-03-30 15:53     ` Martin Liška
  2020-03-30 16:02     ` Gerald Pfeifer
  0 siblings, 2 replies; 5+ messages in thread
From: Dragan Mladjenovic @ 2020-03-30 15:49 UTC (permalink / raw)
  To: law, gcc-patches; +Cc: Matthew Fortune, Gerald Pfeifer

On 3/30/2020 17:39, Jeff Law wrote:

> On Sun, 2020-03-29 at 22:33 +0200, Dragan Mladjenovic wrote:
>> diff --git a/htdocs/gcc-10/changes.html b/htdocs/gcc-10/changes.html
>> index b5cbcebf..1e1eaf43 100644
>> --- a/htdocs/gcc-10/changes.html
>> +++ b/htdocs/gcc-10/changes.html
>> @@ -692,7 +692,17 @@ a work-in-progress.</p>
>>   </ul>
>>   
>>   
>> -<!-- <h3 id="mips">MIPS</h3> -->
>> + <h3 id="mips">MIPS</h3>
>> + <ul>
>> +    <li>The <code>mips*-*-linux*</code> targets now mark object files with
>> +      appropriate GNU-stack note, facilitating use of non-executable stack
>> +      hardening on GNU/Linux.
>> +      The soft-float targets have this feature enabled by default, while
>> +      for hard-float targets it is required for GCC to be configured with
>> +      <code>--with-glibc-version=2.31</code>
>> +      against glibc 2.31 or later.
>> +   </li>
>> + </ul>
> OK
> jeff

Thanks. I forgot to mention. I would need someone to commit this for me.

I won't be able to access to my sourceware account for some time.

Thanks in advance.



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

* Re: [PATCH V2][wwwdocs] Document GNU-stack support added to GCC 10 for MIPS
  2020-03-30 15:49   ` Dragan Mladjenovic
@ 2020-03-30 15:53     ` Martin Liška
  2020-03-30 16:02     ` Gerald Pfeifer
  1 sibling, 0 replies; 5+ messages in thread
From: Martin Liška @ 2020-03-30 15:53 UTC (permalink / raw)
  To: Dragan Mladjenovic, law, gcc-patches; +Cc: Matthew Fortune

On 3/30/20 5:49 PM, Dragan Mladjenovic wrote:
> I won't be able to access to my sourceware account for some time.

Hi.

Done as 47f1af75a082fe6e4d2bd4b289d982abd749c824.

Martin

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

* Re: [PATCH V2][wwwdocs] Document GNU-stack support added to GCC 10 for MIPS
  2020-03-30 15:49   ` Dragan Mladjenovic
  2020-03-30 15:53     ` Martin Liška
@ 2020-03-30 16:02     ` Gerald Pfeifer
  1 sibling, 0 replies; 5+ messages in thread
From: Gerald Pfeifer @ 2020-03-30 16:02 UTC (permalink / raw)
  To: Dragan Mladjenovic; +Cc: Jeff Law, gcc-patches, Matthew Fortune

On Mon, 30 Mar 2020, Dragan Mladjenovic wrote:
> Thanks. I forgot to mention. I would need someone to commit this for me.

I'll take care.

Gerald

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

end of thread, other threads:[~2020-03-30 16:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-29 20:33 [PATCH V2][wwwdocs] Document GNU-stack support added to GCC 10 for MIPS Dragan Mladjenovic
2020-03-30 15:39 ` Jeff Law
2020-03-30 15:49   ` Dragan Mladjenovic
2020-03-30 15:53     ` Martin Liška
2020-03-30 16:02     ` Gerald Pfeifer

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