1999-04-16 01:35:26 +00:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
2011-10-18 00:17:24 +00:00
|
|
|
AC_PREREQ(2.64)dnl
|
1999-04-16 01:35:26 +00:00
|
|
|
AC_INIT(Makefile.in)
|
2011-10-18 00:31:00 +00:00
|
|
|
sinclude(../common/acinclude.m4)
|
1999-04-16 01:35:26 +00:00
|
|
|
|
2011-10-18 00:17:24 +00:00
|
|
|
SIM_AC_COMMON
|
2005-01-14 20:05:48 +00:00
|
|
|
|
1999-04-16 01:35:26 +00:00
|
|
|
SIM_AC_OPTION_ENDIAN(BIG_ENDIAN)
|
|
|
|
SIM_AC_OPTION_ALIGNMENT(STRICT_ALIGNMENT)
|
|
|
|
SIM_AC_OPTION_HOSTENDIAN
|
|
|
|
SIM_AC_OPTION_SCACHE(16384)
|
|
|
|
SIM_AC_OPTION_DEFAULT_MODEL(m32r/d)
|
|
|
|
SIM_AC_OPTION_ENVIRONMENT
|
|
|
|
SIM_AC_OPTION_INLINE()
|
|
|
|
SIM_AC_OPTION_CGEN_MAINT
|
|
|
|
|
2003-12-19 11:44:01 +00:00
|
|
|
case "${target_alias}" in
|
|
|
|
m32r*-linux*)
|
|
|
|
traps_obj=traps-linux.o
|
|
|
|
sim_extra_cflags="-DM32R_LINUX"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
traps_obj=traps.o
|
|
|
|
sim_extra_cflags="-DM32R_ELF"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
AC_SUBST(traps_obj)
|
|
|
|
AC_SUBST(sim_extra_cflags)
|
|
|
|
|
Fix m32r-elf sim, default hardware to off.
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.
2014-08-23 02:53:28 +00:00
|
|
|
SIM_AC_OPTION_HARDWARE(no,"","")
|
2003-12-19 11:44:01 +00:00
|
|
|
|
1999-04-16 01:35:26 +00:00
|
|
|
SIM_AC_OUTPUT
|