qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH, RFT] mingw32: use ASLR, no-SEH and DEP if available
@ 2010-09-14 20:15 Blue Swirl
  2010-09-29  2:38 ` TeLeMan
  0 siblings, 1 reply; 4+ messages in thread
From: Blue Swirl @ 2010-09-14 20:15 UTC (permalink / raw)
  To: qemu-devel

If the linker supports the flags --dynamicbase, --no-seh,
or --nxcompat, use them.

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
--
This may create compatibility problems with XP. Testers wanted.
No change seen with Wine.
---
 configure |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/configure b/configure
index 4061cb7..26f5465 100755
--- a/configure
+++ b/configure
@@ -2138,6 +2138,15 @@ if test "$solaris" = "no" ; then
     fi
 fi

+# Use ASLR, no-SEH and DEP if available
+if test "$mingw32" = "yes" ; then
+    for flag in --dynamicbase --no-seh --nxcompat; do
+        if $ld --help 2>/dev/null | grep ".$flag" >/dev/null 2>/dev/null ; then
+            LDFLAGS="-Wl,$flag $LDFLAGS"
+        fi
+    done
+fi
+
 confdir=$sysconfdir$confsuffix

 tools=
-- 
1.6.2.4

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

end of thread, other threads:[~2010-09-30  8:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-14 20:15 [Qemu-devel] [PATCH, RFT] mingw32: use ASLR, no-SEH and DEP if available Blue Swirl
2010-09-29  2:38 ` TeLeMan
2010-09-29 17:04   ` Blue Swirl
2010-09-30  8:09     ` [Qemu-devel] " Paolo Bonzini

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 NNTP newsgroup(s).