mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-07 16:43:36 +08:00
34cf511206
The cris port was using the device framework to handle two addresses when the --cris-900000xx flag was specified. That can be implemented using the newer hardware framework instead which allows us to drop the device logic entirely, as well as delete the tconfig.h file. Basically we create a new cris_900000xx device model and move the read logic out of devices.c and into that. The rest of the devices logic was callback to the hardware framework already.
24 lines
609 B
Plaintext
24 lines
609 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
AC_PREREQ(2.64)dnl
|
|
AC_INIT(Makefile.in)
|
|
sinclude(../common/acinclude.m4)
|
|
|
|
SIM_AC_COMMON
|
|
|
|
# For dv-rv and rvdummy.
|
|
AC_CHECK_HEADERS(sys/socket.h sys/select.h limits.h sys/param.h)
|
|
|
|
SIM_AC_OPTION_ALIGNMENT(NONSTRICT_ALIGNMENT)
|
|
SIM_AC_OPTION_HOSTENDIAN
|
|
SIM_AC_OPTION_SCACHE(16384)
|
|
SIM_AC_OPTION_WARNINGS
|
|
SIM_AC_OPTION_HARDWARE(yes,,rv cris cris_900000xx)
|
|
|
|
# The default model shouldn't matter as long as there's a BFD.
|
|
SIM_AC_OPTION_DEFAULT_MODEL(crisv32)
|
|
SIM_AC_OPTION_ENVIRONMENT
|
|
SIM_AC_OPTION_INLINE()
|
|
SIM_AC_OPTION_CGEN_MAINT
|
|
|
|
SIM_AC_OUTPUT
|