mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-11-16 12:34:43 +00:00
Compare commits
90 Commits
binutils-2
...
gdb-13.1-r
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4f3e26ac6e | ||
|
|
9761733ec7 | ||
|
|
7f4307436f | ||
|
|
c7c263ea9c | ||
|
|
ba1572b512 | ||
|
|
34c8bf99b6 | ||
|
|
53622d843b | ||
|
|
3053fcf3d1 | ||
|
|
c594b6f7d5 | ||
|
|
6e92595dc2 | ||
|
|
62f2dfcc74 | ||
|
|
4b69f04bd8 | ||
|
|
a0f9e84579 | ||
|
|
8364dca17d | ||
|
|
257660c3de | ||
|
|
e045e0fa77 | ||
|
|
5f157ecd60 | ||
|
|
9a7d273178 | ||
|
|
3199e96dae | ||
|
|
39d4bba77d | ||
|
|
83f1f651c7 | ||
|
|
16c45b9ab6 | ||
|
|
a27bbd9878 | ||
|
|
cc49130bda | ||
|
|
7b48b6d70a | ||
|
|
59f9d0c5cb | ||
|
|
7944d45790 | ||
|
|
2d36c9404e | ||
|
|
ccb99ed2cb | ||
|
|
7ba1fc5a18 | ||
|
|
f36a570ad4 | ||
|
|
ce6dea4c4c | ||
|
|
c6a722b3c3 | ||
|
|
0dd4a8af81 | ||
|
|
e0f4beb3a0 | ||
|
|
12dd2ec62f | ||
|
|
b07439230b | ||
|
|
a0ab91c141 | ||
|
|
7f2778a363 | ||
|
|
378135c586 | ||
|
|
80e3c0c758 | ||
|
|
6008f313d3 | ||
|
|
ca1b45b87c | ||
|
|
83d3152401 | ||
|
|
947b698401 | ||
|
|
6107546876 | ||
|
|
2ec9694617 | ||
|
|
5d53fb99d5 | ||
|
|
e6a3c6ab33 | ||
|
|
b6762b3d7c | ||
|
|
d54a65f427 | ||
|
|
3cc048fc6b | ||
|
|
86ac3f1401 | ||
|
|
95d3c7776d | ||
|
|
5fcfbade4e | ||
|
|
02ccd8cfbc | ||
|
|
15c994179b | ||
|
|
82a83b0f41 | ||
|
|
514dead4d8 | ||
|
|
01b95e43f8 | ||
|
|
8c189ebcd2 | ||
|
|
322fde46dc | ||
|
|
44916dc850 | ||
|
|
08bdba1418 | ||
|
|
33214e7a6d | ||
|
|
a943a2644d | ||
|
|
a493ca9ec0 | ||
|
|
1806fe04b0 | ||
|
|
47004354ff | ||
|
|
41be9b6a6d | ||
|
|
4102b8f7a8 | ||
|
|
c3f45d1e9a | ||
|
|
04a82ddcb1 | ||
|
|
ecb7214fc1 | ||
|
|
bb9bdfb840 | ||
|
|
e69618fb98 | ||
|
|
aad9e4797f | ||
|
|
204c8ed14d | ||
|
|
661169d7b5 | ||
|
|
08081297f6 | ||
|
|
2d71df1e2f | ||
|
|
cadab61a48 | ||
|
|
4547ad37f8 | ||
|
|
467cc79cd2 | ||
|
|
a444d5309d | ||
|
|
a47dacc45b | ||
|
|
e110f63216 | ||
|
|
8897f1690e | ||
|
|
006808a9a7 | ||
|
|
117d18d2fc |
11
bfd/bfdio.c
11
bfd/bfdio.c
@@ -31,11 +31,6 @@
|
|||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__MINGW64_VERSION_MAJOR) && __MINGW64_VERSION_MAJOR < 9
|
|
||||||
/* This prototype was added to locale.h in version 9.0 of MinGW-w64. */
|
|
||||||
_CRTIMP unsigned int __cdecl ___lc_codepage_func(void);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef S_IXUSR
|
#ifndef S_IXUSR
|
||||||
#define S_IXUSR 0100 /* Execute by owner. */
|
#define S_IXUSR 0100 /* Execute by owner. */
|
||||||
#endif
|
#endif
|
||||||
@@ -127,7 +122,11 @@ _bfd_real_fopen (const char *filename, const char *modes)
|
|||||||
const wchar_t prefix[] = L"\\\\?\\";
|
const wchar_t prefix[] = L"\\\\?\\";
|
||||||
const size_t partPathLen = strlen (filename) + 1;
|
const size_t partPathLen = strlen (filename) + 1;
|
||||||
#ifdef __MINGW32__
|
#ifdef __MINGW32__
|
||||||
const unsigned int cp = ___lc_codepage_func();
|
#if !HAVE_DECL____LC_CODEPAGE_FUNC
|
||||||
|
/* This prototype was added to locale.h in version 9.0 of MinGW-w64. */
|
||||||
|
_CRTIMP unsigned int __cdecl ___lc_codepage_func (void);
|
||||||
|
#endif
|
||||||
|
const unsigned int cp = ___lc_codepage_func ();
|
||||||
#else
|
#else
|
||||||
const unsigned int cp = CP_UTF8;
|
const unsigned int cp = CP_UTF8;
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -64,6 +64,10 @@
|
|||||||
don't. */
|
don't. */
|
||||||
#undef HAVE_DECL_VASPRINTF
|
#undef HAVE_DECL_VASPRINTF
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `___lc_codepage_func', and to 0
|
||||||
|
if you don't. */
|
||||||
|
#undef HAVE_DECL____LC_CODEPAGE_FUNC
|
||||||
|
|
||||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||||
#undef HAVE_DLFCN_H
|
#undef HAVE_DLFCN_H
|
||||||
|
|
||||||
|
|||||||
12
bfd/configure
vendored
12
bfd/configure
vendored
@@ -13006,6 +13006,18 @@ cat >>confdefs.h <<_ACEOF
|
|||||||
#define HAVE_DECL_STRNLEN $ac_have_decl
|
#define HAVE_DECL_STRNLEN $ac_have_decl
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
||||||
|
ac_fn_c_check_decl "$LINENO" "___lc_codepage_func" "ac_cv_have_decl____lc_codepage_func" "#include <locale.h>
|
||||||
|
"
|
||||||
|
if test "x$ac_cv_have_decl____lc_codepage_func" = xyes; then :
|
||||||
|
ac_have_decl=1
|
||||||
|
else
|
||||||
|
ac_have_decl=0
|
||||||
|
fi
|
||||||
|
|
||||||
|
cat >>confdefs.h <<_ACEOF
|
||||||
|
#define HAVE_DECL____LC_CODEPAGE_FUNC $ac_have_decl
|
||||||
|
_ACEOF
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
case "${host}" in
|
case "${host}" in
|
||||||
|
|||||||
@@ -227,6 +227,7 @@ AC_CHECK_FUNCS(fcntl fdopen fileno fls getgid getpagesize getrlimit getuid \
|
|||||||
sysconf)
|
sysconf)
|
||||||
|
|
||||||
AC_CHECK_DECLS([basename, ffs, stpcpy, asprintf, vasprintf, strnlen])
|
AC_CHECK_DECLS([basename, ffs, stpcpy, asprintf, vasprintf, strnlen])
|
||||||
|
AC_CHECK_DECLS([___lc_codepage_func], [], [], [[#include <locale.h>]])
|
||||||
|
|
||||||
BFD_BINARY_FOPEN
|
BFD_BINARY_FOPEN
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
# Controls whether to enable development-mode features by default.
|
# Controls whether to enable development-mode features by default.
|
||||||
development=true
|
development=false
|
||||||
|
|
||||||
# Indicate whether this is a release branch.
|
# Indicate whether this is a release branch.
|
||||||
experimental=true
|
experimental=true
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
In releases, the date is not included in either version strings or
|
In releases, the date is not included in either version strings or
|
||||||
sonames. */
|
sonames. */
|
||||||
#define BFD_VERSION_DATE 20221218
|
#define BFD_VERSION_DATE 20230219
|
||||||
#define BFD_VERSION @bfd_version@
|
#define BFD_VERSION @bfd_version@
|
||||||
#define BFD_VERSION_STRING @bfd_version_package@ @bfd_version_string@
|
#define BFD_VERSION_STRING @bfd_version_package@ @bfd_version_string@
|
||||||
#define REPORT_BUGS_TO @report_bugs_to@
|
#define REPORT_BUGS_TO @report_bugs_to@
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
;; Emacs settings.
|
;; Emacs settings.
|
||||||
;; Copyright (C) 2012-2022 Free Software Foundation, Inc.
|
;; Copyright (C) 2012-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; This program is free software; you can redistribute it and/or modify
|
||||||
;; it under the terms of the GNU General Public License as published by
|
;; it under the terms of the GNU General Public License as published by
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# Copyright (C) 1989-2022 Free Software Foundation, Inc.
|
# Copyright (C) 1989-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
# This file is part of GDB.
|
# This file is part of GDB.
|
||||||
|
|
||||||
@@ -2020,7 +2020,7 @@ install-only: $(CONFIG_INSTALL)
|
|||||||
true ; \
|
true ; \
|
||||||
fi ; \
|
fi ; \
|
||||||
$(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
|
$(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
|
||||||
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) \
|
$(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) \
|
||||||
gdb$(EXEEXT) \
|
gdb$(EXEEXT) \
|
||||||
$(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
|
$(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
|
||||||
$(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(includedir)/gdb ; \
|
$(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(includedir)/gdb ; \
|
||||||
@@ -2533,7 +2533,7 @@ install-gdbtk:
|
|||||||
true ; \
|
true ; \
|
||||||
fi ; \
|
fi ; \
|
||||||
$(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir); \
|
$(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir); \
|
||||||
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) \
|
$(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) \
|
||||||
insight$(EXEEXT) \
|
insight$(EXEEXT) \
|
||||||
$(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
|
$(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
|
||||||
$(SHELL) $(srcdir)/../mkinstalldirs \
|
$(SHELL) $(srcdir)/../mkinstalldirs \
|
||||||
|
|||||||
2
gdb/NEWS
2
gdb/NEWS
@@ -1,7 +1,7 @@
|
|||||||
What has changed in GDB?
|
What has changed in GDB?
|
||||||
(Organized release by release)
|
(Organized release by release)
|
||||||
|
|
||||||
*** Changes since GDB 12
|
*** Changes in GDB 13
|
||||||
|
|
||||||
* MI version 1 is deprecated, and will be removed in GDB 14.
|
* MI version 1 is deprecated, and will be removed in GDB 14.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1999-2022 Free Software Foundation, Inc.
|
/* Copyright (C) 1999-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1999-2022 Free Software Foundation, Inc.
|
/* Copyright (C) 1999-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2019-2022 Free Software Foundation, Inc.
|
/* Copyright (C) 2019-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2019-2022 Free Software Foundation, Inc.
|
/* Copyright (C) 2019-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Native-dependent code for FreeBSD/aarch64.
|
/* Native-dependent code for FreeBSD/aarch64.
|
||||||
|
|
||||||
Copyright (C) 2017-2022 Free Software Foundation, Inc.
|
Copyright (C) 2017-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target-dependent code for FreeBSD/aarch64.
|
/* Target-dependent code for FreeBSD/aarch64.
|
||||||
|
|
||||||
Copyright (C) 2017-2022 Free Software Foundation, Inc.
|
Copyright (C) 2017-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* FreeBSD/aarch64 target support, prototypes.
|
/* FreeBSD/aarch64 target support, prototypes.
|
||||||
|
|
||||||
Copyright (C) 2017-2022 Free Software Foundation, Inc.
|
Copyright (C) 2017-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Native-dependent code for GNU/Linux AArch64.
|
/* Native-dependent code for GNU/Linux AArch64.
|
||||||
|
|
||||||
Copyright (C) 2011-2022 Free Software Foundation, Inc.
|
Copyright (C) 2011-2023 Free Software Foundation, Inc.
|
||||||
Contributed by ARM Ltd.
|
Contributed by ARM Ltd.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target-dependent code for GNU/Linux AArch64.
|
/* Target-dependent code for GNU/Linux AArch64.
|
||||||
|
|
||||||
Copyright (C) 2009-2022 Free Software Foundation, Inc.
|
Copyright (C) 2009-2023 Free Software Foundation, Inc.
|
||||||
Contributed by ARM Ltd.
|
Contributed by ARM Ltd.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* GNU/Linux on AArch64 target support, prototypes.
|
/* GNU/Linux on AArch64 target support, prototypes.
|
||||||
|
|
||||||
Copyright (C) 2012-2022 Free Software Foundation, Inc.
|
Copyright (C) 2012-2023 Free Software Foundation, Inc.
|
||||||
Contributed by ARM Ltd.
|
Contributed by ARM Ltd.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Native-dependent code for AArch64.
|
/* Native-dependent code for AArch64.
|
||||||
|
|
||||||
Copyright (C) 2011-2022 Free Software Foundation, Inc.
|
Copyright (C) 2011-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Native-dependent code for AArch64.
|
/* Native-dependent code for AArch64.
|
||||||
|
|
||||||
Copyright (C) 2011-2022 Free Software Foundation, Inc.
|
Copyright (C) 2011-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target-dependent code for Newlib AArch64.
|
/* Target-dependent code for Newlib AArch64.
|
||||||
|
|
||||||
Copyright (C) 2011-2022 Free Software Foundation, Inc.
|
Copyright (C) 2011-2023 Free Software Foundation, Inc.
|
||||||
Contributed by ARM Ltd.
|
Contributed by ARM Ltd.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Ravenscar Aarch64 target support.
|
/* Ravenscar Aarch64 target support.
|
||||||
|
|
||||||
Copyright (C) 2017-2022 Free Software Foundation, Inc.
|
Copyright (C) 2017-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Ravenscar Aarch64 target support.
|
/* Ravenscar Aarch64 target support.
|
||||||
|
|
||||||
Copyright (C) 2017-2022 Free Software Foundation, Inc.
|
Copyright (C) 2017-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Common target dependent code for GDB on AArch64 systems.
|
/* Common target dependent code for GDB on AArch64 systems.
|
||||||
|
|
||||||
Copyright (C) 2009-2022 Free Software Foundation, Inc.
|
Copyright (C) 2009-2023 Free Software Foundation, Inc.
|
||||||
Contributed by ARM Ltd.
|
Contributed by ARM Ltd.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Common target dependent code for GDB on AArch64 systems.
|
/* Common target dependent code for GDB on AArch64 systems.
|
||||||
|
|
||||||
Copyright (C) 2009-2022 Free Software Foundation, Inc.
|
Copyright (C) 2009-2023 Free Software Foundation, Inc.
|
||||||
Contributed by ARM Ltd.
|
Contributed by ARM Ltd.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# Copyright (C) 1992-2022 Free Software Foundation, Inc.
|
# Copyright (C) 1992-2023 Free Software Foundation, Inc.
|
||||||
#
|
#
|
||||||
# This file is free software; the Free Software Foundation gives
|
# This file is free software; the Free Software Foundation gives
|
||||||
# unlimited permission to copy and/or distribute it, with or without
|
# unlimited permission to copy and/or distribute it, with or without
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
/* UTF-32 case-folding for GDB
|
/* UTF-32 case-folding for GDB
|
||||||
|
|
||||||
Copyright (C) 2022 Free Software Foundation, Inc.
|
Copyright (C) 2022-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Definitions for Ada expressions
|
/* Definitions for Ada expressions
|
||||||
|
|
||||||
Copyright (C) 2020-2022 Free Software Foundation, Inc.
|
Copyright (C) 2020-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/* YACC parser for Ada expressions, for GDB.
|
/* YACC parser for Ada expressions, for GDB.
|
||||||
Copyright (C) 1986-2022 Free Software Foundation, Inc.
|
Copyright (C) 1986-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Ada language support routines for GDB, the GNU debugger.
|
/* Ada language support routines for GDB, the GNU debugger.
|
||||||
|
|
||||||
Copyright (C) 1992-2022 Free Software Foundation, Inc.
|
Copyright (C) 1992-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Ada language support definitions for GDB, the GNU debugger.
|
/* Ada language support definitions for GDB, the GNU debugger.
|
||||||
|
|
||||||
Copyright (C) 1992-2022 Free Software Foundation, Inc.
|
Copyright (C) 1992-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/* FLEX lexer for Ada expressions, for GDB. -*- c++ -*-
|
/* FLEX lexer for Ada expressions, for GDB. -*- c++ -*-
|
||||||
Copyright (C) 1994-2022 Free Software Foundation, Inc.
|
Copyright (C) 1994-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1992-2022 Free Software Foundation, Inc.
|
/* Copyright (C) 1992-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/* Support for printing Ada types for GDB, the GNU debugger.
|
/* Support for printing Ada types for GDB, the GNU debugger.
|
||||||
Copyright (C) 1986-2022 Free Software Foundation, Inc.
|
Copyright (C) 1986-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
# Generate Unicode case-folding table for Ada.
|
# Generate Unicode case-folding table for Ada.
|
||||||
|
|
||||||
# Copyright (C) 2022 Free Software Foundation, Inc.
|
# Copyright (C) 2022-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
# This file is part of GDB.
|
# This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Support for printing Ada values for GDB, the GNU debugger.
|
/* Support for printing Ada values for GDB, the GNU debugger.
|
||||||
|
|
||||||
Copyright (C) 1986-2022 Free Software Foundation, Inc.
|
Copyright (C) 1986-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* varobj support for Ada.
|
/* varobj support for Ada.
|
||||||
|
|
||||||
Copyright (C) 2012-2022 Free Software Foundation, Inc.
|
Copyright (C) 2012-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* addrmap.c --- implementation of address map data structure.
|
/* addrmap.c --- implementation of address map data structure.
|
||||||
|
|
||||||
Copyright (C) 2007-2022 Free Software Foundation, Inc.
|
Copyright (C) 2007-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* addrmap.h --- interface to address map data structure.
|
/* addrmap.h --- interface to address map data structure.
|
||||||
|
|
||||||
Copyright (C) 2007-2022 Free Software Foundation, Inc.
|
Copyright (C) 2007-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2012-2022 Free Software Foundation, Inc.
|
/* Copyright (C) 2012-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Low level interface for debugging AIX 4.3+ pthreads.
|
/* Low level interface for debugging AIX 4.3+ pthreads.
|
||||||
|
|
||||||
Copyright (C) 1999-2022 Free Software Foundation, Inc.
|
Copyright (C) 1999-2023 Free Software Foundation, Inc.
|
||||||
Written by Nick Duffek <nsd@redhat.com>.
|
Written by Nick Duffek <nsd@redhat.com>.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Shared allocation functions for GDB, the GNU debugger.
|
/* Shared allocation functions for GDB, the GNU debugger.
|
||||||
|
|
||||||
Copyright (C) 1986-2022 Free Software Foundation, Inc.
|
Copyright (C) 1986-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Native-dependent code for Alpha BSD's.
|
/* Native-dependent code for Alpha BSD's.
|
||||||
|
|
||||||
Copyright (C) 2000-2022 Free Software Foundation, Inc.
|
Copyright (C) 2000-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Common target dependent code Alpha BSD's.
|
/* Common target dependent code Alpha BSD's.
|
||||||
|
|
||||||
Copyright (C) 2000-2022 Free Software Foundation, Inc.
|
Copyright (C) 2000-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Common target dependent code for Alpha BSD's.
|
/* Common target dependent code for Alpha BSD's.
|
||||||
|
|
||||||
Copyright (C) 2002-2022 Free Software Foundation, Inc.
|
Copyright (C) 2002-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/* Low level Alpha GNU/Linux interface, for GDB when running native.
|
/* Low level Alpha GNU/Linux interface, for GDB when running native.
|
||||||
Copyright (C) 2005-2022 Free Software Foundation, Inc.
|
Copyright (C) 2005-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/* Target-dependent code for GNU/Linux on Alpha.
|
/* Target-dependent code for GNU/Linux on Alpha.
|
||||||
Copyright (C) 2002-2022 Free Software Foundation, Inc.
|
Copyright (C) 2002-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/* Target-dependent mdebug code for the ALPHA architecture.
|
/* Target-dependent mdebug code for the ALPHA architecture.
|
||||||
Copyright (C) 1993-2022 Free Software Foundation, Inc.
|
Copyright (C) 1993-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target-dependent code for NetBSD/alpha.
|
/* Target-dependent code for NetBSD/alpha.
|
||||||
|
|
||||||
Copyright (C) 2002-2022 Free Software Foundation, Inc.
|
Copyright (C) 2002-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Contributed by Wasabi Systems, Inc.
|
Contributed by Wasabi Systems, Inc.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target-dependent code for OpenBSD/alpha.
|
/* Target-dependent code for OpenBSD/alpha.
|
||||||
|
|
||||||
Copyright (C) 2006-2022 Free Software Foundation, Inc.
|
Copyright (C) 2006-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target-dependent code for the ALPHA architecture, for GDB, the GNU Debugger.
|
/* Target-dependent code for the ALPHA architecture, for GDB, the GNU Debugger.
|
||||||
|
|
||||||
Copyright (C) 1993-2022 Free Software Foundation, Inc.
|
Copyright (C) 1993-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/* Common target dependent code for GDB on Alpha systems.
|
/* Common target dependent code for GDB on Alpha systems.
|
||||||
Copyright (C) 1993-2022 Free Software Foundation, Inc.
|
Copyright (C) 1993-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Native-dependent code for AMD64 BSD's.
|
/* Native-dependent code for AMD64 BSD's.
|
||||||
|
|
||||||
Copyright (C) 2003-2022 Free Software Foundation, Inc.
|
Copyright (C) 2003-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Native-dependent code for modern AMD64 BSD's.
|
/* Native-dependent code for modern AMD64 BSD's.
|
||||||
|
|
||||||
Copyright (C) 2018-2022 Free Software Foundation, Inc.
|
Copyright (C) 2018-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/* Darwin support for GDB, the GNU debugger.
|
/* Darwin support for GDB, the GNU debugger.
|
||||||
Copyright (C) 1997-2022 Free Software Foundation, Inc.
|
Copyright (C) 1997-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Contributed by Apple Computer, Inc.
|
Contributed by Apple Computer, Inc.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target-dependent code for Darwin x86-64.
|
/* Target-dependent code for Darwin x86-64.
|
||||||
|
|
||||||
Copyright (C) 2009-2022 Free Software Foundation, Inc.
|
Copyright (C) 2009-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target-dependent code for DICOS running on x86-64's, for GDB.
|
/* Target-dependent code for DICOS running on x86-64's, for GDB.
|
||||||
|
|
||||||
Copyright (C) 2009-2022 Free Software Foundation, Inc.
|
Copyright (C) 2009-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Native-dependent code for FreeBSD/amd64.
|
/* Native-dependent code for FreeBSD/amd64.
|
||||||
|
|
||||||
Copyright (C) 2003-2022 Free Software Foundation, Inc.
|
Copyright (C) 2003-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target-dependent code for FreeBSD/amd64.
|
/* Target-dependent code for FreeBSD/amd64.
|
||||||
|
|
||||||
Copyright (C) 2003-2022 Free Software Foundation, Inc.
|
Copyright (C) 2003-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* FreeBSD/amd64 target support, prototypes.
|
/* FreeBSD/amd64 target support, prototypes.
|
||||||
|
|
||||||
Copyright (C) 2021 Free Software Foundation, Inc.
|
Copyright (C) 2021-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Native-dependent code for GNU/Linux x86-64.
|
/* Native-dependent code for GNU/Linux x86-64.
|
||||||
|
|
||||||
Copyright (C) 2001-2022 Free Software Foundation, Inc.
|
Copyright (C) 2001-2023 Free Software Foundation, Inc.
|
||||||
Contributed by Jiri Smid, SuSE Labs.
|
Contributed by Jiri Smid, SuSE Labs.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target-dependent code for GNU/Linux x86-64.
|
/* Target-dependent code for GNU/Linux x86-64.
|
||||||
|
|
||||||
Copyright (C) 2001-2022 Free Software Foundation, Inc.
|
Copyright (C) 2001-2023 Free Software Foundation, Inc.
|
||||||
Contributed by Jiri Smid, SuSE Labs.
|
Contributed by Jiri Smid, SuSE Labs.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target-dependent code for GNU/Linux AMD64.
|
/* Target-dependent code for GNU/Linux AMD64.
|
||||||
|
|
||||||
Copyright (C) 2006-2022 Free Software Foundation, Inc.
|
Copyright (C) 2006-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Native-dependent code for AMD64.
|
/* Native-dependent code for AMD64.
|
||||||
|
|
||||||
Copyright (C) 2003-2022 Free Software Foundation, Inc.
|
Copyright (C) 2003-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Native-dependent code for AMD64.
|
/* Native-dependent code for AMD64.
|
||||||
|
|
||||||
Copyright (C) 2003-2022 Free Software Foundation, Inc.
|
Copyright (C) 2003-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Native-dependent code for NetBSD/amd64.
|
/* Native-dependent code for NetBSD/amd64.
|
||||||
|
|
||||||
Copyright (C) 2003-2022 Free Software Foundation, Inc.
|
Copyright (C) 2003-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target-dependent code for NetBSD/amd64.
|
/* Target-dependent code for NetBSD/amd64.
|
||||||
|
|
||||||
Copyright (C) 2003-2022 Free Software Foundation, Inc.
|
Copyright (C) 2003-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Native-dependent code for OpenBSD/amd64.
|
/* Native-dependent code for OpenBSD/amd64.
|
||||||
|
|
||||||
Copyright (C) 2003-2022 Free Software Foundation, Inc.
|
Copyright (C) 2003-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target-dependent code for OpenBSD/amd64.
|
/* Target-dependent code for OpenBSD/amd64.
|
||||||
|
|
||||||
Copyright (C) 2003-2022 Free Software Foundation, Inc.
|
Copyright (C) 2003-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Ravenscar x86-64 target support.
|
/* Ravenscar x86-64 target support.
|
||||||
|
|
||||||
Copyright (C) 2020-2022 Free Software Foundation, Inc.
|
Copyright (C) 2020-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Ravenscar x86-64 target support.
|
/* Ravenscar x86-64 target support.
|
||||||
|
|
||||||
Copyright (C) 2020-2022 Free Software Foundation, Inc.
|
Copyright (C) 2020-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target-dependent code for AMD64 Solaris.
|
/* Target-dependent code for AMD64 Solaris.
|
||||||
|
|
||||||
Copyright (C) 2001-2022 Free Software Foundation, Inc.
|
Copyright (C) 2001-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Contributed by Joseph Myers, CodeSourcery, LLC.
|
Contributed by Joseph Myers, CodeSourcery, LLC.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target-dependent code for AMD64.
|
/* Target-dependent code for AMD64.
|
||||||
|
|
||||||
Copyright (C) 2001-2022 Free Software Foundation, Inc.
|
Copyright (C) 2001-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Contributed by Jiri Smid, SuSE Labs.
|
Contributed by Jiri Smid, SuSE Labs.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target-dependent definitions for AMD64.
|
/* Target-dependent definitions for AMD64.
|
||||||
|
|
||||||
Copyright (C) 2001-2022 Free Software Foundation, Inc.
|
Copyright (C) 2001-2023 Free Software Foundation, Inc.
|
||||||
Contributed by Jiri Smid, SuSE Labs.
|
Contributed by Jiri Smid, SuSE Labs.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2008-2022 Free Software Foundation, Inc.
|
/* Copyright (C) 2008-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2009-2022 Free Software Foundation, Inc.
|
/* Copyright (C) 2009-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/* Annotation routines for GDB.
|
/* Annotation routines for GDB.
|
||||||
Copyright (C) 1986-2022 Free Software Foundation, Inc.
|
Copyright (C) 1986-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/* Annotation routines for GDB.
|
/* Annotation routines for GDB.
|
||||||
Copyright (C) 1986-2022 Free Software Foundation, Inc.
|
Copyright (C) 1986-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Native-dependent code for GNU/Linux ARC.
|
/* Native-dependent code for GNU/Linux ARC.
|
||||||
|
|
||||||
Copyright 2020-2022 Free Software Foundation, Inc.
|
Copyright 2020-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target dependent code for GNU/Linux ARC.
|
/* Target dependent code for GNU/Linux ARC.
|
||||||
|
|
||||||
Copyright 2020-2022 Free Software Foundation, Inc.
|
Copyright 2020-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target dependent code for GNU/Linux ARC.
|
/* Target dependent code for GNU/Linux ARC.
|
||||||
|
|
||||||
Copyright 2020-2022 Free Software Foundation, Inc.
|
Copyright 2020-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target-dependent code for Newlib ARC.
|
/* Target-dependent code for Newlib ARC.
|
||||||
|
|
||||||
Copyright (C) 2016-2022 Free Software Foundation, Inc.
|
Copyright (C) 2016-2023 Free Software Foundation, Inc.
|
||||||
Contributed by Synopsys Inc.
|
Contributed by Synopsys Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target dependent code for ARC architecture, for GDB.
|
/* Target dependent code for ARC architecture, for GDB.
|
||||||
|
|
||||||
Copyright 2005-2022 Free Software Foundation, Inc.
|
Copyright 2005-2023 Free Software Foundation, Inc.
|
||||||
Contributed by Synopsys Inc.
|
Contributed by Synopsys Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Target dependent code for ARC architecture, for GDB.
|
/* Target dependent code for ARC architecture, for GDB.
|
||||||
|
|
||||||
Copyright 2005-2022 Free Software Foundation, Inc.
|
Copyright 2005-2023 Free Software Foundation, Inc.
|
||||||
Contributed by Synopsys Inc.
|
Contributed by Synopsys Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Dynamic architecture support for GDB, the GNU debugger.
|
/* Dynamic architecture support for GDB, the GNU debugger.
|
||||||
|
|
||||||
Copyright (C) 1998-2022 Free Software Foundation, Inc.
|
Copyright (C) 1998-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Dynamic architecture support for GDB, the GNU debugger.
|
/* Dynamic architecture support for GDB, the GNU debugger.
|
||||||
|
|
||||||
Copyright (C) 1998-2022 Free Software Foundation, Inc.
|
Copyright (C) 1998-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2019-2022 Free Software Foundation, Inc.
|
/* Copyright (C) 2019-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2019-2022 Free Software Foundation, Inc.
|
/* Copyright (C) 2019-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2009-2022 Free Software Foundation, Inc.
|
/* Copyright (C) 2009-2023 Free Software Foundation, Inc.
|
||||||
Contributed by ARM Ltd.
|
Contributed by ARM Ltd.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2009-2022 Free Software Foundation, Inc.
|
/* Copyright (C) 2009-2023 Free Software Foundation, Inc.
|
||||||
Contributed by ARM Ltd.
|
Contributed by ARM Ltd.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Common Linux target-dependent functionality for AArch64 MTE
|
/* Common Linux target-dependent functionality for AArch64 MTE
|
||||||
|
|
||||||
Copyright (C) 2021-2022 Free Software Foundation, Inc.
|
Copyright (C) 2021-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Common Linux target-dependent definitions for AArch64 MTE
|
/* Common Linux target-dependent definitions for AArch64 MTE
|
||||||
|
|
||||||
Copyright (C) 2021-2022 Free Software Foundation, Inc.
|
Copyright (C) 2021-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2017-2022 Free Software Foundation, Inc.
|
/* Copyright (C) 2017-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Common target-dependent functionality for AArch64.
|
/* Common target-dependent functionality for AArch64.
|
||||||
|
|
||||||
Copyright (C) 2017-2022 Free Software Foundation, Inc.
|
Copyright (C) 2017-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2017-2022 Free Software Foundation, Inc.
|
/* Copyright (C) 2017-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2017-2022 Free Software Foundation, Inc.
|
/* Copyright (C) 2017-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2017-2022 Free Software Foundation, Inc.
|
/* Copyright (C) 2017-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2017-2022 Free Software Foundation, Inc.
|
/* Copyright (C) 2017-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Common code for ARM software single stepping support.
|
/* Common code for ARM software single stepping support.
|
||||||
|
|
||||||
Copyright (C) 1988-2022 Free Software Foundation, Inc.
|
Copyright (C) 1988-2023 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user