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.
29 lines
674 B
Plaintext
29 lines
674 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(LITTLE)
|
|
SIM_AC_OPTION_ALIGNMENT(NONSTRICT_ALIGNMENT)
|
|
SIM_AC_OPTION_ENVIRONMENT
|
|
SIM_AC_OPTION_WARNINGS
|
|
|
|
# Select the default model for the target.
|
|
riscv_model=
|
|
case "${target}" in
|
|
riscv32*) riscv_model="RV32G" ;;
|
|
riscv*) riscv_model="RV64G" ;;
|
|
esac
|
|
SIM_AC_OPTION_DEFAULT_MODEL(${riscv_model})
|
|
|
|
# Select the bitsize of the target.
|
|
riscv_addr_bitsize=
|
|
case "${target}" in
|
|
riscv32*) riscv_addr_bitsize=32 ;;
|
|
riscv*) riscv_addr_bitsize=64 ;;
|
|
esac
|
|
SIM_AC_OPTION_BITSIZE($riscv_addr_bitsize)
|
|
|
|
SIM_AC_OUTPUT
|