diff options
author | Khem Raj <raj.khem@gmail.com> | 2025-05-20 23:19:58 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-05-22 14:36:49 +0100 |
commit | 768cde81b1cc9a2b2f9c7ab91a3367fd7cedacfd (patch) | |
tree | 7a8a85bd78d69b9148b4c3f1950e7ad9c815d865 | |
parent | 4adecef1adaac2f1bf4ea0fe945f4ad95e939aaa (diff) | |
download | poky-768cde81b1cc9a2b2f9c7ab91a3367fd7cedacfd.tar.gz |
pseudo: Pin to using GCC compiler
It uses compiler built-ins which clang does not provide
(From OE-Core rev: 0b8ce7e7f5e04fc078014cdfb25cf3502dbf4d49)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/pseudo/pseudo_git.bb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/recipes-devtools/pseudo/pseudo_git.bb b/meta/recipes-devtools/pseudo/pseudo_git.bb index d7528d336b..4693afcaf6 100644 --- a/meta/recipes-devtools/pseudo/pseudo_git.bb +++ b/meta/recipes-devtools/pseudo/pseudo_git.bb | |||
@@ -25,3 +25,10 @@ TARGET_CC_ARCH:remove = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_TIME_BITS | |||
25 | 25 | ||
26 | # error: use of undeclared identifier '_STAT_VER' | 26 | # error: use of undeclared identifier '_STAT_VER' |
27 | COMPATIBLE_HOST:libc-musl = 'null' | 27 | COMPATIBLE_HOST:libc-musl = 'null' |
28 | |||
29 | #| ./ports/linux/pseudo_wrappers.c:80:14: error: use of unknown builtin '__builtin_apply' [-Wimplicit-function-declaration] | ||
30 | #| void *res = __builtin_apply((void (*)()) real_syscall, __builtin_apply_args(), sizeof(long) * 7); | ||
31 | #| ^ | ||
32 | #| ./ports/linux/pseudo_wrappers.c:80:57: error: use of unknown builtin '__builtin_apply_args' [-Wimplicit-function-declaration] | ||
33 | #| void *res = __builtin_apply((void (*)()) real_syscall, __builtin_apply_args(), sizeof(long) * 7); | ||
34 | TOOLCHAIN = "gcc" | ||