diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-01-14 21:20:12 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-01-14 21:20:12 +0000 |
commit | 55235ad79093bbe6b7b797c4a6f14f9da46c1368 (patch) | |
tree | 4ab94b16fed67f5a36c7f17ca17c3ae23a8d7f16 /gdb/linux-tdep.c | |
parent | 4175219298aa7428db899c2f7022146cf8482885 (diff) | |
download | gdb-55235ad79093bbe6b7b797c4a6f14f9da46c1368.zip gdb-55235ad79093bbe6b7b797c4a6f14f9da46c1368.tar.gz gdb-55235ad79093bbe6b7b797c4a6f14f9da46c1368.tar.bz2 |
gdb/
* linux-tdep.c: Remove includes gdbcore.h, observer.h and elf-bfd.h.
(check_is_pie_binary, _initialize_linux_tdep): Remove.
gdb/testsuite/
* gdb.base/pie-support.exp, gdb.base/pie-support.c: Remove.
Diffstat (limited to 'gdb/linux-tdep.c')
-rw-r--r-- | gdb/linux-tdep.c | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/gdb/linux-tdep.c b/gdb/linux-tdep.c index 1717e55..07fd67c 100644 --- a/gdb/linux-tdep.c +++ b/gdb/linux-tdep.c @@ -18,13 +18,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" -#include "gdbcore.h" #include "gdbtypes.h" #include "linux-tdep.h" -#include "observer.h" #include "auxv.h" #include "target.h" -#include "elf-bfd.h" #include "elf/common.h" /* This function is suitable for architectures that don't @@ -155,33 +152,3 @@ linux_has_shared_address_space (void) return target_is_uclinux; } - -/* Observer for the executable_changed event, to check whether the new - exec binary is a PIE (Position Independent Executable) specimen, which - is currently unsupported. */ - -static void -check_is_pie_binary (void) -{ - Elf_Internal_Ehdr *elf_hdr; - - if (!exec_bfd) - return; - else if (bfd_get_flavour (exec_bfd) != bfd_target_elf_flavour) - return; - - if (elf_tdata (exec_bfd)->elf_header->e_type == ET_DYN) - warning (_("\ -The current binary is a PIE (Position Independent Executable), which\n\ -GDB does NOT currently support. Most debugger features will fail if used\n\ -in this session.\n")); -} - -/* Provide a prototype to silence -Wmissing-prototypes. */ -extern initialize_file_ftype _initialize_linux_tdep; - -void -_initialize_linux_tdep (void) -{ - observer_attach_executable_changed (check_is_pie_binary); -} |