Fix m32r-elf sim, default hardware to off.
authorHans-Peter Nilsson <hp@bitrange.com>
Sat, 23 Aug 2014 02:53:28 +0000 (04:53 +0200)
committerHans-Peter Nilsson <hp@bitrange.com>
Sat, 23 Aug 2014 02:53:28 +0000 (04:53 +0200)
The situation here is similar to that of the other nearby (previous)
sims fixed; it fails at the dv_sockser_install declaration in
sim/m32r/tconfig.in.  But, as opposed to e.g. frv, this *does* have a
definition of UART_INCHAR_ADDR et al.  It's somewhat tempting to keep
sim-hardware enabled here but, I'm disabling it for the same reasons
as for frv.  Unsurprisingly (as m32r seems to be the template), the
same confusing lines are in sim/m32r/Makefile.in as in
sim/frv/Makefile.in at that time, deleted in 73e76d20.  Again, commit
73e76d20 (for m32r as well as for frv) attempted to move the
non-existing dv-sockser.o use to $(m32r_extra_objs) but missed that
AC_SUBST would only affect @m32r_extra_objs@ and not
$(m32r_extra_objs) per se so nothing happened.  As for frv, I'm
removing the $(m32r_extra_objs) too, to avoid confusion.  Make
check-sim for m32r-elf shows no regressions (5 failures; 100 expected
passes) compared to bf3d9781ec049 (before the recent config.in regen,
after sim-hardware mostly-enabled) and eed23bb4a1 (before the
sim-hardware mostly-enabled; 2013-03-23).

sim/m32r:
* configure.ac: Default simulator hardware to off again.  Remove
dead m32r_extra_objs substitution.
* configure: Regenerate.
* Makefile.in: Remove unused frv_extra_objs.

sim/m32r/ChangeLog
sim/m32r/Makefile.in
sim/m32r/configure
sim/m32r/configure.ac

index 134d8d6ad9ab11027ae0bb9db1b46ea9498ca834..b9494afb229b4b9410a6f9ae75a51a45f93e90f6 100644 (file)
@@ -1,3 +1,10 @@
+2014-08-23  Hans-Peter Nilsson  <hp@axis.com>
+
+       * configure.ac: Default simulator hardware to off again.  Remove
+       dead m32r_extra_objs substitution.
+       * configure: Regenerate.
+       * Makefile.in: Remove unused m32r_extra_objs.
+
 2014-08-19  Alan Modra  <amodra@gmail.com>
 
        * configure: Regenerate.
index 585eadf6cee39b1edc94ac3a0ebabc2136f0c5bb..2841a1b98a66f686d15531a4acefa9e90dda5174 100644 (file)
@@ -38,8 +38,7 @@ SIM_OBJS = \
        $(M32RX_OBJS) \
        $(M32R2_OBJS) \
        $(TRAPS_OBJ) \
-       devices.o \
-       $(m32r_extra_objs)
+       devices.o
 
 # Extra headers included by sim-main.h.
 SIM_EXTRA_DEPS = \
index 27d71fdd3871b53245fee911b0d5dc9f4c7397ca..dea90b750524ed08e0d54acb2091566034524394 100755 (executable)
@@ -601,7 +601,6 @@ ac_includes_default="\
 ac_subst_vars='LTLIBOBJS
 LIBOBJS
 cgen_breaks
-m32r_extra_objs
 SIM_DV_SOCKSER_O
 sim_extra_cflags
 traps_obj
@@ -12378,7 +12377,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12381 "configure"
+#line 12380 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -12484,7 +12483,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12487 "configure"
+#line 12486 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13461,7 +13460,7 @@ fi
 
 
 
-if test x"yes" != x"no"; then
+if test x"no" != x"no"; then
   enable_sim_hardware=yes
 else
   enable_sim_hardware=no
@@ -13492,7 +13491,7 @@ case ${enable_sim_hardware} in
 esac
 
 if test "$sim_hw_p" != yes; then
-  if test "yes" = "always"; then
+  if test "no" = "always"; then
     as_fn_error "Sorry, but this simulator requires that hardware support
 be enabled. Please configure without --disable-hw-support." "$LINENO" 5
   fi
@@ -13575,8 +13574,6 @@ fi
   esac
 fi
 
-m32r_extra_objs="$SIM_DV_SOCKSER_O"
-
 
 
 ac_sources="$sim_link_files"
index 76fed9524d5849d3adb77bc3e618355a91e40bac..d5c728ec06e0c9e5694d5734d760526c3fbe59d8 100644 (file)
@@ -27,8 +27,6 @@ SIM_AC_OPTION_CGEN_MAINT
 AC_SUBST(traps_obj)
 AC_SUBST(sim_extra_cflags)
 
-SIM_AC_OPTION_HARDWARE(yes,"","")
-m32r_extra_objs="$SIM_DV_SOCKSER_O"
-AC_SUBST(m32r_extra_objs)
+SIM_AC_OPTION_HARDWARE(no,"","")
 
 SIM_AC_OUTPUT
This page took 0.036675 seconds and 4 git commands to generate.