mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
9c082ca86e
Automake likes to dump macros automatically used into the aclocal.m4 file, but the common/aclocal.m4 naming prevents that. So rename it to the more normal "acinclude.m4" so the aclocal tool can work. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24 lines
594 B
Plaintext
24 lines
594 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(no,,rv cris)
|
|
|
|
# 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
|