mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 17:39:31 +00:00
605dcc2ad8
Since the test program fails to compile, configure thinks compiler is not having thread support and bails out (From OE-Core rev: 232f97405a3e69cf9e54d4de0a8f1593da747603) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
783 B
Diff
25 lines
783 B
Diff
From 5314a4815006e3a42f3ce265d1597db700cdb784 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Fri, 26 Feb 2021 23:14:20 -0800
|
|
Subject: [PATCH] ax_cpp11.m4: Include <memory> header
|
|
|
|
This is needed for std::shared_ptr
|
|
GCC-11 throws errors if header is not included
|
|
|
|
Upstream-Status: Submitted [https://github.com/isc-projects/kea/pull/120]
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
m4macros/ax_cpp11.m4 | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/m4macros/ax_cpp11.m4
|
|
+++ b/m4macros/ax_cpp11.m4
|
|
@@ -182,6 +182,7 @@ for retry in "none" "--std=c++11" "--std
|
|
AC_COMPILE_IFELSE(
|
|
[AC_LANG_PROGRAM(
|
|
[#include <thread>
|
|
+ #include <memory>
|
|
std::shared_ptr<std::thread> th;],
|
|
[th.reset(new std::thread([[]]() { return; }));
|
|
th->join();])],
|