diff options
author | Changqing Li <changqing.li@windriver.com> | 2019-04-11 16:20:46 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-04-12 09:29:06 +0100 |
commit | bf45a3e222bda60685bf3b04c31401fce37cdd13 (patch) | |
tree | a4c5dfc91eb2b3e67b8afc030eb58d91e5cd05a8 | |
parent | 59fcee90de0cbb5b6b8333ab2b0e36214b174e52 (diff) | |
download | poky-bf45a3e222bda60685bf3b04c31401fce37cdd13.tar.gz |
cogl: fix compile error caused by -Werror=maybe-uninitialized
When enable DEBUG_BUILD, cogl compile failed with error:
| ../../cogl-1.22.2/cogl/driver/gl/gles/cogl-driver-gles.c:217:17: error: 'gltype' may be used uninitialized in this function [-Werror=maybe-uninitialized]
| *out_gltype = gltype;
| ~~~~~~~~~~~~^~~~~~~~
| ../../cogl-1.22.2/cogl/driver/gl/gles/cogl-driver-gles.c:213:22: error: 'glintformat' may be used uninitialized in this function [-Werror=maybe-uninitialized]
| *out_glintformat = glintformat;
| ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~
Source: https://gitlab.gnome.org/GNOME/cogl/blob/master/cogl/driver/gl/gles/cogl-driver-gles.c
it can handle correctly, so fix with -Wnoerror
(From OE-Core rev: 72aace12a499db8d1340c8705b177e6f191d853d)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-graphics/cogl/cogl-1.0.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-graphics/cogl/cogl-1.0.inc b/meta/recipes-graphics/cogl/cogl-1.0.inc index 7a79aa789a..3e392fa5ec 100644 --- a/meta/recipes-graphics/cogl/cogl-1.0.inc +++ b/meta/recipes-graphics/cogl/cogl-1.0.inc | |||
@@ -31,6 +31,7 @@ EXTRA_OECONF += "--enable-examples-install \ | |||
31 | --disable-gles1 \ | 31 | --disable-gles1 \ |
32 | --disable-cairo \ | 32 | --disable-cairo \ |
33 | " | 33 | " |
34 | DEBUG_OPTIMIZATION_append = " -Wno-error=maybe-uninitialized" | ||
34 | 35 | ||
35 | # OpenGL/GLX | 36 | # OpenGL/GLX |
36 | PACKAGECONFIG[glx] = "--enable-gl --enable-glx,--disable-gl --disable-glx,${EDEPENDS_GL} ${EDEPENDS_X11},${ERDEPENDS_GL}" | 37 | PACKAGECONFIG[glx] = "--enable-gl --enable-glx,--disable-gl --disable-glx,${EDEPENDS_GL} ${EDEPENDS_X11},${ERDEPENDS_GL}" |