mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 12:50:22 +02:00
lxc: fix compile failure on gcc10
Since oe-core is upgrading gcc to 10.1, there is a compile failure ... |../../../lxc-4.0.2/src/lxc/cgroups/cgfsng.c:2100:10: error: writing 1 byte into a region of size 0 [-Werror=stringop-overflow=] | 2100 | *slash = '\0'; ... Add gcc option `-Werror=stringop-overflow' to workaround the issue Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
This commit is contained in:
parent
7f6e10c4d1
commit
05dd164818
|
@ -67,7 +67,7 @@ ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}"
|
|||
|
||||
EXTRA_OECONF += "--enable-log-src-basename"
|
||||
|
||||
CFLAGS_append = " -Wno-error=deprecated-declarations"
|
||||
CFLAGS_append = " -Wno-error=deprecated-declarations -Wno-error=stringop-overflow"
|
||||
|
||||
PACKAGECONFIG ??= "templates \
|
||||
${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)} \
|
||||
|
|
Loading…
Reference in New Issue
Block a user