1995-08-23 21:06:36 +00:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
1996-07-23 15:42:42 +00:00
|
|
|
AC_PREREQ(2.5)dnl
|
1995-08-23 21:06:36 +00:00
|
|
|
AC_INIT(Makefile.in)
|
|
|
|
|
1996-07-23 15:42:42 +00:00
|
|
|
AC_PROG_INSTALL
|
1996-04-30 22:50:22 +00:00
|
|
|
AC_PROG_CC
|
|
|
|
|
|
|
|
# Put a plausible default for CC_FOR_BUILD in Makefile.
|
|
|
|
AC_C_CROSS
|
|
|
|
if test "x$cross_compiling" = "xno"; then
|
|
|
|
CC_FOR_BUILD='$(CC)'
|
|
|
|
else
|
|
|
|
CC_FOR_BUILD=gcc
|
|
|
|
fi
|
|
|
|
|
1995-11-02 20:21:35 +00:00
|
|
|
AC_ARG_ENABLE(sim-cflags,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-cflags=opts Extra CFLAGS for use in building simulator],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
|
|
no) sim_cflags="";;
|
1995-11-03 03:39:27 +00:00
|
|
|
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
|
|
fi],[sim_cflags=""])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
1995-11-08 18:57:06 +00:00
|
|
|
AC_ARG_ENABLE(sim-warnings,
|
1995-11-09 02:35:15 +00:00
|
|
|
[ --enable-sim-warnings=opts Extra CFLAGS for turning on compiler warnings except for idecode.o, semantics.o and psim.o],
|
1995-11-08 18:57:06 +00:00
|
|
|
[case "${enableval}" in
|
1995-11-13 16:07:30 +00:00
|
|
|
yes) sim_warnings="-Werror -Wall -Wpointer-arith -Wmissing-prototypes";;
|
1995-11-08 18:57:06 +00:00
|
|
|
no) sim_warnings="-w";;
|
|
|
|
*) sim_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_warnings" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting warning flags = $sim_warnings" 6>&1
|
|
|
|
fi],[sim_warnings=""])dnl
|
1995-11-08 18:57:06 +00:00
|
|
|
|
1996-07-23 15:42:42 +00:00
|
|
|
AC_ARG_ENABLE(sim-line-nr,
|
|
|
|
[ --enable-sim-line-nr=opts Generate extra CPP code that references source rather than generated code],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes) sim_line_nr="";;
|
|
|
|
no) sim_line_nr="-L";;
|
|
|
|
*) AC_MSG_ERROR("--enable-sim-line-nr does not take a value"); sim_line_nr="";;
|
|
|
|
esac
|
|
|
|
if test x"$silent" != x"yes" && test x"$sim_line_nr" != x""; then
|
|
|
|
echo "Setting warning flags = $sim_line_nr" 6>&1
|
1996-08-06 15:55:32 +00:00
|
|
|
fi],[sim_line_nr=""])dnl
|
1996-07-23 15:42:42 +00:00
|
|
|
|
1995-11-02 20:21:35 +00:00
|
|
|
AC_ARG_ENABLE(sim-config,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-config=file Override default config file],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
1995-11-10 22:49:05 +00:00
|
|
|
yes|no) AC_MSG_ERROR("No value supplied for --enable-sim-config=file");;
|
1995-11-11 01:11:31 +00:00
|
|
|
*) if test -f "${srcdir}/${enableval}"; then
|
1995-11-10 22:49:05 +00:00
|
|
|
sim_config="${enableval}";
|
1995-11-11 01:11:31 +00:00
|
|
|
elif test -f "${srcdir}/${enableval}-config.h"; then
|
1995-11-10 22:49:05 +00:00
|
|
|
sim_config="${enableval}-config.h"
|
|
|
|
else
|
|
|
|
AC_MSG_ERROR("Config file $enableval was not found");
|
|
|
|
sim_config=std-config.h
|
|
|
|
fi;;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_config" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting config flags = $sim_config" 6>&1
|
1995-11-10 22:49:05 +00:00
|
|
|
fi],[sim_config="std-config.h"
|
|
|
|
if test x"$silent" != x"yes"; then
|
|
|
|
echo "Setting config flags = $sim_config" 6>&1
|
|
|
|
fi])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(sim-opcode,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-opcode=which Override default opcode lookup.],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
1995-11-10 22:49:05 +00:00
|
|
|
yes|no) AC_MSG_ERROR("No value supplied for --enable-sim-opcode=file");;
|
1995-11-11 01:11:31 +00:00
|
|
|
*) if test -f "${srcdir}/${enableval}"; then
|
1995-11-10 22:49:05 +00:00
|
|
|
sim_opcode="${enableval}"
|
1995-11-11 01:11:31 +00:00
|
|
|
elif test -f "${srcdir}/ppc-opcode-${enableval}"; then
|
1995-11-10 22:49:05 +00:00
|
|
|
sim_opcode="ppc-opcode-${enableval}"
|
|
|
|
else
|
|
|
|
AC_MSG_ERROR("File $enableval is not an opcode rules file");
|
|
|
|
sim_opcode="ppc-opcode-complex"
|
|
|
|
fi;;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_opcode" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting opcode flags = $sim_opcode" 6>&1
|
1995-11-10 22:49:05 +00:00
|
|
|
fi],[sim_opcode="ppc-opcode-complex"
|
|
|
|
if test x"$silent" != x"yes"; then
|
|
|
|
echo "Setting opcode flags = $sim_opcode"
|
|
|
|
fi])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(sim-switch,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-switch Use a switch instead of a table for instruction call.],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes) sim_switch="-s";;
|
1995-11-10 22:49:05 +00:00
|
|
|
no) sim_switch="";;
|
|
|
|
*) AC_MSG_ERROR("--enable-sim-switch does not take a value"); sim_switch="";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_switch" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting switch flags = $sim_switch" 6>&1
|
1996-01-10 20:42:29 +00:00
|
|
|
fi],[sim_switch="";
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes"; then
|
|
|
|
echo "Setting switch flags = $sim_switch" 6>&1
|
|
|
|
fi])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(sim-duplicate,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-duplicate Expand (duplicate) semantic functions.],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
1996-07-23 15:42:42 +00:00
|
|
|
yes) sim_dup="-E";;
|
1995-11-10 22:49:05 +00:00
|
|
|
no) sim_dup="";;
|
|
|
|
*) AC_MSG_ERROR("--enable-sim-duplicate does not take a value"); sim_dup="";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_dup" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting duplicate flags = $sim_dup" 6>&1
|
1996-07-23 15:42:42 +00:00
|
|
|
fi],[sim_dup="-E"
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes"; then
|
|
|
|
echo "Setting duplicate flags = $sim_dup" 6>&1
|
|
|
|
fi])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
1996-07-23 15:42:42 +00:00
|
|
|
AC_ARG_ENABLE(sim-jump,
|
|
|
|
[ --enable-sim-jump Jump between semantic code (instead of call/return).],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes) sim_jump="-J";;
|
|
|
|
no) sim_jump="";;
|
|
|
|
*) AC_MSG_ERROR("--enable-sim-jump does not take a value"); sim_jump="";;
|
|
|
|
esac
|
|
|
|
if test x"$silent" != x"yes" && test x"$sim_jump" != x""; then
|
|
|
|
echo "Setting jump flag = $sim_jump" 6>&1
|
|
|
|
fi],[sim_jump="-E"
|
|
|
|
if test x"$silent" != x"yes"; then
|
|
|
|
echo "Setting jump flag = $sim_jump" 6>&1
|
|
|
|
fi])dnl
|
|
|
|
|
1995-11-02 20:21:35 +00:00
|
|
|
AC_ARG_ENABLE(sim-filter,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-filter=rule Specify filter rules.],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
1995-11-10 22:49:05 +00:00
|
|
|
yes) AC_MSG_ERROR("--enable-sim-filter must be specified with a rule to filter or no"); sim_filter="";;
|
|
|
|
no) sim_filter="";;
|
1996-07-23 15:42:42 +00:00
|
|
|
*) sim_filter="-F $enableval";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_filter" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting filter flags = $sim_filter" 6>&1
|
1996-07-23 15:42:42 +00:00
|
|
|
fi],[sim_filter="-F 32,f"
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes"; then
|
|
|
|
echo "Setting filter flags = $sim_filter" 6>&1
|
|
|
|
fi])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(sim-icache,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-icache=size Specify instruction cache size.],
|
1996-08-06 15:55:32 +00:00
|
|
|
[icache=""
|
|
|
|
case "${enableval}" in
|
1996-07-23 15:42:42 +00:00
|
|
|
yes) icache="1024"; sim_icache="-I $icache";;
|
1995-11-25 01:35:14 +00:00
|
|
|
no) sim_icache="";;
|
1996-07-23 15:42:42 +00:00
|
|
|
*) icache=1024
|
|
|
|
sim_icache="-"
|
|
|
|
for x in `echo "${enableval}" | sed -e "s/,/ /g"`; do
|
|
|
|
case "$x" in
|
|
|
|
define) sim_icache="${sim_icache}R";;
|
|
|
|
semantic) sim_icache="${sim_icache}C";;
|
1996-08-06 15:55:32 +00:00
|
|
|
insn) sim_icache="${sim_icache}S";;
|
1996-07-23 15:42:42 +00:00
|
|
|
0*|1*|2*|3*|4*|5*|6*|7*|8*|9*) icache=$x;;
|
|
|
|
*) AC_MSG_ERROR("Unknown value $x for --enable-sim-icache"); sim_icache="";;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
sim_icache="${sim_icache}I $icache";;
|
1995-11-12 02:06:11 +00:00
|
|
|
esac
|
|
|
|
if test x"$silent" != x"yes" && test x"$icache" != x""; then
|
1996-07-23 15:42:42 +00:00
|
|
|
echo "Setting instruction cache size to $icache ($sim_icache)"
|
1996-08-06 15:55:32 +00:00
|
|
|
fi],[sim_icache="-CSI 1024"
|
1995-11-12 02:06:11 +00:00
|
|
|
if test x"$silent" != x"yes"; then
|
1996-07-23 15:42:42 +00:00
|
|
|
echo "Setting instruction cache size to 1024 ($sim_icache)"
|
1995-11-12 02:06:11 +00:00
|
|
|
fi])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
1996-08-06 15:55:32 +00:00
|
|
|
AC_ARG_ENABLE(sim-hardware,
|
|
|
|
[ --enable-sim-hardware=list Specify the hardware to be included in the build.],
|
1996-09-20 12:36:54 +00:00
|
|
|
[hardware="cpu,memory,nvram,iobus,htab,disk,trace,register,vm,init,core,pal,com"
|
1996-08-06 15:55:32 +00:00
|
|
|
case "${enableval}" in
|
|
|
|
yes) ;;
|
|
|
|
no) AC_MSG_ERROR("List of hardware must be specified for --enable-sim-hardware"); hardware="";;
|
|
|
|
,*) hardware="${hardware}${enableval}";;
|
|
|
|
*) hardware="${enableval}";;
|
|
|
|
esac
|
|
|
|
sim_hw_src=`echo $hardware | sed -e 's/,/.c hw_/g' -e 's/^/hw_/' -e s'/$/.c/'`
|
|
|
|
sim_hw_obj=`echo $sim_hw_src | sed -e 's/\.c/.o/g'`
|
|
|
|
if test x"$silent" != x"yes" && test x"$hardware" != x""; then
|
|
|
|
echo "Setting hardware to $sim_hw_src, $sim_hw_obj"
|
1996-09-20 12:36:54 +00:00
|
|
|
fi],[hardware="cpu,memory,nvram,iobus,htab,disk,trace,register,vm,init,core,pal,com"
|
1996-08-06 15:55:32 +00:00
|
|
|
sim_hw_src=`echo $hardware | sed -e 's/,/.c hw_/g' -e 's/^/hw_/' -e s'/$/.c/'`
|
|
|
|
sim_hw_obj=`echo $sim_hw_src | sed -e 's/\.c/.o/g'`
|
|
|
|
if test x"$silent" != x"yes"; then
|
|
|
|
echo "Setting hardware to $sim_hw_src, $sim_hw_obj"
|
|
|
|
fi])dnl
|
|
|
|
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(sim-packages,
|
|
|
|
[ --enable-sim-packages=list Specify the packages to be included in the build.],
|
|
|
|
[packages=disklabel
|
|
|
|
case "${enableval}" in
|
|
|
|
yes) ;;
|
|
|
|
no) AC_MSG_ERROR("List of packages must be specified for --enable-sim-packages"); packages="";;
|
|
|
|
,*) packages="${packages}${enableval}";;
|
|
|
|
*) packages="${enableval}"''
|
|
|
|
esac
|
|
|
|
sim_pk_src=`echo $packages | sed -e 's/,/.c pk_/g' -e 's/^/pk_/' -e 's/$/.c/'`
|
|
|
|
sim_pk_obj=`echo $sim_pk_src | sed -e 's/\.c/.o/g'`
|
|
|
|
if test x"$silent" != x"yes" && test x"$packages" != x""; then
|
|
|
|
echo "Setting packages to $sim_pk_src, $sim_pk_obj"
|
|
|
|
fi],[packages=disklabel
|
|
|
|
sim_pk_src=`echo $packages | sed -e 's/,/.c pk_/g' -e 's/^/pk_/' -e 's/$/.c/'`
|
|
|
|
sim_pk_obj=`echo $sim_pk_src | sed -e 's/\.c/.o/g'`
|
|
|
|
if test x"$silent" != x"yes"; then
|
|
|
|
echo "Setting packages to $sim_pk_src, $sim_pk_obj"
|
|
|
|
fi])dnl
|
|
|
|
|
1995-11-02 20:21:35 +00:00
|
|
|
AC_ARG_ENABLE(sim-inline,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-inline=inlines Specify which functions should be inlined.],
|
1995-11-02 20:21:35 +00:00
|
|
|
[sim_inline=""
|
|
|
|
case "$enableval" in
|
1995-12-19 16:41:06 +00:00
|
|
|
no) sim_inline="-DDEFAULT_INLINE=0";;
|
1995-11-03 03:55:44 +00:00
|
|
|
0) sim_inline="-DDEFAULT_INLINE=0";;
|
1995-12-15 20:20:13 +00:00
|
|
|
yes | 2) sim_inline="-DDEFAULT_INLINE=ALL_INLINE";;
|
|
|
|
1) sim_inline="-DDEFAULT_INLINE=INLINE_LOCALS";;
|
1995-11-02 20:21:35 +00:00
|
|
|
*) for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
|
|
|
new_flag=""
|
|
|
|
case "$x" in
|
|
|
|
*_INLINE=*) new_flag="-D$x";;
|
1995-11-12 02:06:11 +00:00
|
|
|
*=*) new_flag=`echo "$x" | sed -e "s/=/_INLINE=/" -e "s/^/-D/"`;;
|
1996-08-06 15:55:32 +00:00
|
|
|
*_INLINE) new_flag="-D$x=ALL_INLINE";;
|
1995-12-15 20:20:13 +00:00
|
|
|
*) new_flag="-D$x""_INLINE=ALL_INLINE";;
|
1995-11-02 20:21:35 +00:00
|
|
|
esac
|
1995-11-12 02:06:11 +00:00
|
|
|
if test x"$sim_inline" = x""; then
|
1995-11-02 20:21:35 +00:00
|
|
|
sim_inline="$new_flag"
|
|
|
|
else
|
1995-11-12 02:06:11 +00:00
|
|
|
sim_inline="$sim_inline $new_flag"
|
1995-11-02 20:21:35 +00:00
|
|
|
fi
|
|
|
|
done;;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_inline" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting inline flags = $sim_inline" 6>&1
|
|
|
|
fi],[if test x"$GCC" != ""; then
|
1995-12-15 20:20:13 +00:00
|
|
|
sim_inline="-DDEFAULT_INLINE=INLINE_LOCALS"
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes"; then
|
|
|
|
echo "Setting inline flags = $sim_inline" 6>&1
|
|
|
|
fi
|
1995-11-09 19:50:51 +00:00
|
|
|
else
|
|
|
|
sim_inline=""
|
|
|
|
fi])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(sim-bswap,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-bswap Use the BSWAP instruction on Intel 486s and Pentiums.],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes) sim_bswap="-DWITH_BSWAP=1";;
|
|
|
|
no) sim_bswap="-DWITH_BSWAP=0";;
|
1995-11-10 22:49:05 +00:00
|
|
|
*) AC_MSG_ERROR("--enable-sim-bswap does not take a value"); sim_bswap="";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_bswap" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting bswap flags = $sim_bswap" 6>&1
|
|
|
|
fi],[sim_bswap=""])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(sim-endian,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-endian=endian Specify target byte endian orientation.],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes) case "$target" in
|
|
|
|
*powerpc-*) sim_endian="-DWITH_TARGET_BYTE_ORDER=BIG_ENDIAN";;
|
|
|
|
*powerpcle-*) sim_endian="-DWITH_TARGET_BYTE_ORDER=LITTLE_ENDIAN";;
|
|
|
|
*) echo "Unknown target $target" 1>&6; sim_endian="-DWITH_TARGET_BYTE_ORDER=0";;
|
|
|
|
esac;;
|
|
|
|
no) sim_endian="-DWITH_TARGET_BYTE_ORDER=0";;
|
|
|
|
b*|B*) sim_endian="-DWITH_TARGET_BYTE_ORDER=BIG_ENDIAN";;
|
|
|
|
l*|L*) sim_endian="-DWITH_TARGET_BYTE_ORDER=LITTLE_ENDIAN";;
|
1995-11-10 22:49:05 +00:00
|
|
|
*) AC_MSG_ERROR("Unknown value $enableval for --enable-sim-endian"); sim_endian="";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_endian" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting endian flags = $sim_endian" 6>&1
|
|
|
|
fi],[sim_endian=""])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
1996-08-06 15:55:32 +00:00
|
|
|
AC_ARG_ENABLE(sim-regparm,
|
|
|
|
[ --enable-sim-regparm=nr-parm Pass parameters in registers instead of on the stack - x86/GCC specific.],
|
|
|
|
[case "${enableval}" in
|
|
|
|
0*|1*|2*|3*|4*|5*|6*|7*|8*|9*) sim_regparm="-DWITH_REGPARM=${enableval}";;
|
|
|
|
no) sim_regparm="" ;;
|
|
|
|
yes) sim_regparm="-DWITH_REGPARM=3";;
|
|
|
|
*) AC_MSG_ERROR("Unknown value $enableval for --enable-sim-regparm"); sim_regparm="";;
|
|
|
|
esac
|
|
|
|
if test x"$silent" != x"yes" && test x"$sim_regparm" != x""; then
|
|
|
|
echo "Setting regparm flags = $sim_regparm" 6>&1
|
|
|
|
fi],[sim_regparm=""])dnl
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(sim-stdcall,
|
|
|
|
[ --enable-sim-stdcall=type Use an alternative function call/return mechanism - x86/GCC specific.],
|
|
|
|
[case "${enableval}" in
|
|
|
|
no) sim_stdcall="" ;;
|
|
|
|
std*) sim_stdcall="-DWITH_STDCALL=1";;
|
|
|
|
yes) sim_stdcall="-DWITH_STDCALL=1";;
|
|
|
|
*) AC_MSG_ERROR("Unknown value $enableval for --enable-sim-stdcall"); sim_stdcall="";;
|
|
|
|
esac
|
|
|
|
if test x"$silent" != x"yes" && test x"$sim_stdcall" != x""; then
|
|
|
|
echo "Setting function call flags = $sim_stdcall" 6>&1
|
|
|
|
fi],[sim_stdcall=""])dnl
|
|
|
|
|
1995-11-02 20:21:35 +00:00
|
|
|
AC_ARG_ENABLE(sim-hostendian,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-hostendain=end Specify host byte endian orientation.],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
|
|
|
no) sim_hostendian="-DWITH_HOST_BYTE_ORDER=0";;
|
|
|
|
b*|B*) sim_hostendian="-DWITH_HOST_BYTE_ORDER=BIG_ENDIAN";;
|
|
|
|
l*|L*) sim_hostendian="-DWITH_HOST_BYTE_ORDER=LITTLE_ENDIAN";;
|
1995-11-10 22:49:05 +00:00
|
|
|
*) AC_MSG_ERROR("Unknown value $enableval for --enable-sim-hostendian"); sim_hostendian="";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_hostendian" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting hostendian flags = $sim_hostendian" 6>&1
|
1996-04-30 22:50:22 +00:00
|
|
|
fi],[
|
|
|
|
if test "x$cross_compiling" = "xno"; then
|
|
|
|
AC_C_BIGENDIAN
|
|
|
|
if test $ac_cv_c_bigendian = yes; then
|
|
|
|
sim_hostendian="-DWITH_HOST_BYTE_ORDER=BIG_ENDIAN"
|
|
|
|
else
|
|
|
|
sim_hostendian="-DWITH_HOST_BYTE_ORDER=LITTLE_ENDIAN"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
sim_hostendian="-DWITH_HOST_BYTE_ORDER=0"
|
|
|
|
fi])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(sim-smp,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-smp=n Specify number of processors to configure for.],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
1996-07-23 15:42:42 +00:00
|
|
|
yes) sim_smp="-DWITH_SMP=5" ; sim_igen_smp="-N 5";;
|
|
|
|
no) sim_smp="-DWITH_SMP=0" ; sim_igen_smp="-N 0";;
|
|
|
|
*) sim_smp="-DWITH_SMP=$enableval" ; sim_igen_smp="-N $enableval";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_smp" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting smp flags = $sim_smp" 6>&1
|
1996-07-23 15:42:42 +00:00
|
|
|
fi],[sim_smp="-DWITH_SMP=5" ; sim_igen_smp="-N 5"
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes"; then
|
|
|
|
echo "Setting smp flags = $sim_smp" 6>&1
|
|
|
|
fi])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
1995-11-13 16:07:30 +00:00
|
|
|
AC_ARG_ENABLE(sim-xor-endian,
|
|
|
|
[ --enable-sim-xor-endian=n Specify number bytes involved in PowerPC XOR bi-endian mode (default 8).],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes) sim_xor_endian="-DWITH_XOR_ENDIAN=8";;
|
|
|
|
no) sim_xor_endian="-DWITH_XOR_ENDIAN=0";;
|
|
|
|
*) sim_xor_endian="-DWITH_XOR_ENDIAN=$enableval";;
|
1996-02-16 15:51:57 +00:00
|
|
|
esac
|
|
|
|
if test x"$silent" != x"yes" && test x"$sim_xor_endian" != x""; then
|
|
|
|
echo "Setting xor-endian flag = $sim_xor_endian" 6>&1
|
|
|
|
fi],[sim_xor_endian=""])dnl
|
1995-11-13 16:07:30 +00:00
|
|
|
|
1995-11-02 20:21:35 +00:00
|
|
|
AC_ARG_ENABLE(sim-bitsize,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-bitsize=n Specify target bitsize (32 or 64).],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
1995-11-10 22:49:05 +00:00
|
|
|
32|64) sim_bitsize="-DWITH_TARGET_WORD_BITSIZE=$enableval";;
|
|
|
|
*) AC_MSG_ERROR("--enable-sim-bitsize was given $enableval, expected 32 or 64"); sim_bitsize="";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_bitsize" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting bitsize flags = $sim_bitsize" 6>&1
|
|
|
|
fi],[sim_bitsize=""])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(sim-hostbitsize,
|
1995-11-10 22:49:05 +00:00
|
|
|
[ --enable-sim-hostbitsize=32|64 Specify host bitsize (32 or 64).],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
1995-11-10 22:49:05 +00:00
|
|
|
32|64) sim_hostbitsize="-DWITH_HOST_WORD_BITSIZE=$enableval";;
|
|
|
|
*) AC_MSG_ERROR("--enable-sim-hostbitsize was given $enableval, expected 32 or 64"); sim_hostbitsize="";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_hostbitsize" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting hostbitsize flags = $sim_hostbitsize" 6>&1
|
|
|
|
fi],[sim_hostbitsize=""])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(sim-env,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-env=env Specify target environment (operating, virtual, user).],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
|
|
|
operating | os | oea) sim_env="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
|
|
|
virtual | vea) sim_env="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
|
|
|
user | uea) sim_env="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
1995-11-10 22:49:05 +00:00
|
|
|
no) sim_env="-DWITH_ENVIRONMENT=0";;
|
|
|
|
*) AC_MSG_ERROR("Unknown value $enableval passed to --enable-sim-env"); sim_env="";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_env" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting env flags = $sim_env" 6>&1
|
|
|
|
fi],[sim_env=""])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(sim-timebase,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-timebase Specify whether the PPC timebase is supported.],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes) sim_timebase="-DWITH_TIME_BASE=1";;
|
|
|
|
no) sim_timebase="-DWITH_TIME_BASE=0";;
|
1995-11-10 22:49:05 +00:00
|
|
|
*) AC_MSG_ERROR("--enable-sim-timebase does not take a value"); sim_timebase="";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_timebase" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting timebase flags = $sim_timebase" 6>&1
|
|
|
|
fi],[sim_timebase=""])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(sim-alignment,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-alignment=align Specify strict or nonstrict alignment.],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes | strict | STRICT) sim_alignment="-DWITH_ALIGNMENT=STRICT_ALIGNMENT";;
|
1995-11-09 19:50:51 +00:00
|
|
|
no | nonstrict | NONSTRICT) sim_alignment="-DWITH_ALIGNMENT=NONSTRICT_ALIGNMENT";;
|
1996-06-02 15:40:16 +00:00
|
|
|
0 | default | DEFAULT) sim_alignment="-DWITH_ALIGNMENT=0";;
|
1995-11-10 22:49:05 +00:00
|
|
|
*) AC_MSG_ERROR("Unknown value $enableval passed to --enable-sim-alignment"); sim_alignment="";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_alignment" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting alignment flags = $sim_alignment" 6>&1
|
|
|
|
fi],[sim_alignment=""])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(sim-trace,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-trace Specify whether tracing is supported.],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes) sim_trace="-DWITH_TRACE=1";;
|
|
|
|
no) sim_trace="-DWITH_TRACE=0";;
|
1995-11-10 22:49:05 +00:00
|
|
|
*) AC_MSG_ERROR("--enable-sim-trace does not take a value"); sim_trace="";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting trace flags = $sim_trace" 6>&1
|
|
|
|
fi],[sim_trace=""])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(sim-assert,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-assert Specify whether to perform random assertions.],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes) sim_assert="-DWITH_ASSERT=1";;
|
|
|
|
no) sim_assert="-DWITH_ASSERT=0";;
|
1995-11-10 22:49:05 +00:00
|
|
|
*) AC_MSG_ERROR("--enable-sim-assert does not take a value"); sim_assert="";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting assert flags = $sim_assert" 6>&1
|
|
|
|
fi],[sim_assert=""])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
1995-11-10 22:49:05 +00:00
|
|
|
AC_ARG_ENABLE(sim-reserved-bits,
|
|
|
|
[ --enable-sim-reserved-bits Specify whether to check reserved bits in instruction.],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes) sim_reserved="-DWITH_RESERVED_BITS=1";;
|
|
|
|
no) sim_reserved="-DWITH_RESERVED_BITS=0";;
|
|
|
|
*) AC_MSG_ERROR("--enable-sim-reserved-bits does not take a value"); sim_reserved="";;
|
|
|
|
esac
|
|
|
|
if test x"$silent" != x"yes" && test x"$sim_reserved" != x""; then
|
|
|
|
echo "Setting reserved flags = $sim_reserved" 6>&1
|
|
|
|
fi],[sim_reserved=""])dnl
|
|
|
|
|
1995-11-02 20:21:35 +00:00
|
|
|
AC_ARG_ENABLE(sim-float,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-float Specify whether to use host floating point or simulate.],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes | hard) sim_float="-DWITH_FLOATING_POINT=HARD_FLOATING_POINT";;
|
|
|
|
no | soft) sim_float="-DWITH_FLOATING_POINT=SOFT_FLOATING_POINT";;
|
1995-11-10 22:49:05 +00:00
|
|
|
*) AC_MSG_ERROR("Unknown value $enableval passed to --enable-sim-float"); sim_float="";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_float" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting float flags = $sim_float" 6>&1
|
|
|
|
fi],[sim_float=""])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(sim-monitor,
|
1995-11-08 18:57:06 +00:00
|
|
|
[ --enable-sim-monitor=mon Specify whether to enable monitoring events.],
|
1995-11-02 20:21:35 +00:00
|
|
|
[case "${enableval}" in
|
1995-12-19 16:41:06 +00:00
|
|
|
yes) sim_monitor="-DWITH_MON='MONITOR_INSTRUCTION_ISSUE | MONITOR_LOAD_STORE_UNIT'";;
|
|
|
|
no) sim_monitor="-DWITH_MON=0";;
|
|
|
|
instruction) sim_monitor="-DWITH_MON=MONITOR_INSTRUCTION_ISSUE";;
|
|
|
|
memory) sim_monitor="-DWITH_MON=MONITOR_LOAD_STORE_UNIT";;
|
1995-11-10 22:49:05 +00:00
|
|
|
*) AC_MSG_ERROR("Unknown value $enableval passed to --enable-sim-mon"); sim_env="";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-12-19 16:41:06 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_monitor" != x""; then
|
|
|
|
echo "Setting monitor flags = $sim_monitor" 6>&1
|
|
|
|
fi],[sim_monitor=""])dnl
|
1995-11-02 20:21:35 +00:00
|
|
|
|
1995-11-08 18:57:06 +00:00
|
|
|
AC_ARG_ENABLE(sim-model,
|
|
|
|
[ --enable-sim-model=which Specify PowerPC to model.],
|
|
|
|
[case "${enableval}" in
|
1995-11-10 22:49:05 +00:00
|
|
|
yes|no) AC_MSG_ERROR("No value supplied for --enable-sim-model=model");;
|
|
|
|
*) sim_model="-DWITH_MODEL=${enableval}";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_model" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting model flags = $sim_model" 6>&1
|
|
|
|
fi],[sim_model=""])dnl
|
1995-11-08 18:57:06 +00:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(sim-default-model,
|
|
|
|
[ --enable-sim-default-model=which Specify default PowerPC to model.],
|
|
|
|
[case "${enableval}" in
|
1995-11-10 22:49:05 +00:00
|
|
|
yes|no) AC_MSG_ERROR("No value supplied for --enable-sim-default-model=model");;
|
|
|
|
*) sim_default_model="-DWITH_DEFAULT_MODEL=${enableval}";;
|
1995-11-09 19:50:51 +00:00
|
|
|
esac
|
1995-11-09 21:38:13 +00:00
|
|
|
if test x"$silent" != x"yes" && test x"$sim_default_model" != x""; then
|
1995-11-09 19:50:51 +00:00
|
|
|
echo "Setting default-model flags = $sim_default_model" 6>&1
|
|
|
|
fi],[sim_model=""])dnl
|
1995-09-08 23:56:38 +00:00
|
|
|
|
1995-11-16 21:42:27 +00:00
|
|
|
AC_ARG_ENABLE(sim-model-issue,
|
|
|
|
[ --enable-sim-model-issue Specify whether to simulate model specific actions],
|
|
|
|
[case "${enableval}" in
|
1995-11-28 18:47:07 +00:00
|
|
|
yes) sim_model_issue="-DWITH_MODEL_ISSUE=MODEL_ISSUE_PROCESS";;
|
|
|
|
no) sim_model_issue="-DWITH_MODEL_ISSUE=MODEL_ISSUE_IGNORE";;
|
1995-11-16 21:42:27 +00:00
|
|
|
*) AC_MSG_ERROR("--enable-sim-model-issue does not take a value"); sim_model_issue="";;
|
|
|
|
esac
|
|
|
|
if test x"$silent" != x"yes"; then
|
|
|
|
echo "Setting model-issue flags = $sim_model_issue" 6>&1
|
|
|
|
fi],[sim_model_issue=""])dnl
|
|
|
|
|
1996-03-29 17:33:56 +00:00
|
|
|
AC_ARG_ENABLE(sim-stdio,
|
|
|
|
[ --enable-sim-stdio Specify whether to use stdio for console input/output.],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
|
|
|
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
|
|
|
*) AC_MSG_ERROR("Unknown value $enableval passed to --enable-sim-stdio"); sim_stdio="";;
|
|
|
|
esac
|
|
|
|
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
|
|
|
echo "Setting stdio flags = $sim_stdio" 6>&1
|
|
|
|
fi],[sim_stdio=""])dnl
|
|
|
|
|
1995-08-23 21:06:36 +00:00
|
|
|
AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/../..)
|
|
|
|
AC_CANONICAL_SYSTEM
|
|
|
|
AC_ARG_PROGRAM
|
|
|
|
|
|
|
|
. ${srcdir}/../../bfd/configure.host
|
|
|
|
|
1995-11-09 19:50:51 +00:00
|
|
|
AC_CONFIG_HEADER(config.h:config.in)
|
|
|
|
|
1996-06-26 20:01:38 +00:00
|
|
|
AC_STRUCT_ST_BLKSIZE
|
|
|
|
AC_STRUCT_ST_BLOCKS
|
|
|
|
AC_STRUCT_ST_RDEV
|
|
|
|
AC_STRUCT_TIMEZONE
|
|
|
|
|
|
|
|
AC_TYPE_GETGROUPS
|
|
|
|
AC_TYPE_MODE_T
|
|
|
|
AC_TYPE_OFF_T
|
|
|
|
AC_TYPE_PID_T
|
|
|
|
AC_TYPE_SIGNAL
|
|
|
|
AC_TYPE_SIZE_T
|
|
|
|
AC_TYPE_UID_T
|
|
|
|
|
|
|
|
AC_CHECK_FUNCS(cfgetispeed cfgetospeed cfsetispeed cfsetospeed chdir chmod chown dup dup2 fchmod fchown fcntl fstat fstatfs getdirentries getegid geteuid getgid getpid getppid getrusage gettimeofday getuid ioctl kill link lseek lstat mkdir pipe readlink rmdir setreuid setregid stat sigprocmask stat symlink tcgetattr tcsetattr tcsendbreak tcdrain tcflush tcflow tcgetpgrp tcsetpgrp time umask unlink)
|
|
|
|
|
|
|
|
AC_CHECK_HEADERS(fcntl.h stdlib.h string.h strings.h sys/ioctl.h sys/mount.h sys/param.h sys/resource.h sys/stat.h sys/termio.h sys/termios.h sys/time.h sys/times.h sys/types.h time.h unistd.h)
|
|
|
|
AC_HEADER_DIRENT
|
|
|
|
|
|
|
|
dnl Figure out what type of termio/termios support there is
|
|
|
|
sim_termio=""
|
|
|
|
AC_MSG_CHECKING(for struct termios)
|
|
|
|
AC_CACHE_VAL(ac_cv_termios_struct,
|
|
|
|
[AC_TRY_COMPILE([#include <sys/types.h>
|
|
|
|
#include <sys/termios.h>],
|
|
|
|
[static struct termios x;
|
|
|
|
x.c_iflag = 0;
|
|
|
|
x.c_oflag = 0;
|
|
|
|
x.c_cflag = 0;
|
|
|
|
x.c_lflag = 0;
|
|
|
|
x.c_cc[NCCS] = 0;],
|
|
|
|
ac_cv_termios_struct=yes, ac_cv_termios_struct=no)])
|
|
|
|
AC_MSG_RESULT($ac_cv_termios_struct)
|
|
|
|
if test $ac_cv_termios_struct = yes; then
|
|
|
|
sim_termio="$sim_termio -DHAVE_TERMIOS_STRUCTURE"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$ac_cv_termios_struct" = "yes"; then
|
|
|
|
AC_MSG_CHECKING(for c_line field in struct termios)
|
|
|
|
AC_CACHE_VAL(ac_cv_termios_cline,
|
|
|
|
[AC_TRY_COMPILE([#include <sys/types.h>
|
|
|
|
#include <sys/termios.h>],
|
|
|
|
[static struct termios x; x.c_line = 0;],
|
|
|
|
ac_cv_termios_cline=yes, ac_cv_termios_cline=no)])
|
|
|
|
|
|
|
|
AC_MSG_RESULT($ac_cv_termios_cline)
|
|
|
|
if test $ac_cv_termios_cline = yes; then
|
|
|
|
sim_termio="$sim_termio -DHAVE_TERMIOS_CLINE"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
ac_cv_termios_cline=no
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$ac_cv_termios_struct" != "yes"; then
|
|
|
|
AC_MSG_CHECKING(for struct termio)
|
|
|
|
AC_CACHE_VAL(ac_cv_termio_struct,
|
|
|
|
[AC_TRY_COMPILE([#include <sys/types.h>
|
|
|
|
#include <sys/termio.h>],
|
|
|
|
[static struct termio x;
|
|
|
|
x.c_iflag = 0;
|
|
|
|
x.c_oflag = 0;
|
|
|
|
x.c_cflag = 0;
|
|
|
|
x.c_lflag = 0;
|
|
|
|
x.c_cc[NCC] = 0;],
|
|
|
|
ac_cv_termio_struct=yes, ac_cv_termio_struct=no)])
|
|
|
|
AC_MSG_RESULT($ac_cv_termio_struct)
|
|
|
|
if test $ac_cv_termio_struct = yes; then
|
|
|
|
sim_termio="$sim_termio -DHAVE_TERMIO_STRUCTURE"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
ac_cv_termio_struct=no
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$ac_cv_termio_struct" = "yes"; then
|
|
|
|
AC_MSG_CHECKING(for c_line field in struct termio)
|
|
|
|
AC_CACHE_VAL(ac_cv_termio_cline,
|
|
|
|
[AC_TRY_COMPILE([#include <sys/types.h>
|
|
|
|
#include <sys/termio.h>],
|
|
|
|
[static struct termio x; x.c_line = 0;],
|
|
|
|
ac_cv_termio_cline=yes, ac_cv_termio_cline=no)])
|
|
|
|
|
|
|
|
AC_MSG_RESULT($ac_cv_termio_cline)
|
|
|
|
if test $ac_cv_termio_cline = yes; then
|
|
|
|
sim_termio="$sim_termio -DHAVE_TERMIO_CLINE"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
ac_cv_termio_cline=no
|
|
|
|
fi
|
|
|
|
|
1996-08-12 23:06:21 +00:00
|
|
|
dnl Figure out if /dev/zero exists or not
|
|
|
|
sim_devzero=""
|
|
|
|
AC_MSG_CHECKING(for /dev/zero)
|
|
|
|
AC_CACHE_VAL(ac_cv_devzero,
|
|
|
|
[AC_TRY_RUN([#include <fcntl.h>
|
|
|
|
main () {
|
|
|
|
char buf[2048];
|
|
|
|
int i;
|
|
|
|
int fd = open ("/dev/zero", O_RDONLY);
|
|
|
|
if (fd < 0)
|
|
|
|
return 1;
|
|
|
|
for (i = 0; i < sizeof (buf); i++)
|
|
|
|
buf[i] = 1;
|
|
|
|
if (read (fd, buf, sizeof (buf)) != sizeof (buf))
|
|
|
|
return 1;
|
|
|
|
for (i = 0; i < sizeof (buf); i++)
|
|
|
|
if (buf[i])
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}],[ac_cv_devzero=yes],[ac_cv_devzero=no],[ac_cv_devzero=no])])
|
|
|
|
AC_MSG_RESULT($ac_cv_devzero)
|
|
|
|
if test $ac_cv_devzero = yes; then
|
|
|
|
sim_devzero="-DHAVE_DEVZERO"
|
|
|
|
else
|
|
|
|
sim_devzero=""
|
|
|
|
fi
|
|
|
|
|
1996-04-30 22:50:22 +00:00
|
|
|
AC_SUBST(CC_FOR_BUILD)
|
1995-09-08 23:56:38 +00:00
|
|
|
AC_SUBST(CFLAGS)
|
|
|
|
AC_SUBST(HDEFINES)
|
|
|
|
AR=${AR-ar}
|
|
|
|
AC_SUBST(AR)
|
|
|
|
AC_PROG_RANLIB
|
1995-11-02 20:21:35 +00:00
|
|
|
AC_SUBST(sim_cflags)
|
1995-11-08 18:57:06 +00:00
|
|
|
AC_SUBST(sim_warnings)
|
1996-07-23 15:42:42 +00:00
|
|
|
AC_SUBST(sim_line_nr)
|
1995-11-02 20:21:35 +00:00
|
|
|
AC_SUBST(sim_config)
|
|
|
|
AC_SUBST(sim_opcode)
|
|
|
|
AC_SUBST(sim_switch)
|
|
|
|
AC_SUBST(sim_dup)
|
1996-07-23 15:42:42 +00:00
|
|
|
AC_SUBST(sim_jump)
|
1995-11-02 20:21:35 +00:00
|
|
|
AC_SUBST(sim_filter)
|
|
|
|
AC_SUBST(sim_icache)
|
1996-08-06 15:55:32 +00:00
|
|
|
AC_SUBST(sim_hw_src)
|
|
|
|
AC_SUBST(sim_hw_obj)
|
|
|
|
AC_SUBST(sim_pk_src)
|
|
|
|
AC_SUBST(sim_pk_obj)
|
1995-11-02 20:21:35 +00:00
|
|
|
AC_SUBST(sim_inline)
|
|
|
|
AC_SUBST(sim_bswap)
|
|
|
|
AC_SUBST(sim_endian)
|
1996-08-06 15:55:32 +00:00
|
|
|
AC_SUBST(sim_regparm)
|
|
|
|
AC_SUBST(sim_stdcall)
|
1995-11-13 16:07:30 +00:00
|
|
|
AC_SUBST(sim_xor_endian)
|
1995-11-02 20:21:35 +00:00
|
|
|
AC_SUBST(sim_hostendian)
|
|
|
|
AC_SUBST(sim_smp)
|
1996-07-23 15:42:42 +00:00
|
|
|
AC_SUBST(sim_igen_smp)
|
1995-11-02 20:21:35 +00:00
|
|
|
AC_SUBST(sim_bitsize)
|
|
|
|
AC_SUBST(sim_hostbitsize)
|
|
|
|
AC_SUBST(sim_env)
|
|
|
|
AC_SUBST(sim_timebase)
|
|
|
|
AC_SUBST(sim_alignment)
|
|
|
|
AC_SUBST(sim_float)
|
|
|
|
AC_SUBST(sim_trace)
|
|
|
|
AC_SUBST(sim_assert)
|
1995-11-10 22:49:05 +00:00
|
|
|
AC_SUBST(sim_reserved)
|
1995-11-02 20:21:35 +00:00
|
|
|
AC_SUBST(sim_monitor)
|
1995-11-08 18:57:06 +00:00
|
|
|
AC_SUBST(sim_model)
|
|
|
|
AC_SUBST(sim_default_model)
|
1995-11-16 21:42:27 +00:00
|
|
|
AC_SUBST(sim_model_issue)
|
1996-03-29 17:33:56 +00:00
|
|
|
AC_SUBST(sim_stdio)
|
1996-06-26 20:01:38 +00:00
|
|
|
AC_SUBST(sim_termio)
|
1996-08-12 23:06:21 +00:00
|
|
|
AC_SUBST(sim_devzero)
|
1995-08-23 21:06:36 +00:00
|
|
|
|
1995-09-08 23:56:38 +00:00
|
|
|
AC_OUTPUT(Makefile,
|
|
|
|
[case x$CONFIG_HEADERS in xconfig.h:config.in) echo > stamp-h ;; esac])
|