diff options
author | Khem Raj <raj.khem@gmail.com> | 2022-03-12 11:18:22 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-15 08:40:09 +0000 |
commit | 55e7265f47270b56429e65f076ecfbe24f2db7c2 (patch) | |
tree | ca8a114e290abf5237d619e17eb1bf44c410d0c8 /meta/site/powerpc64-linux | |
parent | c31e0dc8c570648d0f887718491ca4a66616a250 (diff) | |
download | poky-55e7265f47270b56429e65f076ecfbe24f2db7c2.tar.gz |
ppc/siteinfo: Fix differences between musl and glibc
There is a key difference between glibc and musl when it comes to
ppc/ppc64 and that is that musl does not support 128-bit long IBM doubles format
it only supports 128-bit long double IEEE format on ppc64 alone.
this change ensures that we account for this change, so far we have been
doing it a bit wrong for ppc/musl case.
(From OE-Core rev: 28cb148c1375ba242addba80b0f68e06d2a4d874)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/site/powerpc64-linux')
-rw-r--r-- | meta/site/powerpc64-linux | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/site/powerpc64-linux b/meta/site/powerpc64-linux index 820a4b8440..18f9f29a6b 100644 --- a/meta/site/powerpc64-linux +++ b/meta/site/powerpc64-linux | |||
@@ -4,7 +4,6 @@ ac_cv_sizeof_double=${ac_cv_sizeof_double=8} | |||
4 | ac_cv_sizeof_float=${ac_cv_sizeof_float=4} | 4 | ac_cv_sizeof_float=${ac_cv_sizeof_float=4} |
5 | ac_cv_sizeof_int=${ac_cv_sizeof_int=4} | 5 | ac_cv_sizeof_int=${ac_cv_sizeof_int=4} |
6 | ac_cv_sizeof_long=${ac_cv_sizeof_long=8} | 6 | ac_cv_sizeof_long=${ac_cv_sizeof_long=8} |
7 | ac_cv_sizeof_long_double=${ac_cv_sizeof_long_double=16} | ||
8 | ac_cv_sizeof_long_int=${ac_cv_sizeof_long_int=8} | 7 | ac_cv_sizeof_long_int=${ac_cv_sizeof_long_int=8} |
9 | ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8} | 8 | ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8} |
10 | ac_cv_sizeof_long_long_int=${ac_cv_sizeof_long_long_int=8} | 9 | ac_cv_sizeof_long_long_int=${ac_cv_sizeof_long_long_int=8} |