diff options
author | Peter Kjellerstedt <pkj@axis.com> | 2025-06-24 23:50:53 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-06-26 15:28:47 +0100 |
commit | 138f17c9e982443ea9e8a4b160004a37dad61882 (patch) | |
tree | 9de1fb3fa03cc8283d5ae80b391a4ae2d95a8e62 | |
parent | ba863f972b6392b59818552db4345814a778554b (diff) | |
download | poky-master-next.tar.gz |
glibc: Use :append to add to CCmaster-next
Due to the recent changes to how the toolchain variables are initialized
via inherit_defer, it is no longer possible to add to CC using the +=
operator. Instead, CC:append needs to be used.
(From OE-Core rev: bca62b863a9284e8b97cbf32d6bba0e3aa900072)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/glibc/glibc_2.41.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/glibc/glibc_2.41.bb b/meta/recipes-core/glibc/glibc_2.41.bb index 7771fac041..2ef738f5b4 100644 --- a/meta/recipes-core/glibc/glibc_2.41.bb +++ b/meta/recipes-core/glibc/glibc_2.41.bb | |||
@@ -111,7 +111,7 @@ do_configure () { | |||
111 | } | 111 | } |
112 | 112 | ||
113 | LDFLAGS += "-fuse-ld=bfd" | 113 | LDFLAGS += "-fuse-ld=bfd" |
114 | CC += "-fuse-ld=bfd" | 114 | CC:append = " -fuse-ld=bfd" |
115 | 115 | ||
116 | do_compile () { | 116 | do_compile () { |
117 | base_do_compile | 117 | base_do_compile |