mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-17 13:10:12 +08:00
Fail gdb configure if target is not supported.
* configure.ac: Exit if ${gdb_target_obs}" is not set. * configure: Regenerate.
This commit is contained in:
parent
64daa791ab
commit
bf3071347e
@ -1,3 +1,8 @@
|
||||
2010-02-25 Ralf Corsepius <ralf.corsepius@rtems.org>
|
||||
|
||||
* configure.ac: Exit if ${gdb_target_obs}" is not set.
|
||||
* configure: Regenerate.
|
||||
|
||||
2010-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||
|
||||
* symfile.c (addr_info_make_relative): Ignore also missing ".dynbss"
|
||||
|
4
gdb/configure
vendored
4
gdb/configure
vendored
@ -6927,6 +6927,10 @@ do
|
||||
|
||||
. ${srcdir}/configure.tgt
|
||||
|
||||
if test -z "${gdb_target_obs}"; then :
|
||||
as_fn_error "configuration ${targ} is unsupported." "$LINENO" 5
|
||||
fi
|
||||
|
||||
# Target-specific object files
|
||||
for i in ${gdb_target_obs}; do
|
||||
case " $TARGET_OBS " in
|
||||
|
@ -161,6 +161,9 @@ do
|
||||
|
||||
. ${srcdir}/configure.tgt
|
||||
|
||||
AS_IF([test -z "${gdb_target_obs}"],
|
||||
[AC_MSG_ERROR([configuration ${targ} is unsupported.])])
|
||||
|
||||
# Target-specific object files
|
||||
for i in ${gdb_target_obs}; do
|
||||
case " $TARGET_OBS " in
|
||||
|
Loading…
Reference in New Issue
Block a user