diff options
author | Joel Sherrill <joel.sherrill@oarcorp.com> | 2013-03-23 15:05:07 +0000 |
---|---|---|
committer | Joel Sherrill <joel.sherrill@oarcorp.com> | 2013-03-23 15:05:07 +0000 |
commit | 3be315168191055cbe99916ee4ee45de1ab37a85 (patch) | |
tree | 0d8931d4f4b5e0159d5a05ba450ffafc5f21197b /sim/mips/configure.ac | |
parent | 3fd38161b37ab7ff2096528b3fb68bd5e41db31f (diff) | |
download | gdb-3be315168191055cbe99916ee4ee45de1ab37a85.zip gdb-3be315168191055cbe99916ee4ee45de1ab37a85.tar.gz gdb-3be315168191055cbe99916ee4ee45de1ab37a85.tar.bz2 |
2013-03-23 Joel Sherrill <joel.sherrill@oarcorp.com>
* configure.ac: Address use of dv-sockser.o.
* tconfig.in: Conditionalize use of dv_sockser_install.
* configure: Regenerated.
* config.in: Regenerated.
Diffstat (limited to 'sim/mips/configure.ac')
-rw-r--r-- | sim/mips/configure.ac | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/sim/mips/configure.ac b/sim/mips/configure.ac index 862e2b5..4949ad9 100644 --- a/sim/mips/configure.ac +++ b/sim/mips/configure.ac @@ -419,9 +419,18 @@ case "${target}" in ;; esac SIM_AC_OPTION_HARDWARE($hw_enabled,$hw_devices,$hw_extra_devices) -mips_extra_objs="dv-sockser.o" +mips_extra_objs="$SIM_DV_SOCKSER_O" AC_SUBST(mips_extra_objs) +if test "$sim_hw_p" = yes -a -z "$SIM_DV_SOCKSER_O"; then + case " $sim_hw " in + *" tx3904sio "*) + AC_MSG_ERROR([Sorry, but tx3904sio hardware support is +unavailable for your target. Please use --disable-sim-hardware, or pass a +list of devices to enable that does not include that.]) + esac +fi + # Choose simulator engine case "${target}" in |