Re: [OE-core] [PATCH 07/10] kea: Remove -fvisibility-inlines-hidden from C++ flags

2024-05-07 Thread Alexander Kanavin
On Tue, 7 May 2024 at 03:15, Khem Raj via lists.openembedded.org wrote: > +CXXFLAGS:remove = "-fvisibility-inlines-hidden" This seems like the wrong way around. Why do we have it as a global glibc/musl setting in the first place? Shouldn't we just remove it from there? I did some digging and

[OE-core] [PATCH 07/10] kea: Remove -fvisibility-inlines-hidden from C++ flags

2024-05-06 Thread Khem Raj
This fixes build with gcc-14, where default visibility is extended to inline functions and getAll() function now falls into this category and functions are marked hidden resulting in linking errors Fixes