From 59e2a8ed5ab9712c602fe64f0ae5f0ae48c0b6c5 Mon Sep 17 00:00:00 2001 From: Kadambini Nema Date: Mon, 19 Feb 2024 12:40:54 -0800 Subject: [PATCH] package/google-breakpad: fix missing include error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit src/common/module.cc: In member function ‘bool google_breakpad::Module::AddFunction(Function*)’: src/common/module.cc:194:52: error: ‘find_if’ is not a member of ‘std’; did you mean ‘find’? 194 | FunctionSet::iterator existing_function = std::find_if( | ^~~~~~~ | find Makefile:8309: recipe for target 'src/common/tools_mac_dump_syms_dump_syms_mac-module.o' failed This error is seen on gcc-14. https://chromium-review.googlesource.com/c/breakpad/breakpad/+/5137658 https://git.openembedded.org/meta-openembedded/tree/meta-oe/recipes-devtools/breakpad/breakpad/0001-Fixed-missing-include-for-std-find_if.patch Signed-off-by: Kadambini Nema Signed-off-by: Yann E. MORIN --- ...ixed-missing-include-for-std-find_if.patch | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 package/google-breakpad/0001-Fixed-missing-include-for-std-find_if.patch diff --git a/package/google-breakpad/0001-Fixed-missing-include-for-std-find_if.patch b/package/google-breakpad/0001-Fixed-missing-include-for-std-find_if.patch new file mode 100644 index 0000000000..141e12b613 --- /dev/null +++ b/package/google-breakpad/0001-Fixed-missing-include-for-std-find_if.patch @@ -0,0 +1,26 @@ +From 898a997855168c0e6a689072fefba89246271a5d Mon Sep 17 00:00:00 2001 +From: Nathan Moinvaziri +Date: Tue, 19 Dec 2023 14:35:05 -0800 +Subject: [PATCH] Fixed missing include for std::find_if. + +Throws an error when compiling on Windows. + +Change-Id: Ieb34c00cf199aaa1b45a440086c48b8ed363b3c7 +Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/5137658 +Reviewed-by: Ivan Penkov +Upstream: https://github.com/google/breakpad/commit/898a997855168c0e6a689072fefba89246271a5d +Signed-off-by: Kadambini Nema +--- + +diff --git a/src/common/module.cc b/src/common/module.cc +index 0eb5aad..b6f5da7 100644 +--- a/src/common/module.cc ++++ b/src/common/module.cc +@@ -42,6 +42,7 @@ + #include + #include + ++#include + #include + #include + #include