diff options
author | James Bowman <james.bowman@ftdichip.com> | 2015-03-23 19:20:59 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-28 02:12:33 -0400 |
commit | f46e4eb78ba55e8bf8dedd98d7fe354729181710 (patch) | |
tree | 51139a283ac4c3a5250a0665cf8d2323709fc9b9 /sim/ft32/configure.ac | |
parent | 113d38f929631fa14da98731eebfe97a44d035ce (diff) | |
download | gdb-f46e4eb78ba55e8bf8dedd98d7fe354729181710.zip gdb-f46e4eb78ba55e8bf8dedd98d7fe354729181710.tar.gz gdb-f46e4eb78ba55e8bf8dedd98d7fe354729181710.tar.bz2 |
sim: ft32: new port
FT32 is a new high performance 32-bit RISC core developed by FTDI for
embedded applications.
Diffstat (limited to 'sim/ft32/configure.ac')
-rw-r--r-- | sim/ft32/configure.ac | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sim/ft32/configure.ac b/sim/ft32/configure.ac new file mode 100644 index 0000000..2107f74 --- /dev/null +++ b/sim/ft32/configure.ac @@ -0,0 +1,15 @@ +dnl Process this file with autoconf to produce a configure script. +AC_PREREQ(2.64)dnl +AC_INIT(Makefile.in) +sinclude(../common/acinclude.m4) + +SIM_AC_COMMON + +SIM_AC_OPTION_ENDIAN(LITTLE_ENDIAN) +SIM_AC_OPTION_ALIGNMENT(STRICT_ALIGNMENT) +SIM_AC_OPTION_HOSTENDIAN +SIM_AC_OPTION_ENVIRONMENT +SIM_AC_OPTION_INLINE +SIM_AC_OPTION_WARNINGS + +SIM_AC_OUTPUT |