diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-05-07 09:39:28 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-05-07 09:39:28 -0700 |
commit | bba18ee5e997b39a19003f94f419d7fad10e7f76 (patch) | |
tree | cd01f336d97580dfe9315484dbb1cfa863a243c9 | |
parent | e33ff1fd6641e569ad9fd1f3bb2b4c085fed7f29 (diff) | |
download | txr-bba18ee5e997b39a19003f94f419d7fad10e7f76.tar.gz txr-bba18ee5e997b39a19003f94f419d7fad10e7f76.tar.bz2 txr-bba18ee5e997b39a19003f94f419d7fad10e7f76.zip |
Cygwin and MinGW exception for GNU stack section.
* jmp.S: Don't generate the .note.GNU-stack section
on MinGW or Cygwin either.
-rw-r--r-- | jmp.S | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -245,7 +245,7 @@ DEFUN(jmp_restore) #error port me! #endif -#ifndef __APPLE__ +#if !defined(__APPLE__) && !defined(__MINGW32__) && !defined(__CYGWIN__) /* This is needed so our assembly code doesn't cause the program to require an executable stack! */ .section .note.GNU-stack,"",SIGIL()progbits |