diff options
-rw-r--r-- | meta-oe/recipes-benchmark/glmark2/files/0001-libmatrix-Include-missing-utility-header.patch | 24 | ||||
-rw-r--r-- | meta-oe/recipes-benchmark/glmark2/glmark2_git.bb | 1 |
2 files changed, 25 insertions, 0 deletions
diff --git a/meta-oe/recipes-benchmark/glmark2/files/0001-libmatrix-Include-missing-utility-header.patch b/meta-oe/recipes-benchmark/glmark2/files/0001-libmatrix-Include-missing-utility-header.patch new file mode 100644 index 0000000000..959a18e5eb --- /dev/null +++ b/meta-oe/recipes-benchmark/glmark2/files/0001-libmatrix-Include-missing-utility-header.patch | |||
@@ -0,0 +1,24 @@ | |||
1 | From 45cb02332b38b2059e7e44369c3d8684492a7def Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Tue, 12 Apr 2022 11:41:41 -0700 | ||
4 | Subject: [PATCH] libmatrix: Include missing <utility> header | ||
5 | |||
6 | Fixes build with gcc12 | ||
7 | | ../git/src/libmatrix/program.h:43:21: error: 'exchange' is not a member of 'std' | 43 | ready_(std::exchange(shader.ready_, false)), | | ^~~~~~~~ | ||
8 | |||
9 | Upstream-Status: Submitted [https://github.com/glmark2/glmark2/pull/174] | ||
10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
11 | --- | ||
12 | src/libmatrix/program.h | 1 + | ||
13 | 1 file changed, 1 insertion(+) | ||
14 | |||
15 | --- a/src/libmatrix/program.h | ||
16 | +++ b/src/libmatrix/program.h | ||
17 | @@ -13,6 +13,7 @@ | ||
18 | #define PROGRAM_H_ | ||
19 | |||
20 | #include <string> | ||
21 | +#include <utility> | ||
22 | #include <vector> | ||
23 | #include <map> | ||
24 | #include "mat.h" | ||
diff --git a/meta-oe/recipes-benchmark/glmark2/glmark2_git.bb b/meta-oe/recipes-benchmark/glmark2/glmark2_git.bb index 47d927397c..1406f68b05 100644 --- a/meta-oe/recipes-benchmark/glmark2/glmark2_git.bb +++ b/meta-oe/recipes-benchmark/glmark2/glmark2_git.bb | |||
@@ -17,6 +17,7 @@ SRC_URI = " \ | |||
17 | git://github.com/glmark2/glmark2.git;protocol=https;branch=master \ | 17 | git://github.com/glmark2/glmark2.git;protocol=https;branch=master \ |
18 | file://0001-fix-dispmanx-build.patch \ | 18 | file://0001-fix-dispmanx-build.patch \ |
19 | file://0002-run-dispmanx-fullscreen.patch \ | 19 | file://0002-run-dispmanx-fullscreen.patch \ |
20 | file://0001-libmatrix-Include-missing-utility-header.patch \ | ||
20 | " | 21 | " |
21 | SRCREV = "0858b450cd88c84a15b99dda9698d44e7f7e8c70" | 22 | SRCREV = "0858b450cd88c84a15b99dda9698d44e7f7e8c70" |
22 | 23 | ||