diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rwxr-xr-x | gdb/configure | 9 | ||||
-rw-r--r-- | gdb/configure.ac | 11 |
3 files changed, 25 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index dce2e11..0349706 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2020-10-31 Simon Marchi <simon.marchi@polymtl.ca> + + * configure.ac: Use AC_CANONICAL_{BUILD,HOST,TARGET} instead of + AC_CANONICAL_SYSTEM. + * configure: Re-generate. + 2020-10-30 Simon Marchi <simon.marchi@efficios.com> * infrun.h (displaced_debug_printf): New macro. Replace diff --git a/gdb/configure b/gdb/configure index a8942ec..d943424 100755 --- a/gdb/configure +++ b/gdb/configure @@ -5249,6 +5249,15 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. +# Set build, build_cpu, build_vendor and build_os. + + +# Set host, host_cpu, host_vendor, and host_os. + + +# Set target, target_cpu, target_vendor, and target_os. + + test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. diff --git a/gdb/configure.ac b/gdb/configure.ac index 6b4b0fa..1d34d08 100644 --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -33,7 +33,16 @@ AM_PROG_CC_STDC AM_PROG_INSTALL_STRIP AC_CONFIG_AUX_DIR(..) -AC_CANONICAL_SYSTEM + +# Set build, build_cpu, build_vendor and build_os. +AC_CANONICAL_BUILD + +# Set host, host_cpu, host_vendor, and host_os. +AC_CANONICAL_HOST + +# Set target, target_cpu, target_vendor, and target_os. +AC_CANONICAL_TARGET + AC_ARG_PROGRAM # We require a C++11 compiler. Check if one is available, and if |