diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2019-12-13 15:19:17 +0000 |
---|---|---|
committer | Nick Alcock <nick.alcock@oracle.com> | 2020-06-26 15:56:39 +0100 |
commit | e755667f94f2579056fb5210eed525dafebb96f3 (patch) | |
tree | 7d4024539b52d471f42cf6f3d9f61d72197043fa /gold/config.in | |
parent | 866706584c6622bd7f9f595c307422771ce1d564 (diff) | |
download | gdb-e755667f94f2579056fb5210eed525dafebb96f3.zip gdb-e755667f94f2579056fb5210eed525dafebb96f3.tar.gz gdb-e755667f94f2579056fb5210eed525dafebb96f3.tar.bz2 |
libctf, elfcpp, gold: do not assume that <byteswap.h> contains bswap_*
At least one C library (uclibc-ng) defines some of these only when
the compiler is GCC. We might as well test for all three cases and
handle any of them being missing.
Very similar code exists in libctf and split between elfcpp and gold:
fix both.
(Also sync up elfcpp with a change made to libctf swap.h a few months
ago: since there is no out-of-line definition of the bswap replacements,
they should be declared static inline, not just inline, to prevent the
linker generating out-of-line references to them.)
PR libctf/25120
libctf/
* configure.ac: Check for bswap_16, bswap_32, and bswap_64 decls.
* swap.h (bswap_16): Do not assume that presence of <byteswap.h>
means this is declared.
(bswap_32): Likewise.
(bswap_64): Likewise.
(bswap_identity_64): Remove, unused.
* configure: Regenerated.
* config.h.in: Likewise.
gold/
* configure.ac: Check for bswap_16, bswap_32, and bswap_64 decls.
* configure: Regenerated.
* config.h.in: Likewise.
elfcpp/
* elfcpp_swap.h (bswap_16): Do not assume that presence of
<byteswap.h> means this is declared. Make static inline, matching
recent change to libctf, since there is no non-inline definition
of these functions.
(bswap_32): Likewise.
(bswap_64): Likewise.
Diffstat (limited to 'gold/config.in')
-rw-r--r-- | gold/config.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gold/config.in b/gold/config.in index 7bac34a..aaad1be 100644 --- a/gold/config.in +++ b/gold/config.in @@ -52,6 +52,18 @@ don't. */ #undef HAVE_DECL_BASENAME +/* Define to 1 if you have the declaration of `bswap_16', and to 0 if you + don't. */ +#undef HAVE_DECL_BSWAP_16 + +/* Define to 1 if you have the declaration of `bswap_32', and to 0 if you + don't. */ +#undef HAVE_DECL_BSWAP_32 + +/* Define to 1 if you have the declaration of `bswap_64', and to 0 if you + don't. */ +#undef HAVE_DECL_BSWAP_64 + /* Define to 1 if you have the declaration of `ffs', and to 0 if you don't. */ #undef HAVE_DECL_FFS |