aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorK. Richard Pixley <rich@cygnus>1991-04-08 15:49:47 +0000
committerK. Richard Pixley <rich@cygnus>1991-04-08 15:49:47 +0000
commit3cc6716da4127068ee5e2265b1c024f3e0f037e2 (patch)
tree8e79a30b15d889ce709019a0b10097a5c02f8577 /gas
parent66eeea27ccfd428e3813dda55dc3497cb5147532 (diff)
downloadgdb-3cc6716da4127068ee5e2265b1c024f3e0f037e2.zip
gdb-3cc6716da4127068ee5e2265b1c024f3e0f037e2.tar.gz
gdb-3cc6716da4127068ee5e2265b1c024f3e0f037e2.tar.bz2
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.
Diffstat (limited to 'gas')
-rw-r--r--gas/config/obj-bout.c6
-rw-r--r--gas/config/obj-bout.h6
-rw-r--r--gas/config/te-ic960.h6
3 files changed, 9 insertions, 9 deletions
diff --git a/gas/config/obj-bout.c b/gas/config/obj-bout.c
index abfdaa8..314edcc 100644
--- a/gas/config/obj-bout.c
+++ b/gas/config/obj-bout.c
@@ -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))
diff --git a/gas/config/obj-bout.h b/gas/config/obj-bout.h
index fc95a35..5ba18f1 100644
--- a/gas/config/obj-bout.h
+++ b/gas/config/obj-bout.h
@@ -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
diff --git a/gas/config/te-ic960.h b/gas/config/te-ic960.h
index 15c3064..165a780 100644
--- a/gas/config/te-ic960.h
+++ b/gas/config/te-ic960.h
@@ -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') \