From f2d7b948c11e7dc3e4ea58b4dd5b0b2ebdbe13d0 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 6 Dec 2018 11:54:32 -0800 Subject: qtconnectivity: Ignore -Waddress-of-temporary when using clang Helps in making bluez detection succeed Signed-off-by: Khem Raj --- ...g-warning-about-address-of-temp-in-config.patch | 40 ++++++++++++++++++++++ recipes-qt/qt5/qtconnectivity_git.bb | 2 ++ 2 files changed, 42 insertions(+) create mode 100644 recipes-qt/qt5/qtconnectivity/0001-Ignore-clang-warning-about-address-of-temp-in-config.patch diff --git a/recipes-qt/qt5/qtconnectivity/0001-Ignore-clang-warning-about-address-of-temp-in-config.patch b/recipes-qt/qt5/qtconnectivity/0001-Ignore-clang-warning-about-address-of-temp-in-config.patch new file mode 100644 index 00000000..a0c2ee72 --- /dev/null +++ b/recipes-qt/qt5/qtconnectivity/0001-Ignore-clang-warning-about-address-of-temp-in-config.patch @@ -0,0 +1,40 @@ +From 162749d36f4bdea62d456516ae2bbcdc84b9ba87 Mon Sep 17 00:00:00 2001 +From: Khem Raj +Date: Thu, 6 Dec 2018 13:21:23 -0800 +Subject: [PATCH] Ignore clang warning about address of temp in + config.tests/bluez + +There is a similar error with gcc which is suppressed by using +-fpermissive, clang however is more concerned and has specific flag for +it, this flag is not implemented in gcc so we can not use it via general +cmdline options to compiler, so resort to using diagnostic pragma + +Upstream-Status: Pending + +Signed-off-by: Khem Raj +--- + config.tests/bluez/main.cpp | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/config.tests/bluez/main.cpp b/config.tests/bluez/main.cpp +index 3fe5ee09..8d1c968a 100644 +--- a/config.tests/bluez/main.cpp ++++ b/config.tests/bluez/main.cpp +@@ -30,11 +30,14 @@ + + int main() + { ++#pragma clang diagnostic push ++#pragma clang diagnostic ignored "-Waddress-of-temporary" + #ifdef BDADDR_NONE + bacmp(BDADDR_ANY, BDADDR_NONE); + #else + bacmp(BDADDR_ANY, BDADDR_LOCAL); + #endif ++#pragma clang diagnostic pop + + return 0; + } +-- +2.19.2 + diff --git a/recipes-qt/qt5/qtconnectivity_git.bb b/recipes-qt/qt5/qtconnectivity_git.bb index da0b9259..0e13bfd5 100644 --- a/recipes-qt/qt5/qtconnectivity_git.bb +++ b/recipes-qt/qt5/qtconnectivity_git.bb @@ -20,3 +20,5 @@ PACKAGECONFIG[bluez] = "-feature-bluez,-no-feature-bluez,${BLUEZ}" EXTRA_QMAKEVARS_CONFIGURE += "${PACKAGECONFIG_CONFARGS}" SRCREV = "d1cf8dad0e6d8d08b5c6f2f08d85a0e75b0bcf8a" + +SRC_URI += "file://0001-Ignore-clang-warning-about-address-of-temp-in-config.patch" -- cgit v1.2.3