mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
760b3e8bc9
This file is quite large and is getting unmanageable. Split it apart to follow aclocal best practices by putting one-macro-per-file. There shouldn't be any real functional changes here as can be seen in the configure script regens.
30 lines
641 B
Plaintext
30 lines
641 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
AC_INIT(Makefile.in)
|
|
AC_CONFIG_MACRO_DIRS([../m4 ../.. ../../config])
|
|
|
|
SIM_AC_COMMON
|
|
|
|
SIM_AC_OPTION_ENDIAN(BIG)
|
|
SIM_AC_OPTION_ALIGNMENT(STRICT_ALIGNMENT)
|
|
SIM_AC_OPTION_SCACHE(16384)
|
|
SIM_AC_OPTION_DEFAULT_MODEL(m32r/d)
|
|
SIM_AC_OPTION_WARNINGS(no)
|
|
SIM_AC_OPTION_CGEN_MAINT
|
|
|
|
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)
|
|
|
|
SIM_AC_OPTION_HARDWARE(yes,,m32r_cache m32r_uart)
|
|
|
|
SIM_AC_OUTPUT
|