aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/pegtl
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2020-08-16 23:14:01 -0700
committerKhem Raj <raj.khem@gmail.com>2020-08-17 12:26:41 -0700
commitde793ef7ac88c74df5cbd07962d98821649225c1 (patch)
tree6e365dddb28e173d554545d96480aea98a0c8658 /meta-oe/recipes-extended/pegtl
parent5d949d9322954f7b48b4252a091de4e0c6b85115 (diff)
downloadmeta-openembedded-contrib-de793ef7ac88c74df5cbd07962d98821649225c1.tar.gz
pegtl: Disable type-limits warning
gcc 10.2 warns with this rep_one_min_max.hpp:40:26: error: comparison of unsigned expression in '>= 0' is always true [-Werror=type-limits] Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/pegtl')
-rw-r--r--meta-oe/recipes-extended/pegtl/pegtl_2.8.3.bb2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/pegtl/pegtl_2.8.3.bb b/meta-oe/recipes-extended/pegtl/pegtl_2.8.3.bb
index 92741d8178..01233699a5 100644
--- a/meta-oe/recipes-extended/pegtl/pegtl_2.8.3.bb
+++ b/meta-oe/recipes-extended/pegtl/pegtl_2.8.3.bb
@@ -10,3 +10,5 @@ SRC_URI = "git://github.com/taocpp/PEGTL.git;protocol=https;branch=2.x \
inherit cmake
S = "${WORKDIR}/git"
+
+CXXFLAGS += " -Wno-error=type-limits"