diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-10-23 10:26:00 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-10-24 15:18:54 +0100 |
commit | 3ad0baf6fd1ad046080602c4c080bd8ba7099f7c (patch) | |
tree | d9b9cb82cb6b461a5bc6adeb4e95221a91773f94 | |
parent | 0fac8e96f73dc3cd885f2590615e0e52aab42786 (diff) | |
download | poky-3ad0baf6fd1ad046080602c4c080bd8ba7099f7c.tar.gz |
time64.inc: Exclude pseudo from the 32bit-time warnings
pseudo has to wrap all glibc calls including the 32 bit ones so
this warning is a false positive.
(From OE-Core rev: 13f8b50f055be219aed50c62c5f7552c4c2f18f2)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/distro/include/time64.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/conf/distro/include/time64.inc b/meta/conf/distro/include/time64.inc index f939f9b7c7..2200144719 100644 --- a/meta/conf/distro/include/time64.inc +++ b/meta/conf/distro/include/time64.inc | |||
@@ -39,6 +39,10 @@ INSANE_SKIP:append:pn-glibc-y2038-tests = " 32bit-time" | |||
39 | # /usr/lib/strace/ptest/tests/ioctl_termios uses 32-bit api 'ioctl' | 39 | # /usr/lib/strace/ptest/tests/ioctl_termios uses 32-bit api 'ioctl' |
40 | INSANE_SKIP:append:pn-strace = " 32bit-time" | 40 | INSANE_SKIP:append:pn-strace = " 32bit-time" |
41 | 41 | ||
42 | # Pseudo has to wrap all glibc calls including the 32 bit ones even | ||
43 | # if it doesn't use them itself | ||
44 | INSANE_SKIP:append:pseudo = " 32bit-time" | ||
45 | |||
42 | # Additionally cargo_common class (i.e. everything written in rust) | 46 | # Additionally cargo_common class (i.e. everything written in rust) |
43 | # has the same INSANE_SKIP setting. | 47 | # has the same INSANE_SKIP setting. |
44 | # Please check the comment in meta/classes-recipe/cargo_common.bbclass | 48 | # Please check the comment in meta/classes-recipe/cargo_common.bbclass |