Commit b9af8fb0 by David Edelsohn Committed by David Edelsohn

rs6000.h (MY_ISCOFF): Add numeric value of U803XTOCMAGIC.

        * rs6000.h (MY_ISCOFF): Add numeric value of U803XTOCMAGIC.
        * x-aix31 (INSTALL): Delete.

From-SVN: r18027
parent a4dee8a5
Mon Feb 16 16:13:43 1998 David Edelsohn <edelsohn@mhpcc.edu>
* rs6000.h (MY_ISCOFF): Add numeric value of U803XTOCMAGIC.
* x-aix31 (INSTALL): Delete.
Mon Feb 16 09:24:32 1998 Gavin Koch <gavin@cygnus.com>
* mips/mips.c (mips_expand_epilogue): Update tsize_rtx if
......
......@@ -2052,10 +2052,14 @@ typedef struct rs6000_args
/* Define if the object format being used is COFF or a superset. */
#define OBJECT_FORMAT_COFF
/* Define the magic numbers that we recognize as COFF. */
/* Define the magic numbers that we recognize as COFF.
AIX 4.3 adds U803XTOCMAGIC (0757) for 64-bit executables, but collect2.c
does not include files in the correct order to conditionally define
the symbolic name in this macro. */
#define MY_ISCOFF(magic) \
((magic) == U802WRMAGIC || (magic) == U802ROMAGIC || (magic) == U802TOCMAGIC)
((magic) == U802WRMAGIC || (magic) == U802ROMAGIC \
|| (magic) == U802TOCMAGIC || (magic) == 0757)
/* This is the only version of nm that collect2 can work with. */
#define REAL_NM_FILE_NAME "/usr/ucb/nm"
......
# configuration for IBM rs6000 running aix
INSTALL=/usr/ucb/install -c
# Show we need to use the C version of ALLOCA
ALLOCA=alloca.o
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment