mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
68ed285428
Since we require C11 now, we can assume many headers exist, and clean up all of the conditional includes. It's not like any of this code actually accounted for the headers not existing, just whether we could include them. The strings.h cleanup is a little nuanced: it isn't in C11, but every use of it in the codebase will include strings.h only if string.h doesn't exist. Since we now assume the C11 string.h exists, we'll never include strings.h, so we can delete it.
21 lines
540 B
Plaintext
21 lines
540 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
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 sys/param.h)
|
|
|
|
SIM_AC_OPTION_ENDIAN(LITTLE)
|
|
SIM_AC_OPTION_ALIGNMENT(NONSTRICT_ALIGNMENT)
|
|
SIM_AC_OPTION_SCACHE(16384)
|
|
SIM_AC_OPTION_WARNINGS(no)
|
|
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_CGEN_MAINT
|
|
|
|
SIM_AC_OUTPUT
|