glmark2: Fix build with gcc12

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj 2022-04-12 11:44:04 -07:00
parent c03a543d93
commit 4cde452b19
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,24 @@
From 45cb02332b38b2059e7e44369c3d8684492a7def Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Tue, 12 Apr 2022 11:41:41 -0700
Subject: [PATCH] libmatrix: Include missing <utility> header
Fixes build with gcc12
| ../git/src/libmatrix/program.h:43:21: error: 'exchange' is not a member of 'std' | 43 | ready_(std::exchange(shader.ready_, false)), | | ^~~~~~~~
Upstream-Status: Submitted [https://github.com/glmark2/glmark2/pull/174]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
src/libmatrix/program.h | 1 +
1 file changed, 1 insertion(+)
--- a/src/libmatrix/program.h
+++ b/src/libmatrix/program.h
@@ -13,6 +13,7 @@
#define PROGRAM_H_
#include <string>
+#include <utility>
#include <vector>
#include <map>
#include "mat.h"

View File

@ -17,6 +17,7 @@ SRC_URI = " \
git://github.com/glmark2/glmark2.git;protocol=https;branch=master \
file://0001-fix-dispmanx-build.patch \
file://0002-run-dispmanx-fullscreen.patch \
file://0001-libmatrix-Include-missing-utility-header.patch \
"
SRCREV = "0858b450cd88c84a15b99dda9698d44e7f7e8c70"