mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-21 01:12:32 +08:00
d0ac1c4488
When trying to run the update-gnulib.sh script in gdb, I get this: Error: Wrong automake version (Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\${ <-- HERE ([^ =:+{}]+)}/ at /opt/automake/1.11.1/bin/automake line 4113.), we need 1.11.1. Aborting. Apparently, it's an issue with a regex in automake that triggers a warning starting with Perl 5.22. It has been fixed in automake 1.15.1. So I think it's a good excuse to bump the versions of autoconf and automake used in the gnulib import. And to avoid requiring multiple builds of autoconf/automake, it was suggested that we bump the required version of those tools for all binutils-gdb. For autoconf, the 2.69 version is universally available, so it's an easy choice. For automake, different distros and distro versions have different automake versions. But 1.15.1 seems to be the most readily available as a package. In any case, it's easy to build it from source. I removed the version checks from AUTOMAKE_OPTIONS and AC_PREREQ, because I don't think they are useful in our case. They only specify a lower bound for the acceptable version of automake/autoconf. That's useful if you let the user choose the version of the tool they want to use, but want to set a minimum version (because you use a feature that was introduced in that version). In our case, we force people to use a specific version anyway. For the autoconf version, we have the check in config/override.m4 that enforces the version we want. It will be one less thing to update next time we change autotools version. I hit a few categories of problems that required some changes. They are described below along with the chosen solutions. Problem 1: configure.ac:17: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: configure.ac:17: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation Solution 1: Adjust the code based on the example at that URL. Problem 2 (in zlib/): Makefile.am: error: required file './INSTALL' not found Makefile.am: 'automake --add-missing' can install 'INSTALL' Makefile.am: error: required file './NEWS' not found Makefile.am: error: required file './AUTHORS' not found Makefile.am: error: required file './COPYING' not found Makefile.am: 'automake --add-missing' can install 'COPYING' Solution 2: Add the foreign option to AUTOMAKE_OPTIONS. Problem 3: doc/Makefile.am:20: error: support for Cygnus-style trees has been removed Solution 3: Remove the cygnus options. Problem 4: Makefile.am:656: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') Solution 4: Rename "INCLUDES = " to "AM_CPPFLAGS += " (because AM_CPPFLAGS is already defined earlier). Problem 5: doc/Makefile.am:71: warning: suffix '.texinfo' for Texinfo files is discouraged; use '.texi' instead doc/Makefile.am: warning: Oops! doc/Makefile.am: It appears this file (or files included by it) are triggering doc/Makefile.am: an undocumented, soon-to-be-removed automake hack. doc/Makefile.am: Future automake versions will no longer place in the builddir doc/Makefile.am: (rather than in the srcdir) the generated '.info' files that doc/Makefile.am: appear to be cleaned, by e.g. being listed in CLEANFILES or doc/Makefile.am: DISTCLEANFILES. doc/Makefile.am: If you want your '.info' files to be placed in the builddir doc/Makefile.am: rather than in the srcdir, you have to use the shiny new doc/Makefile.am: 'info-in-builddir' automake option. Solution 5: Rename .texinfo files to .texi. Problem 6: doc/Makefile.am: warning: Oops! doc/Makefile.am: It appears this file (or files included by it) are triggering doc/Makefile.am: an undocumented, soon-to-be-removed automake hack. doc/Makefile.am: Future automake versions will no longer place in the builddir doc/Makefile.am: (rather than in the srcdir) the generated '.info' files that doc/Makefile.am: appear to be cleaned, by e.g. being listed in CLEANFILES or doc/Makefile.am: DISTCLEANFILES. doc/Makefile.am: If you want your '.info' files to be placed in the builddir doc/Makefile.am: rather than in the srcdir, you have to use the shiny new doc/Makefile.am: 'info-in-builddir' automake option. Solution 6: Remove the hack at the bottom of doc/Makefile.am and use the info-in-builddir automake option. Problem 7: doc/Makefile.am:35: error: required file '../texinfo.tex' not found doc/Makefile.am:35: 'automake --add-missing' can install 'texinfo.tex' Solution 7: Use the no-texinfo.tex automake option. We also have one in texinfo/texinfo.tex, not sure if we should point to that, or move it (or a newer version of it added with automake --add-missing) to top-level. Problem 8: Makefile.am:131: warning: source file 'config/tc-aarch64.c' is in a subdirectory, Makefile.am:131: but option 'subdir-objects' is disabled automake: warning: possible forward-incompatibility. automake: At least a source file is in a subdirectory, but the 'subdir-objects' automake: automake option hasn't been enabled. For now, the corresponding output automake: object file(s) will be placed in the top-level directory. However, automake: this behaviour will change in future Automake versions: they will automake: unconditionally cause object files to be placed in the same subdirectory automake: of the corresponding sources. automake: You are advised to start using 'subdir-objects' option throughout your automake: project, to avoid future incompatibilities. Solution 8: Use subdir-objects, that means adjusting references to some .o that will now be in config/. Problem 9: configure.ac:375: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body ../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from... ../../lib/autoconf/general.m4:2601: _AC_COMPILE_IFELSE is expanded from... ../../lib/autoconf/general.m4:2617: AC_COMPILE_IFELSE is expanded from... ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... ../../lib/autoconf/general.m4:2042: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:2063: AC_CACHE_CHECK is expanded from... configure.ac:375: the top level Solution 9: Use AC_LANG_SOURCE, or use proper quoting. Problem 10 (in intl/): configure.ac:7: warning: AC_COMPILE_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS /usr/share/aclocal/threadlib.m4:36: gl_THREADLIB_EARLY_BODY is expanded from... /usr/share/aclocal/threadlib.m4:29: gl_THREADLIB_EARLY is expanded from... /usr/share/aclocal/threadlib.m4:318: gl_THREADLIB is expanded from... /usr/share/aclocal/lock.m4:9: gl_LOCK is expanded from... /usr/share/aclocal/intl.m4:211: gt_INTL_SUBDIR_CORE is expanded from... /usr/share/aclocal/intl.m4:25: AM_INTL_SUBDIR is expanded from... /usr/share/aclocal/gettext.m4:57: AM_GNU_GETTEXT is expanded from... configure.ac:7: the top level Solution 10: Add AC_USE_SYSTEM_EXTENSIONS in configure.ac. ChangeLog: * libtool.m4: Use AC_LANG_SOURCE. * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE. * README-maintainer-mode: Update version requirements. * ar-lib: New file. * test-driver: New file. * configure: Re-generate. bfd/ChangeLog: * Makefile.am (AUTOMAKE_OPTIONS): Remove 1.11. (INCLUDES): Rename to ... (AM_CPPFLAGS): ... this. * configure.ac: Remove AC_PREREQ. * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove 1.9, cygnus, add info-in-builddir no-texinfo.tex. (info_TEXINFOS): Rename bfd.texinfo to bfd.texi. * doc/bfd.texinfo: Rename to ... * doc/bfd.texi: ... this. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * config.in: Re-generate. * configure: Re-generate. * doc/Makefile.in: Re-generate. binutils/ChangeLog: * configure.ac: Remove AC_PREREQ. * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove cygnus, add info-in-builddir no-texinfo.tex. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * config.in: Re-generate. * configure: Re-generate. * doc/Makefile.in: Re-generate. config/ChangeLog: * override.m4 (_GCC_AUTOCONF_VERSION): Bump from 2.64 to 2.69. etc/ChangeLog: * configure.in: Remove AC_PREREQ. * configure: Re-generate. gas/ChangeLog: * Makefile.am (AUTOMAKE_OPTIONS): Remove 1.11, add subdir-objects. (TARG_CPU_O, OBJ_FORMAT_O, ATOF_TARG_O): Add config/ prefix. * configure.ac (TARG_CPU_O, OBJ_FORMAT_O, ATOF_TARG_O, emfiles, extra_objects): Add config/ prefix. * doc/as.texinfo: Rename to... * doc/as.texi: ... this. * doc/Makefile.am: Rename as.texinfo to as.texi throughout. Remove DISTCLEANFILES hack. (AUTOMAKE_OPTIONS): Remove 1.8, cygnus, add no-texinfo.tex and info-in-builddir. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * config.in: Re-generate. * configure: Re-generate. * doc/Makefile.in: Re-generate. gdb/ChangeLog: * common/common-defs.h (PACKAGE_NAME, PACKAGE_VERSION, PACKAGE_STRING, PACKAGE_TARNAME): Undefine. * configure.ac: Remove AC_PREREQ, add missing quoting. * gnulib/configure.ac: Modernize usage of AC_INIT/AM_INIT_AUTOMAKE. Remove AC_PREREQ. * gnulib/update-gnulib.sh (AUTOCONF_VERSION): Bump to 2.69. (AUTOMAKE_VERSION): Bump to 1.15.1. * configure: Re-generate. * config.in: Re-generate. * aclocal.m4: Re-generate. * gnulib/aclocal.m4: Re-generate. * gnulib/config.in: Re-generate. * gnulib/configure: Re-generate. * gnulib/import/Makefile.in: Re-generate. gdb/gdbserver/ChangeLog: * configure.ac: Remove AC_PREREQ, add missing quoting. * configure: Re-generate. * config.in: Re-generate. * aclocal.m4: Re-generate. gdb/testsuite/ChangeLog: * configure.ac: Remove AC_PREREQ. * configure: Re-generate. gold/ChangeLog: * configure.ac: Remove AC_PREREQ, add missing quoting and usage of AC_LANG_SOURCE. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * configure: Re-generate. * testsuite/Makefile.in: Re-generate. gprof/ChangeLog: * configure.ac: Remove AC_PREREQ. * Makefile.am: Remove DISTCLEANFILES hack. (AUTOMAKE_OPTIONS): Remove 1.11, add info-in-builddir. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * configure: Re-generate. * gconfig.in: Re-generate. intl/ChangeLog: * configure.ac: Add AC_USE_SYSTEM_EXTENSIONS, remove AC_PREREQ. * configure: Re-generate. * config.h.in: Re-generate. * aclocal.m4: Re-generate. ld/ChangeLog: * configure.ac: Remove AC_PREREQ. * Makefile.am: Remove DISTCLEANFILES hack, rename ld.texinfo to ld.texi, ldint.texinfo to ldint.texi throughout. (AUTOMAKE_OPTIONS): Add info-in-builddir. * README: Rename ld.texinfo to ld.texi, ldint.texinfo to ldint.texi throughout. * gen-doc.texi: Likewise. * h8-doc.texi: Likewise. * ld.texinfo: Rename to ... * ld.texi: ... this. * ldint.texinfo: Rename to ... * ldint.texi: ... this. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * config.in: Re-generate. * configure: Re-generate. libdecnumber/ChangeLog: * configure.ac: Remove AC_PREREQ. * configure: Re-generate. * aclocal.m4. libiberty/ChangeLog: * configure.ac: Remove AC_PREREQ. * configure: Re-generate. * config.in: Re-generate. opcodes/ChangeLog: * Makefile.am (AUTOMAKE_OPTIONS): Remove 1.11. * configure.ac: Remove AC_PREREQ. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * configure: Re-generate. readline/ChangeLog.gdb: * configure: Re-generate. * examples/rlfe/configure: Re-generate. sim/ChangeLog: * All configure.ac: Remove AC_PREREQ. * All configure: Re-generate. zlib/ChangeLog.bin-gdb: * configure.ac: Modernize AC_INIT call, remove AC_PREREQ. * Makefile.am (AUTOMAKE_OPTIONS): Remove 1.8, cygnus, add foreign. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * configure: Re-generate.
881 lines
28 KiB
Plaintext
881 lines
28 KiB
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
AC_INIT(Makefile.in)
|
|
sinclude(../common/acinclude.m4)
|
|
|
|
AC_PROG_INSTALL
|
|
AC_PROG_CC
|
|
|
|
# Put a plausible default for CC_FOR_BUILD in Makefile.
|
|
if test "x$cross_compiling" = "xno"; then
|
|
CC_FOR_BUILD='$(CC)'
|
|
else
|
|
CC_FOR_BUILD=gcc
|
|
fi
|
|
CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-${CFLAGS}}
|
|
|
|
dnl We don't use gettext, but bfd does. So we do the appropriate checks
|
|
dnl to see if there are intl libraries we should link against.
|
|
ALL_LINGUAS=
|
|
ZW_GNU_GETTEXT_SISTER_DIR(../../intl)
|
|
|
|
|
|
AC_ARG_ENABLE(sim-alignment,
|
|
[ --enable-sim-alignment=align Specify strict or nonstrict alignment.],
|
|
[case "${enableval}" in
|
|
yes | strict | STRICT) sim_alignment="-DWITH_ALIGNMENT=STRICT_ALIGNMENT";;
|
|
no | nonstrict | NONSTRICT) sim_alignment="-DWITH_ALIGNMENT=NONSTRICT_ALIGNMENT";;
|
|
0 | default | DEFAULT) sim_alignment="-DWITH_ALIGNMENT=0";;
|
|
*) AC_MSG_ERROR("Unknown value $enableval passed to --enable-sim-alignment"); sim_alignment="";;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_alignment" != x""; then
|
|
echo "Setting alignment flags = $sim_alignment" 6>&1
|
|
fi],[sim_alignment=""])dnl
|
|
|
|
|
|
AC_MSG_CHECKING([whether to enable sim asserts])
|
|
sim_assert="1"
|
|
AC_ARG_ENABLE(sim-assert,
|
|
[ --enable-sim-assert Specify whether to perform random assertions.],
|
|
[case "${enableval}" in
|
|
yes) sim_assert="1";;
|
|
no) sim_assert="0";;
|
|
*) AC_MSG_ERROR([--enable-sim-assert does not take a value]);;
|
|
esac])dnl
|
|
AC_DEFINE_UNQUOTED([WITH_ASSERT], [$sim_assert], [Sim assert settings])
|
|
AC_MSG_RESULT($sim_assert)
|
|
|
|
|
|
AC_ARG_ENABLE(sim-bitsize,
|
|
[ --enable-sim-bitsize=n Specify target bitsize (32 or 64).],
|
|
[case "${enableval}" in
|
|
32|64) sim_bitsize="-DWITH_TARGET_WORD_BITSIZE=$enableval";;
|
|
*) AC_MSG_ERROR("--enable-sim-bitsize was given $enableval. Expected 32 or 64"); sim_bitsize="";;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_bitsize" != x""; then
|
|
echo "Setting bitsize flags = $sim_bitsize" 6>&1
|
|
fi],[sim_bitsize=""])dnl
|
|
|
|
|
|
AC_ARG_ENABLE(sim-config,
|
|
[ --enable-sim-config=file Override default config file],
|
|
[case "${enableval}" in
|
|
yes|no) AC_MSG_ERROR("No value supplied for --enable-sim-config=file");;
|
|
*) if test -f "${srcdir}/${enableval}"; then
|
|
sim_config="${enableval}";
|
|
elif test -f "${srcdir}/${enableval}-config.h"; then
|
|
sim_config="${enableval}-config.h"
|
|
else
|
|
AC_MSG_ERROR("Config file $enableval was not found");
|
|
sim_config=std-config.h
|
|
fi;;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_config" != x""; then
|
|
echo "Setting config flags = $sim_config" 6>&1
|
|
fi],[sim_config="std-config.h"
|
|
if test x"$silent" != x"yes"; then
|
|
echo "Setting config flags = $sim_config" 6>&1
|
|
fi])dnl
|
|
|
|
|
|
AC_ARG_ENABLE(sim-decode-mechanism,
|
|
[ --enable-sim-decode-mechanism=which Specify the instruction decode mechanism.],
|
|
[case "${enableval}" in
|
|
yes|no) AC_MSG_ERROR("No value supplied for --enable-sim-decode-mechanism=file");;
|
|
array|switch|padded-switch|goto-switch) sim_decode_mechanism="-T ${enableval}";;
|
|
*) AC_MSG_ERROR("File $enableval is not an opcode rules file");
|
|
sim_decode_mechanism="switch";;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_decode_mechanism" != x""; then
|
|
echo "Setting decode mechanism flags = $sim_decode_mechanism" 6>&1
|
|
fi],[sim_decode_mechanism=""
|
|
if test x"$silent" != x"yes"; then
|
|
echo "Setting decode mechanism flags = $sim_decode_mechanism"
|
|
fi])dnl
|
|
|
|
|
|
AC_ARG_ENABLE(sim-default-model,
|
|
[ --enable-sim-default-model=which Specify default PowerPC to model.],
|
|
[case "${enableval}" in
|
|
yes|no) AC_MSG_ERROR("No value supplied for --enable-sim-default-model=model");;
|
|
*) sim_default_model="-DWITH_DEFAULT_MODEL=${enableval}";;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_default_model" != x""; then
|
|
echo "Setting default-model flags = $sim_default_model" 6>&1
|
|
fi],[sim_default_model=""])dnl
|
|
|
|
|
|
AC_ARG_ENABLE(sim-duplicate,
|
|
[ --enable-sim-duplicate Expand (duplicate) semantic functions.],
|
|
[case "${enableval}" in
|
|
yes) sim_dup="-E";;
|
|
no) sim_dup="";;
|
|
*) AC_MSG_ERROR("--enable-sim-duplicate does not take a value"); sim_dup="";;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_dup" != x""; then
|
|
echo "Setting duplicate flags = $sim_dup" 6>&1
|
|
fi],[sim_dup="-E"
|
|
if test x"$silent" != x"yes"; then
|
|
echo "Setting duplicate flags = $sim_dup" 6>&1
|
|
fi])dnl
|
|
|
|
|
|
AC_ARG_ENABLE(sim-endian,
|
|
[ --enable-sim-endian=endian Specify target byte endian orientation.],
|
|
[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";;
|
|
*) AC_MSG_ERROR("Unknown value $enableval for --enable-sim-endian"); sim_endian="";;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_endian" != x""; then
|
|
echo "Setting endian flags = $sim_endian" 6>&1
|
|
fi],[sim_endian=""])dnl
|
|
|
|
|
|
AC_MSG_CHECKING([default sim environment setting])
|
|
sim_env="0"
|
|
AC_ARG_ENABLE(sim-env,
|
|
[ --enable-sim-env=env Specify target environment (operating, virtual, user).],
|
|
[case "${enableval}" in
|
|
operating | os | oea) sim_env="OPERATING_ENVIRONMENT";;
|
|
virtual | vea) sim_env="VIRTUAL_ENVIRONMENT";;
|
|
user | uea) sim_env="USER_ENVIRONMENT";;
|
|
no) sim_env="0";;
|
|
*) AC_MSG_ERROR([Unknown value $enableval passed to --enable-sim-env]);;
|
|
esac])dnl
|
|
AC_DEFINE_UNQUOTED([WITH_ENVIRONMENT], [$sim_env], [Sim default environment])
|
|
AC_MSG_RESULT($sim_env)
|
|
|
|
|
|
AC_ARG_ENABLE(sim-filter,
|
|
[ --enable-sim-filter=rule Specify filter rules.],
|
|
[case "${enableval}" in
|
|
yes) AC_MSG_ERROR("--enable-sim-filter must be specified with a rule to filter or no"); sim_filter="";;
|
|
no) sim_filter="";;
|
|
*) sim_filter="-F $enableval";;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_filter" != x""; then
|
|
echo "Setting filter flags = $sim_filter" 6>&1
|
|
fi],[sim_filter="-F 32,f,o"
|
|
if test x"$silent" != x"yes"; then
|
|
echo "Setting filter flags = $sim_filter" 6>&1
|
|
fi])dnl
|
|
|
|
|
|
AC_ARG_ENABLE(sim-float,
|
|
[ --enable-sim-float Specify whether the target has hard, soft, altivec or e500 floating point.],
|
|
[case "${enableval}" in
|
|
yes | hard) sim_float="-DWITH_FLOATING_POINT=HARD_FLOATING_POINT";;
|
|
no | soft) sim_float="-DWITH_FLOATING_POINT=SOFT_FLOATING_POINT";;
|
|
altivec) sim_float="-DWITH_ALTIVEC" ; sim_filter="${sim_filter},av" ;;
|
|
*spe*|*simd*) sim_float="-DWITH_E500" ; sim_filter="${sim_filter},e500" ;;
|
|
*) AC_MSG_ERROR("Unknown value $enableval passed to --enable-sim-float"); sim_float="";;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_float" != x""; then
|
|
echo "Setting float flags = $sim_float" 6>&1
|
|
fi],[
|
|
case "${target}" in
|
|
*altivec*) sim_float="-DWITH_ALTIVEC" ; sim_filter="${sim_filter},av" ;;
|
|
*spe*|*simd*) sim_float="-DWITH_E500" ; sim_filter="${sim_filter},e500" ;;
|
|
*) sim_float=""
|
|
esac
|
|
])dnl
|
|
|
|
AC_CACHE_CHECK([if union semun defined],
|
|
ac_cv_HAS_UNION_SEMUN,
|
|
[AC_TRY_COMPILE([
|
|
#include <sys/types.h>
|
|
#include <sys/ipc.h>
|
|
#include <sys/sem.h>],
|
|
[union semun arg ;],
|
|
[ac_cv_has_union_semun="yes"],
|
|
[ac_cv_has_union_semun="no"])
|
|
AC_MSG_RESULT($ac_cv_has_union_semun)
|
|
])
|
|
|
|
|
|
if test "$ac_cv_has_union_semun" = "yes"; then
|
|
AC_CACHE_CHECK(whether System V semaphores are supported,
|
|
ac_cv_sysv_sem,
|
|
[
|
|
AC_TRY_RUN(
|
|
[
|
|
#include <sys/types.h>
|
|
#include <sys/ipc.h>
|
|
#include <sys/sem.h>
|
|
int main () {
|
|
union semun arg ;
|
|
|
|
int id=semget(IPC_PRIVATE,1,IPC_CREAT|0400);
|
|
if (id == -1)
|
|
exit(1);
|
|
arg.val = 0; /* avoid implicit type cast to union */
|
|
if (semctl(id, 0, IPC_RMID, arg) == -1)
|
|
exit(1);
|
|
exit(0);
|
|
}
|
|
],
|
|
ac_cv_sysv_sem="yes", ac_cv_sysv_sem="no", :)
|
|
])
|
|
else # semun is not defined
|
|
AC_CACHE_CHECK(whether System V semaphores are supported,
|
|
ac_cv_sysv_sem,
|
|
[
|
|
AC_TRY_RUN(
|
|
[
|
|
#include <sys/types.h>
|
|
#include <sys/ipc.h>
|
|
#include <sys/sem.h>
|
|
union semun {
|
|
int val;
|
|
struct semid_ds *buf;
|
|
ushort *array;
|
|
};
|
|
int main () {
|
|
union semun arg ;
|
|
|
|
int id=semget(IPC_PRIVATE,1,IPC_CREAT|0400);
|
|
if (id == -1)
|
|
exit(1);
|
|
arg.val = 0; /* avoid implicit type cast to union */
|
|
if (semctl(id, 0, IPC_RMID, arg) == -1)
|
|
exit(1);
|
|
exit(0);
|
|
}
|
|
],
|
|
ac_cv_sysv_sem="yes", ac_cv_sysv_sem="no", :)
|
|
])
|
|
fi
|
|
|
|
AC_CACHE_CHECK(whether System V shared memory is supported,
|
|
ac_cv_sysv_shm,
|
|
[
|
|
AC_TRY_RUN([
|
|
#include <sys/types.h>
|
|
#include <sys/ipc.h>
|
|
#include <sys/shm.h>
|
|
int main () {
|
|
int id=shmget(IPC_PRIVATE,1,IPC_CREAT|0400);
|
|
if (id == -1)
|
|
exit(1);
|
|
if (shmctl(id, IPC_RMID, 0) == -1)
|
|
exit(1);
|
|
exit(0);
|
|
}
|
|
],
|
|
ac_cv_sysv_shm="yes", ac_cv_sysv_shm="no", :)
|
|
])
|
|
|
|
if test x"$ac_cv_sysv_shm" = x"yes" -a x"$ac_cv_sysv_sem" = x"yes" ; then
|
|
sim_sysv_ipc_hw=",sem,shm";
|
|
else
|
|
sim_sysv_ipc_hw="";
|
|
fi
|
|
|
|
if test x"$ac_cv_has_union_semun" = x"yes" -a x"$ac_cv_sysv_sem" = x"yes" ; then
|
|
AC_DEFINE(HAVE_UNION_SEMUN, 1,
|
|
[Define if union semun is defined in <sys/sem.h>])
|
|
fi
|
|
|
|
|
|
AC_ARG_ENABLE(sim-hardware,
|
|
[ --enable-sim-hardware=list Specify the hardware to be included in the build.],
|
|
[hardware="cpu,memory,nvram,iobus,htab,disk,trace,register,vm,init,core,pal,com,eeprom,opic,glue,phb,ide${sim_sysv_ipc_hw}"
|
|
case "${enableval}" in
|
|
yes) ;;
|
|
no) AC_MSG_ERROR("List of hardware must be specified for --enable-sim-hardware"); hardware="";;
|
|
,*) hardware="${hardware}${enableval}";;
|
|
*,) hardware="${enableval}${hardware}";;
|
|
*) 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"
|
|
fi],[hardware="cpu,memory,nvram,iobus,htab,disk,trace,register,vm,init,core,pal,com,eeprom,opic,glue,phb,ide${sim_sysv_ipc_hw}"
|
|
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-hostbitsize,
|
|
[ --enable-sim-hostbitsize=32|64 Specify host bitsize (32 or 64).],
|
|
[case "${enableval}" in
|
|
32|64) sim_hostbitsize="-DWITH_HOST_WORD_BITSIZE=$enableval";;
|
|
*) AC_MSG_ERROR("--enable-sim-hostbitsize was given $enableval. Expected 32 or 64"); sim_hostbitsize="";;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_hostbitsize" != x""; then
|
|
echo "Setting hostbitsize flags = $sim_hostbitsize" 6>&1
|
|
fi],[sim_hostbitsize=""])dnl
|
|
|
|
|
|
AC_ARG_ENABLE(sim-hostendian,
|
|
[ --enable-sim-hostendian=end Specify host byte endian orientation.],
|
|
[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";;
|
|
*) AC_MSG_ERROR("Unknown value $enableval for --enable-sim-hostendian"); sim_hostendian="";;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_hostendian" != x""; then
|
|
echo "Setting hostendian flags = $sim_hostendian" 6>&1
|
|
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
|
|
|
|
|
|
AC_ARG_ENABLE(sim-icache,
|
|
[ --enable-sim-icache=size Specify instruction-decode cache size and type.],
|
|
[icache="-R"
|
|
case "${enableval}" in
|
|
yes) icache="1024"; sim_icache="-I $icache";;
|
|
no) sim_icache="-R";;
|
|
*) 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";;
|
|
insn) sim_icache="${sim_icache}S";;
|
|
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";;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$icache" != x""; then
|
|
echo "Setting instruction cache size to $icache ($sim_icache)"
|
|
fi],[sim_icache="-CSRI 1024"
|
|
if test x"$silent" != x"yes"; then
|
|
echo "Setting instruction cache size to 1024 ($sim_icache)"
|
|
fi])dnl
|
|
|
|
|
|
AC_ARG_ENABLE(sim-inline,
|
|
[ --enable-sim-inline=inlines Specify which functions should be inlined.],
|
|
[sim_inline=""
|
|
case "$enableval" in
|
|
no) sim_inline="-DDEFAULT_INLINE=0";;
|
|
0) sim_inline="-DDEFAULT_INLINE=0";;
|
|
yes | 2) sim_inline="-DDEFAULT_INLINE=ALL_INLINE";;
|
|
1) sim_inline="-DDEFAULT_INLINE=PSIM_INLINE_LOCALS";;
|
|
*) for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
|
new_flag=""
|
|
case "$x" in
|
|
*_INLINE=*) new_flag="-D$x";;
|
|
*=*) new_flag=`echo "$x" | sed -e "s/=/_INLINE=/" -e "s/^/-D/"`;;
|
|
*_INLINE) new_flag="-D$x=ALL_INLINE";;
|
|
*) new_flag="-D$x""_INLINE=ALL_INLINE";;
|
|
esac
|
|
if test x"$sim_inline" = x""; then
|
|
sim_inline="$new_flag"
|
|
else
|
|
sim_inline="$sim_inline $new_flag"
|
|
fi
|
|
done;;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_inline" != x""; then
|
|
echo "Setting inline flags = $sim_inline" 6>&1
|
|
fi],[if test x"$GCC" != ""; then
|
|
sim_inline="-DDEFAULT_INLINE=PSIM_INLINE_LOCALS"
|
|
if test x"$silent" != x"yes"; then
|
|
echo "Setting inline flags = $sim_inline" 6>&1
|
|
fi
|
|
else
|
|
sim_inline=""
|
|
fi])dnl
|
|
|
|
|
|
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=""
|
|
if test x"$silent" != x"yes"; then
|
|
echo "Setting jump flag = $sim_jump" 6>&1
|
|
fi])dnl
|
|
|
|
|
|
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
|
|
fi],[sim_line_nr=""])dnl
|
|
|
|
|
|
AC_ARG_ENABLE(sim-model,
|
|
[ --enable-sim-model=which Specify PowerPC to model.],
|
|
[case "${enableval}" in
|
|
yes|no) AC_MSG_ERROR("No value supplied for --enable-sim-model=model");;
|
|
*) sim_model="-DWITH_MODEL=${enableval}";;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_model" != x""; then
|
|
echo "Setting model flags = $sim_model" 6>&1
|
|
fi],[sim_model=""])dnl
|
|
|
|
|
|
AC_ARG_ENABLE(sim-model-issue,
|
|
[ --enable-sim-model-issue Specify whether to simulate model specific actions],
|
|
[case "${enableval}" in
|
|
yes) sim_model_issue="-DWITH_MODEL_ISSUE=MODEL_ISSUE_PROCESS";;
|
|
no) sim_model_issue="-DWITH_MODEL_ISSUE=MODEL_ISSUE_IGNORE";;
|
|
*) 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
|
|
|
|
|
|
AC_ARG_ENABLE(sim-monitor,
|
|
[ --enable-sim-monitor=mon Specify whether to enable monitoring events.],
|
|
[case "${enableval}" in
|
|
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";;
|
|
*) AC_MSG_ERROR("Unknown value $enableval passed to --enable-sim-mon"); sim_env="";;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_monitor" != x""; then
|
|
echo "Setting monitor flags = $sim_monitor" 6>&1
|
|
fi],[sim_monitor=""])dnl
|
|
|
|
|
|
AC_ARG_ENABLE(sim-opcode,
|
|
[ --enable-sim-opcode=which Override default opcode lookup.],
|
|
[case "${enableval}" in
|
|
yes|no) AC_MSG_ERROR("No value supplied for --enable-sim-opcode=file");;
|
|
*) if test -f "${srcdir}/${enableval}"; then
|
|
sim_opcode="${enableval}"
|
|
elif test -f "${srcdir}/dc-${enableval}"; then
|
|
sim_opcode="dc-${enableval}"
|
|
else
|
|
AC_MSG_ERROR("File $enableval is not an opcode rules file");
|
|
sim_opcode="dc-complex"
|
|
fi;;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_opcode" != x""; then
|
|
echo "Setting opcode flags = $sim_opcode" 6>&1
|
|
fi],[sim_opcode="dc-complex"
|
|
if test x"$silent" != x"yes"; then
|
|
echo "Setting opcode flags = $sim_opcode"
|
|
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}${packages}";;
|
|
*) 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
|
|
|
|
|
|
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
|
|
|
|
|
|
AC_ARG_ENABLE(sim-smp,
|
|
[ --enable-sim-smp=n Specify number of processors to configure for.],
|
|
[case "${enableval}" in
|
|
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";;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_smp" != x""; then
|
|
echo "Setting smp flags = $sim_smp" 6>&1
|
|
fi],[sim_smp="-DWITH_SMP=5" ; sim_igen_smp="-N 5"
|
|
if test x"$silent" != x"yes"; then
|
|
echo "Setting smp flags = $sim_smp" 6>&1
|
|
fi])dnl
|
|
|
|
|
|
AC_MSG_CHECKING([for sim stdio debug behavior])
|
|
sim_stdio=0
|
|
AC_ARG_ENABLE(sim-stdio,
|
|
[ --enable-sim-stdio Specify whether to use stdio for console input/output.],
|
|
[case "${enableval}" in
|
|
yes) sim_stdio="DO_USE_STDIO";;
|
|
no) sim_stdio="DONT_USE_STDIO";;
|
|
*) AC_MSG_ERROR([Unknown value $enableval passed to --enable-sim-stdio]);;
|
|
esac])dnl
|
|
AC_DEFINE_UNQUOTED([WITH_STDIO], [$sim_stdio], [How to route I/O])
|
|
AC_MSG_RESULT($sim_stdio)
|
|
|
|
|
|
AC_ARG_ENABLE(sim-switch,
|
|
[ --enable-sim-switch Use a switch instead of a table for instruction call.],
|
|
[case "${enableval}" in
|
|
yes) sim_switch="-s";;
|
|
no) sim_switch="";;
|
|
*) AC_MSG_ERROR("--enable-sim-switch does not take a value"); sim_switch="";;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_switch" != x""; then
|
|
echo "Setting switch flags = $sim_switch" 6>&1
|
|
fi],[sim_switch="";
|
|
if test x"$silent" != x"yes"; then
|
|
echo "Setting switch flags = $sim_switch" 6>&1
|
|
fi])dnl
|
|
|
|
|
|
AC_ARG_ENABLE(sim-timebase,
|
|
[ --enable-sim-timebase Specify whether the PPC timebase is supported.],
|
|
[case "${enableval}" in
|
|
yes) sim_timebase="-DWITH_TIME_BASE=1";;
|
|
no) sim_timebase="-DWITH_TIME_BASE=0";;
|
|
*) AC_MSG_ERROR("--enable-sim-timebase does not take a value"); sim_timebase="";;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_timebase" != x""; then
|
|
echo "Setting timebase flags = $sim_timebase" 6>&1
|
|
fi],[sim_timebase=""])dnl
|
|
|
|
|
|
AC_MSG_CHECKING([for sim trace settings])
|
|
sim_trace="1"
|
|
AC_ARG_ENABLE(sim-trace,
|
|
[ --enable-sim-trace Specify whether tracing is supported.],
|
|
[case "${enableval}" in
|
|
yes) sim_trace="1";;
|
|
no) sim_trace="0";;
|
|
*) AC_MSG_ERROR([--enable-sim-trace does not take a value]);;
|
|
esac])dnl
|
|
AC_DEFINE_UNQUOTED([WITH_TRACE], [$sim_trace], [Sim trace settings])
|
|
AC_MSG_RESULT($sim_trace)
|
|
|
|
|
|
AC_ARG_ENABLE(sim-warnings,
|
|
[ --enable-sim-warnings=opts Extra CFLAGS for turning on compiler warnings except for idecode.o, semantics.o and psim.o],
|
|
[case "${enableval}" in
|
|
yes) sim_warnings="-Werror -Wall -Wpointer-arith -Wmissing-prototypes -Wmissing-declarations ";;
|
|
no) sim_warnings="-w";;
|
|
*) sim_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
esac
|
|
if test x"$silent" != x"yes" && test x"$sim_warnings" != x""; then
|
|
echo "Setting warning flags = $sim_warnings" 6>&1
|
|
fi],[sim_warnings=""])dnl
|
|
|
|
|
|
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";;
|
|
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
|
|
|
|
|
|
ACX_PKGVERSION([GDB])
|
|
ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
|
|
AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
|
|
AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
|
|
|
|
AC_CANONICAL_SYSTEM
|
|
AC_ARG_PROGRAM
|
|
|
|
# BFD conditionally uses zlib, so we must link it in if libbfd does, by
|
|
# using the same condition.
|
|
AM_ZLIB
|
|
|
|
# BFD uses libdl when when plugins enabled.
|
|
AC_PLUGINS
|
|
|
|
. ${srcdir}/../../bfd/configure.host
|
|
|
|
case ${host} in
|
|
*mingw32*)
|
|
AC_DEFINE(USE_WIN32API, 1,
|
|
[Define if we should use the Windows API, instead of the
|
|
POSIX API. On Windows, we use the Windows API when
|
|
building for MinGW, but the POSIX API when building
|
|
for Cygwin.])
|
|
;;
|
|
esac
|
|
|
|
AC_CONFIG_HEADER(config.h:config.in)
|
|
|
|
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(access 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 sys/vfs.h sys/statfs.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
|
|
|
|
dnl Check for struct statfs
|
|
AC_MSG_CHECKING(for struct statfs)
|
|
AC_CACHE_VAL(ac_cv_struct_statfs,
|
|
[AC_TRY_COMPILE([#include <sys/types.h>
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
#include <sys/param.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_MOUNT_H
|
|
#include <sys/mount.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_VFS_H
|
|
#include <sys/vfs.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_STATFS_H
|
|
#include <sys/statfs.h>
|
|
#endif],
|
|
[static struct statfs s;],
|
|
ac_cv_struct_statfs=yes, ac_cv_struct_statfs=no)])
|
|
AC_MSG_RESULT($ac_cv_struct_statfs)
|
|
if test $ac_cv_struct_statfs = yes; then
|
|
AC_DEFINE(HAVE_STRUCT_STATFS, 1,
|
|
[Define if struct statfs is defined in <sys/mount.h>])
|
|
fi
|
|
|
|
AC_CHECK_TYPES(long long)
|
|
|
|
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
|
|
|
|
dnl Figure out if we are in the new Cygnus tree with a common directory or not
|
|
AC_MSG_CHECKING(for common simulator directory)
|
|
if test -f "${srcdir}/../common/callback.c"; then
|
|
AC_MSG_RESULT(yes)
|
|
sim_callback="callback.o targ-map.o"
|
|
sim_targ_vals="targ-vals.h targ-map.c targ-vals.def"
|
|
else
|
|
AC_MSG_RESULT(no)
|
|
sim_callback=""
|
|
sim_targ_vals=""
|
|
fi
|
|
|
|
AC_MSG_CHECKING(for common simulator directory fpu implementation)
|
|
if test -f "${srcdir}/../common/sim-fpu.c"; then
|
|
AC_MSG_RESULT(yes)
|
|
sim_fpu_cflags="-DHAVE_COMMON_FPU -I../common -I${srcdir}/../common"
|
|
sim_fpu="sim-fpu.o"
|
|
else
|
|
AC_MSG_RESULT(no)
|
|
sim_fpu_cflags=
|
|
sim_fpu=
|
|
fi
|
|
|
|
# Since we run commands on the build system, we have to create a
|
|
# separate config header for the build system if build != host.
|
|
if test x$host = x$build; then
|
|
AC_CONFIG_COMMANDS([build-config.h],[cp config.h build-config.h])
|
|
else
|
|
tempdir=build.$$
|
|
rm -rf $tempdir
|
|
mkdir $tempdir
|
|
cd $tempdir
|
|
case ${srcdir} in
|
|
/* | [A-Za-z]:[\\/]* ) realsrcdir=${srcdir};;
|
|
*) realsrcdir=../${srcdir};;
|
|
esac
|
|
saved_CFLAGS="${CFLAGS}"
|
|
CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
|
|
LDFLAGS="${LDFLAGS_FOR_BUILD}" \
|
|
${realsrcdir}/configure \
|
|
--enable-languages=${enable_languages-all} \
|
|
--target=$target_alias --host=$build_alias --build=$build_alias
|
|
CFLAGS="${saved_CFLAGS}"
|
|
mv config.h ../build-config.h
|
|
cd ..
|
|
rm -rf $tempdir
|
|
fi
|
|
|
|
dnl Check for exe extension
|
|
AC_EXEEXT
|
|
|
|
AC_SUBST(CC_FOR_BUILD)
|
|
AC_SUBST(CFLAGS_FOR_BUILD)
|
|
AC_SUBST(CFLAGS)
|
|
AC_SUBST(HDEFINES)
|
|
AR=${AR-ar}
|
|
AC_SUBST(AR)
|
|
AC_PROG_RANLIB
|
|
AC_SUBST(sim_warnings)
|
|
AC_SUBST(sim_line_nr)
|
|
AC_SUBST(sim_config)
|
|
AC_SUBST(sim_opcode)
|
|
AC_SUBST(sim_switch)
|
|
AC_SUBST(sim_dup)
|
|
AC_SUBST(sim_decode_mechanism)
|
|
AC_SUBST(sim_jump)
|
|
AC_SUBST(sim_filter)
|
|
AC_SUBST(sim_icache)
|
|
AC_SUBST(sim_hw_src)
|
|
AC_SUBST(sim_hw_obj)
|
|
AC_SUBST(sim_pk_src)
|
|
AC_SUBST(sim_pk_obj)
|
|
AC_SUBST(sim_inline)
|
|
AC_SUBST(sim_endian)
|
|
AC_SUBST(sim_xor_endian)
|
|
AC_SUBST(sim_hostendian)
|
|
AC_SUBST(sim_smp)
|
|
AC_SUBST(sim_igen_smp)
|
|
AC_SUBST(sim_bitsize)
|
|
AC_SUBST(sim_hostbitsize)
|
|
AC_SUBST(sim_timebase)
|
|
AC_SUBST(sim_alignment)
|
|
AC_SUBST(sim_float)
|
|
AC_SUBST(sim_reserved)
|
|
AC_SUBST(sim_monitor)
|
|
AC_SUBST(sim_model)
|
|
AC_SUBST(sim_default_model)
|
|
AC_SUBST(sim_model_issue)
|
|
AC_SUBST(sim_termio)
|
|
AC_SUBST(sim_devzero)
|
|
AC_SUBST(sim_callback)
|
|
AC_SUBST(sim_targ_vals)
|
|
AC_SUBST(sim_fpu_cflags)
|
|
AC_SUBST(sim_fpu)
|
|
|
|
AC_OUTPUT(Makefile,
|
|
[case x$CONFIG_HEADERS in xconfig.h:config.in) echo > stamp-h ;; esac])
|