commit a83623a54a375d3ae9198a135b94379881a2b7a5 was added to oe-core which removes CXXFLAGS and CFLAGS causing compilation for ceph to fail.
Set CXXFLAGS and CFLAGS to resolve the issue. Signed-off-by: Sakib Sajal <[email protected]> --- recipes-extended/ceph/ceph_15.2.15.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/recipes-extended/ceph/ceph_15.2.15.bb b/recipes-extended/ceph/ceph_15.2.15.bb index c72953a..17dbcf3 100644 --- a/recipes-extended/ceph/ceph_15.2.15.bb +++ b/recipes-extended/ceph/ceph_15.2.15.bb @@ -66,6 +66,9 @@ EXTRA_OECMAKE = "-DWITH_MANPAGE=OFF \ -DWITH_REENTRANT_STRSIGNAL=ON \ " +CXXFLAGS += "${HOST_CC_ARCH} ${TOOLCHAIN_OPTIONS}" +CFLAGS += "${HOST_CC_ARCH} ${TOOLCHAIN_OPTIONS}" + export STAGING_DIR_HOST do_configure:prepend () { -- 2.33.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#7093): https://lists.yoctoproject.org/g/meta-virtualization/message/7093 Mute This Topic: https://lists.yoctoproject.org/mt/89824093/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
