Remove --enable-multi-ice

gdb's configure script accepts --enable-multi-ice, but the code this
refers to is long gone.  This patch removes the option entirely.

gdb/ChangeLog
2018-09-04  Tom Tromey  <tom@tromey.com>

	* configure: Rebuild.
	* configure.ac: Remove multi-ice code.
This commit is contained in:
Tom Tromey 2018-09-01 10:30:18 -06:00
parent 8dc9fd87b0
commit d53d543682
3 changed files with 5 additions and 30 deletions

View File

@ -1,3 +1,8 @@
2018-09-04 Tom Tromey <tom@tromey.com>
* configure: Rebuild.
* configure.ac: Remove multi-ice code.
2018-09-04 Tom Tromey <tom@tromey.com>
* Makefile.in (GDB_WARN_CFLAGS_NO_DEFS): Remove.

18
gdb/configure vendored
View File

@ -892,7 +892,6 @@ with_tcl
with_tk
with_x
enable_sim
enable_multi_ice
enable_gdbserver
with_babeltrace
with_libbabeltrace_prefix
@ -916,7 +915,6 @@ YFLAGS
XMKMF'
ac_subdirs_all='testsuite
gdbtk
multi-ice
gdbserver'
# Initialize some variables set by options.
@ -1559,7 +1557,6 @@ Optional Features:
enable GDB specific build-time compiler warnings if
gcc is used
--enable-sim link gdb with simulator
--enable-multi-ice build the multi-ice-gdb-server
--enable-gdbserver automatically build gdbserver (yes/no/auto, default
is auto)
@ -17089,21 +17086,6 @@ _ACEOF
fi
# Enable multi-ice-gdb-server.
# Check whether --enable-multi-ice was given.
if test "${enable_multi_ice+set}" = set; then :
enableval=$enable_multi_ice; case $enableval in
yes | no)
;;
*) as_fn_error $? "bad value $enableval for --enable-multi-ice" "$LINENO" 5 ;;
esac
fi
if test "x$enable_multi_ice" = xyes; then
subdirs="$subdirs multi-ice"
fi
# Check whether --enable-gdbserver was given.
if test "${enable_gdbserver+set}" = set; then :
enableval=$enable_gdbserver; case "${enableval}" in

View File

@ -2160,18 +2160,6 @@ if test x"${gdb_osabi}" != x ; then
[Define to the default OS ABI for this configuration.])
fi
# Enable multi-ice-gdb-server.
AC_ARG_ENABLE(multi-ice,
AS_HELP_STRING([--enable-multi-ice], [build the multi-ice-gdb-server]),
[case $enableval in
yes | no)
;;
*) AC_MSG_ERROR([bad value $enableval for --enable-multi-ice]) ;;
esac])
if test "x$enable_multi_ice" = xyes; then
AC_CONFIG_SUBDIRS(multi-ice)
fi
AC_ARG_ENABLE(gdbserver,
AS_HELP_STRING([--enable-gdbserver],
[automatically build gdbserver (yes/no/auto, default is auto)]),