diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2019-06-05 07:54:15 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-06-15 16:45:33 -0700 |
commit | bf076ef0ab29abc67dcb65e66f59cad8002e8833 (patch) | |
tree | e6d2594e87a31b8ab30f034e10aba7d8da21aa61 | |
parent | 229a047d9d1fc9abccb6bc3ee2fcfb1f70ef5d8d (diff) | |
download | meta-openembedded-bf076ef0ab29abc67dcb65e66f59cad8002e8833.tar.gz |
cpprest: temporary ignore deprecated-copy and redundant-move errors detected by gcc9
* until it's properly fixed in upstream:
https://github.com/Microsoft/cpprestsdk/issues/1099
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/cpprest/cpprest_2.10.13.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/cpprest/cpprest_2.10.13.bb b/meta-oe/recipes-support/cpprest/cpprest_2.10.13.bb index 1b1265fe35..0704512110 100644 --- a/meta-oe/recipes-support/cpprest/cpprest_2.10.13.bb +++ b/meta-oe/recipes-support/cpprest/cpprest_2.10.13.bb | |||
@@ -17,3 +17,7 @@ SRCREV= "9d8f544001cb74544de6dc8c565592f7e2626d6e" | |||
17 | S = "${WORKDIR}/git" | 17 | S = "${WORKDIR}/git" |
18 | 18 | ||
19 | inherit cmake pkgconfig | 19 | inherit cmake pkgconfig |
20 | |||
21 | # Temporary until https://github.com/Microsoft/cpprestsdk/issues/1099 | ||
22 | # is fixed properly | ||
23 | CXXFLAGS += "-Wno-error=deprecated-copy -Wno-error=redundant-move" | ||