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-glibc | |
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-glibc')
-rw-r--r-- | meta/site/powerpc64-linux-glibc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/site/powerpc64-linux-glibc b/meta/site/powerpc64-linux-glibc new file mode 100644 index 0000000000..dc5c28524b --- /dev/null +++ b/meta/site/powerpc64-linux-glibc | |||
@@ -0,0 +1,2 @@ | |||
1 | ac_cv_sizeof_long_double=${ac_cv_sizeof_long_double=16} | ||
2 | |||