diff options
author | Lancelot SIX <lancelot.six@amd.com> | 2023-02-06 19:16:14 +0000 |
---|---|---|
committer | Lancelot SIX <lancelot.six@amd.com> | 2023-02-13 09:42:13 +0000 |
commit | 08d8af48e49d59efd5780bb9e360730d4fd149b1 (patch) | |
tree | b1e5de0415e1c9ba1f285af59bf1c963d540959b | |
parent | 3eef3b2c2d85bb0b83a4e902d4444400ddfde0ab (diff) | |
download | gdb-08d8af48e49d59efd5780bb9e360730d4fd149b1.zip gdb-08d8af48e49d59efd5780bb9e360730d4fd149b1.tar.gz gdb-08d8af48e49d59efd5780bb9e360730d4fd149b1.tar.bz2 |
gdb: 'show config' shows --with[out]-amd-dbgapi
Ensure that the "show configuration" command and the "--configuration"
command line switch shows if GDB was built with the AMDGPU support or
not.
This will be used in a later patch in this series.
Approved-By: Simon Marchi <simon.marchi@efficios.com>
-rw-r--r-- | gdb/config.in | 3 | ||||
-rwxr-xr-x | gdb/configure | 3 | ||||
-rw-r--r-- | gdb/configure.ac | 1 | ||||
-rw-r--r-- | gdb/top.c | 10 |
4 files changed, 17 insertions, 0 deletions
diff --git a/gdb/config.in b/gdb/config.in index 7da131e..a602784 100644 --- a/gdb/config.in +++ b/gdb/config.in @@ -84,6 +84,9 @@ */ #undef HAVE_ALLOCA_H +/* Define if amd-dbgapi is being linked in. */ +#undef HAVE_AMD_DBGAPI + /* Define to 1 if you have the `btowc' function. */ #undef HAVE_BTOWC diff --git a/gdb/configure b/gdb/configure index 113b7cf..8b20399 100755 --- a/gdb/configure +++ b/gdb/configure @@ -18252,6 +18252,9 @@ $as_echo "yes" >&6; } fi if test "$has_amd_dbgapi" = "yes"; then + +$as_echo "#define HAVE_AMD_DBGAPI 1" >>confdefs.h + TARGET_OBS="$TARGET_OBS amd-dbgapi-target.o" # If --enable-targets=all was provided, use the list of all files depending diff --git a/gdb/configure.ac b/gdb/configure.ac index 7c7bf88..79eb013 100644 --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -275,6 +275,7 @@ if test "$gdb_require_amd_dbgapi" = true \ [has_amd_dbgapi=yes], [has_amd_dbgapi=no]) if test "$has_amd_dbgapi" = "yes"; then + AC_DEFINE(HAVE_AMD_DBGAPI, 1, [Define if amd-dbgapi is being linked in.]) TARGET_OBS="$TARGET_OBS amd-dbgapi-target.o" # If --enable-targets=all was provided, use the list of all files depending @@ -1629,6 +1629,16 @@ This GDB was configured as follows:\n\ ")); #endif +#if HAVE_AMD_DBGAPI + gdb_printf (stream, _("\ + --with-amd-dbgapi\n\ +")); +#else + gdb_printf (stream, _("\ + --without-amd-dbgapi\n\ +")); +#endif + #if HAVE_SOURCE_HIGHLIGHT gdb_printf (stream, _("\ --enable-source-highlight\n\ |