diff options
author | Alan Modra <amodra@gmail.com> | 2023-07-14 10:46:50 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2023-07-14 11:43:52 +0930 |
commit | 478409b71d3e80647904540e518897667bd352b2 (patch) | |
tree | ebbb973ced3d5d0843649bf28afc85e5868d3c94 /include/coff | |
parent | 0d8de8f255d3333c7a122c419f7f75f3c6c45df5 (diff) | |
download | gdb-478409b71d3e80647904540e518897667bd352b2.zip gdb-478409b71d3e80647904540e518897667bd352b2.tar.gz gdb-478409b71d3e80647904540e518897667bd352b2.tar.bz2 |
AIX_WEAK_SUPPORT
Making target code depend on a host define like _AIX52 is never
correct, so out it goes. Also, sort some config.bfd entries a little
to make it more obvious there is a config difference between aix5.1
and aix5.2. These two changes should make no difference to anything
in binutils. The gas define of AIX_WEAK_SUPPORT on the other hand was
wrong, so fix that. Finally, fix some testsuite fails on aix < 5.2 by
simply not running the tests.
include/
* coff/internal.h (C_WEAKEXT): Don't depend on _AIX52.
bfd/
* coffcode.h (coff_slurp_symbol_table): Don't depend on _AIX52.
(coff_classify_symbol): Likewise.
* config.bfd: Sort some entries.
gas/
* configure.ac (AIX_WEAK_SUPPORT): Don't set for aix5.[01].
* configure: Regenerate.
* testsuite/gas/ppc/aix.exp (xcoff-visibility-1*) Don't run
for aix < 5.2.
Diffstat (limited to 'include/coff')
-rw-r--r-- | include/coff/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/coff/internal.h b/include/coff/internal.h index 92a0abf..7a566ca 100644 --- a/include/coff/internal.h +++ b/include/coff/internal.h @@ -352,7 +352,7 @@ struct internal_aouthdr #define C_NULL_VALUE 0x00de1e00 /* Value for a C_NULL deleted entry. */ -#if defined _AIX52 || defined AIX_WEAK_SUPPORT +#ifdef AIX_WEAK_SUPPORT #undef C_WEAKEXT #define C_WEAKEXT C_AIX_WEAKEXT #endif |