diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-03-28 05:34:55 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-28 05:35:29 -0400 |
commit | 9943d3185abb9aa3e7269ece80d00e9020187ec6 (patch) | |
tree | 7cf9b677ea054ed558281fadfdf2c5c71401199d /sim/avr/config.in | |
parent | eca5fe422e2650fcb6a551af11bcf8de181f97e9 (diff) | |
download | gdb-9943d3185abb9aa3e7269ece80d00e9020187ec6.zip gdb-9943d3185abb9aa3e7269ece80d00e9020187ec6.tar.gz gdb-9943d3185abb9aa3e7269ece80d00e9020187ec6.tar.bz2 |
sim: avr: convert to nrun.o
Looks like a lot more work than actually was -- the main decode loop
was de-indented by dropping the loop as a step-once function.
Diffstat (limited to 'sim/avr/config.in')
-rw-r--r-- | sim/avr/config.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sim/avr/config.in b/sim/avr/config.in index 5ded703..6003e58 100644 --- a/sim/avr/config.in +++ b/sim/avr/config.in @@ -1,5 +1,8 @@ /* config.in. Generated from configure.ac by autoheader. */ +/* Define if building universal (internal helper macro) */ +#undef AC_APPLE_UNIVERSAL_BUILD + /* Define to 1 if translation of program messages to the user's native language is requested. */ #undef ENABLE_NLS @@ -135,6 +138,18 @@ #endif +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +#if defined AC_APPLE_UNIVERSAL_BUILD +# if defined __BIG_ENDIAN__ +# define WORDS_BIGENDIAN 1 +# endif +#else +# ifndef WORDS_BIGENDIAN +# undef WORDS_BIGENDIAN +# endif +#endif + /* Define to 1 if on MINIX. */ #undef _MINIX |