diff options
author | Anthony Green <green@redhat.com> | 2009-09-10 21:57:03 +0000 |
---|---|---|
committer | Anthony Green <green@redhat.com> | 2009-09-10 21:57:03 +0000 |
commit | 5c27d164d807fdd1f2eee400a81e74f210193118 (patch) | |
tree | 01e74ea0539961640048ceef9516f524ea371bfa /sim/moxie/configure.ac | |
parent | ce0bf48891e83c4aa7137bd66a6dd547d55e0ea1 (diff) | |
download | gdb-5c27d164d807fdd1f2eee400a81e74f210193118.zip gdb-5c27d164d807fdd1f2eee400a81e74f210193118.tar.gz gdb-5c27d164d807fdd1f2eee400a81e74f210193118.tar.bz2 |
Use common memory infrastructure and introduce device tree support
Diffstat (limited to 'sim/moxie/configure.ac')
-rw-r--r-- | sim/moxie/configure.ac | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sim/moxie/configure.ac b/sim/moxie/configure.ac index 78ef414..4617349 100644 --- a/sim/moxie/configure.ac +++ b/sim/moxie/configure.ac @@ -3,12 +3,20 @@ AC_PREREQ(2.59)dnl AC_INIT(Makefile.in) AC_CONFIG_HEADER(config.h:config.in) +AC_CHECK_TOOL(DTC, dtc) + sinclude(../common/aclocal.m4) # Bugs in autoconf 2.59 break the call to SIM_AC_COMMON, hack around # it by inlining the macro's contents. sinclude(../common/common.m4) +SIM_AC_OPTION_ENDIAN(BIG_ENDIAN) +SIM_AC_OPTION_ALIGNMENT(STRICT_ALIGNMENT) +SIM_AC_OPTION_HOSTENDIAN +SIM_AC_OPTION_ENVIRONMENT +SIM_AC_OPTION_INLINE() + AC_CHECK_HEADERS(unistd.h) SIM_AC_OUTPUT |