CROSS_ASSEMBLE becomes CROSS_COMPILE to make config simpler. i386

support for aout now tested against an installed customers sun4 cross.
Added REVERSE_SORT_RELOCS.
This commit is contained in:
K. Richard Pixley 1991-04-08 15:49:47 +00:00
parent 66eeea27cc
commit 3cc6716da4
3 changed files with 9 additions and 9 deletions

View File

@ -459,13 +459,13 @@ char **where;
{
symbolS *symbolP;
#ifdef CROSS_ASSEMBLE
#ifdef CROSS_COMPILE
/* Gotta do md_ byte-ordering stuff for string_byte_count first - KWK */
md_number_to_chars(*where, string_byte_count, sizeof(string_byte_count));
*where += sizeof(string_byte_count);
#else /* CROSS_ASSEMBLE */
#else /* CROSS_COMPILE */
append(where, (char *) &string_byte_count, (unsigned long) sizeof(string_byte_count));
#endif /* CROSS_ASSEMBLE */
#endif /* CROSS_COMPILE */
for(symbolP = symbol_rootP; symbolP; symbolP = symbol_next(symbolP)) {
if(S_GET_NAME(symbolP))

View File

@ -60,9 +60,9 @@ to the Free Software Foundation, 675 Mass Ave, Cambridge, MA
#include "targ-cpu.h"
/* bout uses host byte order for headers */
#ifdef CROSS_ASSEMBLE
#undef CROSS_ASSEMBLE
#endif /* CROSS_ASSEMBLE */
#ifdef CROSS_COMPILE
#undef CROSS_COMPILE
#endif /* CROSS_COMPILE */
/* We want \v. */
#define BACKSLASH_V 1

View File

@ -8,9 +8,9 @@
#define TE_IC960 1
/* intel uses host byte order for headers */
#ifdef CROSS_ASSEMBLE
#undef CROSS_ASSEMBLE
#endif /* CROSS_ASSEMBLE */
#ifdef CROSS_COMPILE
#undef CROSS_COMPILE
#endif /* CROSS_COMPILE */
#define OBJ_COFF_OMIT_OPTIONAL_HEADER
#define LOCAL_LABEL(name) ( (name[0] =='L') \