diff options
author | Tom Tromey <tromey@adacore.com> | 2021-09-08 08:20:29 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2022-06-07 09:59:41 -0600 |
commit | bcb9251f029da8dcf360a4f5acfa3b4211c87bb0 (patch) | |
tree | c56395b22b1c8ceb3ef8d010c61a4e14c9ee5295 /gdb/NEWS | |
parent | 8fea1a81c7d9279a6f91e49ebacfb61e0f8ce008 (diff) | |
download | gdb-bcb9251f029da8dcf360a4f5acfa3b4211c87bb0.zip gdb-bcb9251f029da8dcf360a4f5acfa3b4211c87bb0.tar.gz gdb-bcb9251f029da8dcf360a4f5acfa3b4211c87bb0.tar.bz2 |
Allow ASLR to be disabled on Windows
On Windows, it is possible to disable ASLR when creating a process.
This patch adds code to do this, and hooks it up to gdb's existing
disable-randomization feature. Because the Windows documentation
cautions that this isn't available on all versions of Windows, the
CreateProcess wrapper function is updated to make the attempt, and
then fall back to the current approach if it fails.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r-- | gdb/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -71,6 +71,8 @@ maintenance info line-table Python 2. From GDB 13, it will only be possible to build GDB itself with Python 3 support. +* The disable-randomization setting now works on Windows. + * Improved C++ template support GDB now treats functions/types involving C++ templates like it does function |