diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-03-22 22:23:04 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-23 04:14:27 -0400 |
commit | 3649cb065699316bc8cd64b06f273c72f1806323 (patch) | |
tree | cf56f50cedc1a0d897cc271556c067a033d20d67 /sim/mn10300 | |
parent | 80fc77e6c14835462fca0b7adc15655ce2e4bb99 (diff) | |
download | gdb-3649cb065699316bc8cd64b06f273c72f1806323.zip gdb-3649cb065699316bc8cd64b06f273c72f1806323.tar.gz gdb-3649cb065699316bc8cd64b06f273c72f1806323.tar.bz2 |
sim: dv-sockser: add stub funcs when not available
This lets ports assume that the dv-sockser API is always available if
they want to. This way we don't have to do an abort at configure time
and it makes the resulting code a bit simpler.
Diffstat (limited to 'sim/mn10300')
-rw-r--r-- | sim/mn10300/ChangeLog | 5 | ||||
-rwxr-xr-x | sim/mn10300/configure | 6 | ||||
-rw-r--r-- | sim/mn10300/configure.ac | 6 |
3 files changed, 5 insertions, 12 deletions
diff --git a/sim/mn10300/ChangeLog b/sim/mn10300/ChangeLog index bdf8b2c..9a6cc45 100644 --- a/sim/mn10300/ChangeLog +++ b/sim/mn10300/ChangeLog @@ -1,3 +1,8 @@ +2015-03-23 Mike Frysinger <vapier@gentoo.org> + + * configure: Regenerate. + * configure.ac: Delete SIM_DV_SOCKSER_O check. + 2015-03-16 Mike Frysinger <vapier@gentoo.org> * config.in, configure: Regenerate. diff --git a/sim/mn10300/configure b/sim/mn10300/configure index 9cba769..f0a650a 100755 --- a/sim/mn10300/configure +++ b/sim/mn10300/configure @@ -13793,12 +13793,6 @@ fi fi -if test -z "$SIM_DV_SOCKSER_O"; then - as_fn_error "Sorry, but hardware support in this simulator -unconditionally relies on dv-sockser.o which is unavailable for your host. -Please fix this simulator." "$LINENO" 5 -fi - ac_sources="$sim_link_files" ac_dests="$sim_link_links" diff --git a/sim/mn10300/configure.ac b/sim/mn10300/configure.ac index c9050c1..ec29024 100644 --- a/sim/mn10300/configure.ac +++ b/sim/mn10300/configure.ac @@ -19,10 +19,4 @@ AC_CHECK_HEADERS(utime.h) SIM_AC_OPTION_HARDWARE(always,"","") -if test -z "$SIM_DV_SOCKSER_O"; then - AC_MSG_ERROR([Sorry, but hardware support in this simulator -unconditionally relies on dv-sockser.o which is unavailable for your host. -Please fix this simulator.]) -fi - SIM_AC_OUTPUT |