public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libffi/28036] libffi executable stack (missing .note.GNU-stack on .o files)
       [not found] <bug-28036-4@http.gcc.gnu.org/bugzilla/>
@ 2021-09-15  9:12 ` pinskia at gcc dot gnu.org
  2021-09-15  9:16 ` pinskia at gcc dot gnu.org
  2021-09-15  9:23 ` schwab@linux-m68k.org
  2 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-09-15  9:12 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=28036

--- Comment #8 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
These are the ones without the note still:
src/bfin/sysv.S
src/cris/sysv.S
src/m32r/sysv.S
src/metag/sysv.S
src/microblaze/sysv.S
src/nios2/sysv.S
src/or1k/sysv.S
src/riscv/sysv.S
src/xtensa/sysv.S

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

* [Bug libffi/28036] libffi executable stack (missing .note.GNU-stack on .o files)
       [not found] <bug-28036-4@http.gcc.gnu.org/bugzilla/>
  2021-09-15  9:12 ` [Bug libffi/28036] libffi executable stack (missing .note.GNU-stack on .o files) pinskia at gcc dot gnu.org
@ 2021-09-15  9:16 ` pinskia at gcc dot gnu.org
  2021-09-15  9:23 ` schwab@linux-m68k.org
  2 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-09-15  9:16 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=28036

--- Comment #9 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
(In reply to Andrew Pinski from comment #8)
> These are the ones without the note still:
> src/bfin/sysv.S
> src/cris/sysv.S
> src/m32r/sysv.S
> src/metag/sysv.S
> src/microblaze/sysv.S
> src/nios2/sysv.S
> src/or1k/sysv.S
> src/riscv/sysv.S
> src/xtensa/sysv.S

None of these have been fixed upstream though.

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

* [Bug libffi/28036] libffi executable stack (missing .note.GNU-stack on .o files)
       [not found] <bug-28036-4@http.gcc.gnu.org/bugzilla/>
  2021-09-15  9:12 ` [Bug libffi/28036] libffi executable stack (missing .note.GNU-stack on .o files) pinskia at gcc dot gnu.org
  2021-09-15  9:16 ` pinskia at gcc dot gnu.org
@ 2021-09-15  9:23 ` schwab@linux-m68k.org
  2 siblings, 0 replies; 6+ messages in thread
From: schwab@linux-m68k.org @ 2021-09-15  9:23 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=28036

--- Comment #10 from Andreas Schwab <schwab@linux-m68k.org> ---
Note that riscv and nios2 are noexec-stack by default, thus do not need a stack
note.

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

* [Bug libffi/28036] libffi executable stack (missing .note.GNU-stack on .o files)
  2006-06-15  4:40 [Bug libffi/28036] New: " nigelenki at comcast dot net
  2006-06-15  5:29 ` [Bug libffi/28036] " pinskia at gcc dot gnu dot org
  2006-06-15 11:31 ` aph at gcc dot gnu dot org
@ 2006-12-13 15:58 ` debian-gcc at lists dot debian dot org
  2 siblings, 0 replies; 6+ messages in thread
From: debian-gcc at lists dot debian dot org @ 2006-12-13 15:58 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from debian-gcc at lists dot debian dot org  2006-12-13 15:58 -------
patch posted at
http://gcc.gnu.org/ml/gcc-patches/2006-12/msg00948.html


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28036


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

* [Bug libffi/28036] libffi executable stack (missing .note.GNU-stack on .o files)
  2006-06-15  4:40 [Bug libffi/28036] New: " nigelenki at comcast dot net
  2006-06-15  5:29 ` [Bug libffi/28036] " pinskia at gcc dot gnu dot org
@ 2006-06-15 11:31 ` aph at gcc dot gnu dot org
  2006-12-13 15:58 ` debian-gcc at lists dot debian dot org
  2 siblings, 0 replies; 6+ messages in thread
From: aph at gcc dot gnu dot org @ 2006-06-15 11:31 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from aph at gcc dot gnu dot org  2006-06-15 11:23 -------
gcj creates all its trampolines on the heap, so exec stack shouldn't be needed.


-- 

aph at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |aph at gcc dot gnu dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28036


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

* [Bug libffi/28036] libffi executable stack (missing .note.GNU-stack on .o files)
  2006-06-15  4:40 [Bug libffi/28036] New: " nigelenki at comcast dot net
@ 2006-06-15  5:29 ` pinskia at gcc dot gnu dot org
  2006-06-15 11:31 ` aph at gcc dot gnu dot org
  2006-12-13 15:58 ` debian-gcc at lists dot debian dot org
  2 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-06-15  5:29 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pinskia at gcc dot gnu dot org  2006-06-15 04:39 -------
Confirmed.

Or 
#ifdef __ELF__
.section .note.GNU-stack,""
#endif
which is yanked from config/alpha/qrnnd.asm in GCC.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2006-06-15 04:39:54
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28036


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

end of thread, other threads:[~2021-09-15  9:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-28036-4@http.gcc.gnu.org/bugzilla/>
2021-09-15  9:12 ` [Bug libffi/28036] libffi executable stack (missing .note.GNU-stack on .o files) pinskia at gcc dot gnu.org
2021-09-15  9:16 ` pinskia at gcc dot gnu.org
2021-09-15  9:23 ` schwab@linux-m68k.org
2006-06-15  4:40 [Bug libffi/28036] New: " nigelenki at comcast dot net
2006-06-15  5:29 ` [Bug libffi/28036] " pinskia at gcc dot gnu dot org
2006-06-15 11:31 ` aph at gcc dot gnu dot org
2006-12-13 15:58 ` debian-gcc at lists dot debian dot org

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