diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-07-04 05:00:54 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-07-04 05:00:54 +0000 |
commit | 6c29acca43b2c78b7668b5c8c6676181303b9cfd (patch) | |
tree | ccea8802dbc4a003671fc4627f73ffa0f77d5cdc /sim/tic80/configure.in | |
parent | 78492fde3d8e2784f72284ad97fc1fcd7544a860 (diff) | |
download | gdb-6c29acca43b2c78b7668b5c8c6676181303b9cfd.zip gdb-6c29acca43b2c78b7668b5c8c6676181303b9cfd.tar.gz gdb-6c29acca43b2c78b7668b5c8c6676181303b9cfd.tar.bz2 |
TIc80 simulator.
Diffstat (limited to 'sim/tic80/configure.in')
-rw-r--r-- | sim/tic80/configure.in | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sim/tic80/configure.in b/sim/tic80/configure.in new file mode 100644 index 0000000..730b62e --- /dev/null +++ b/sim/tic80/configure.in @@ -0,0 +1,21 @@ +dnl Process this file with autoconf to produce a configure script. +sinclude(../common/aclocal.m4) +AC_PREREQ(2.5)dnl +AC_INIT(Makefile.in) + +SIM_AC_COMMON + +dnl Options available in this module +SIM_AC_OPTION_INLINE(0) +SIM_AC_OPTION_ENDIAN(LITTLE_ENDIAN) +SIM_AC_OPTION_ALIGNMENT(FORCED_ALIGNMENT) +SIM_AC_OPTION_HOSTENDIAN +SIM_AC_OPTION_WARNINGS +SIM_AC_OPTION_RESERVED_BITS(1) +SIM_AC_OPTION_BITSIZE(32,31) + +dnl For UNIX emulation +AC_CHECK_HEADERS(stdlib.h unistd.h string.h strings.h) +AC_CHECK_FUNCS(getpid kill) + +SIM_AC_OUTPUT |