diff options
author | Joel Sherrill <joel.sherrill@oarcorp.com> | 2013-03-23 15:07:30 +0000 |
---|---|---|
committer | Joel Sherrill <joel.sherrill@oarcorp.com> | 2013-03-23 15:07:30 +0000 |
commit | 94c63d78f6c4d0a10c1b4e42a16994d1c89998af (patch) | |
tree | bd24382e9c0920631a5401b57a5f52e814515adf /sim/frv/configure.ac | |
parent | fb61c40addb9bccbd2404d69bfac0836ce8a9462 (diff) | |
download | gdb-94c63d78f6c4d0a10c1b4e42a16994d1c89998af.zip gdb-94c63d78f6c4d0a10c1b4e42a16994d1c89998af.tar.gz gdb-94c63d78f6c4d0a10c1b4e42a16994d1c89998af.tar.bz2 |
2013-03-23 Joel Sherrill <joel.sherrill@oarcorp.com>
* configure.ac: Fail if dv-sockser.o not available.
Error when --disable-sim-hardware is specified.
* configure: Regenerated.
Diffstat (limited to 'sim/frv/configure.ac')
-rw-r--r-- | sim/frv/configure.ac | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sim/frv/configure.ac b/sim/frv/configure.ac index 7f2b7ed..68487ab 100644 --- a/sim/frv/configure.ac +++ b/sim/frv/configure.ac @@ -28,4 +28,12 @@ if test x"$silent" != x"yes" && test x"$sim_trapdump" != x""; then fi],[sim_trapdump=""])dnl AC_SUBST(sim_trapdump) +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 |