[OE-core][PATCH] gcc: depend on zstd

2023-09-27 Thread Sean Nyekjaer
Add zstd LTO support for the nativesdk compiler. --- % x86_64-oe-linux-gcc -v [...] Supported LTO compression algorithms: zlib zstd gcc version 12.2.0 (GCC) % x86_64-oesdk-linux-gcc -v [...] Supported LTO compression algorithms: zlib gcc version 12.2.0 (GCC) --- Signed-off-by: Sean Nyekjaer

Re: [OE-core][PATCH] gcc: depend on zstd

2023-09-27 Thread Richard Purdie
On Wed, 2023-09-27 at 12:49 +0200, Sean Nyekjaer wrote: > Add zstd LTO support for the nativesdk compiler. This is changing it for the target compiler as well?  Perhaps also mention it brings it into sync with gcc-cross (assuming it does?). Cheers, Richard -=-=-=-=-=-=-=-=-=-=-=- Links: You r

Re: [OE-core][PATCH] gcc: depend on zstd

2023-09-27 Thread Sean Nyekjaer
> On 27 Sep 2023, at 13.17, Richard Purdie > wrote: > > On Wed, 2023-09-27 at 12:49 +0200, Sean Nyekjaer wrote: >> Add zstd LTO support for the nativesdk compiler. > > This is changing it for the target compiler as well? > > Perhaps also mention it brings it into sync with gcc-cross (assumi

Re: [OE-core][PATCH] gcc: depend on zstd

2023-09-27 Thread Richard Purdie
On Wed, 2023-09-27 at 13:22 +0200, Sean Nyekjaer wrote: > > > On 27 Sep 2023, at 13.17, Richard Purdie > > wrote: > > > > On Wed, 2023-09-27 at 12:49 +0200, Sean Nyekjaer wrote: > > > Add zstd LTO support for the nativesdk compiler. > > > > This is changing it for the target compiler as well?

[OE-core] [PATCH] gcc: depend on zstd-native

2022-06-01 Thread Jeremy Puhlman
Sharing sstate cache binaries between two systems, one with libzstd installed and the other without, leads to various gcc components being linked against the system libzstd and failing to run on the system with out it installed. Make zstd-native from our system available. Signed-off-by: Jeremy A.