summaryrefslogtreecommitdiff
path: root/import-layers/meta-openembedded/meta-oe/recipes-graphics/glcompbench/glcompbench/0001-build-Specify-std-c-11-on-cmdline.patch
blob: ffbc297f0e932fe4771f073f8720f71ad9e47823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
From 47bfef0dd83ed2e10ec4c615908ec926c4d5fe2e Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Wed, 19 Oct 2016 00:56:54 +0000
Subject: [PATCH] build: Specify -std=c++11 on cmdline

We use c++11 features so demand it explicitly from compiler

Fixes
| ../src/libmatrix/shader-source.cc:37:10: error: no member named 'unique_ptr' in namespace 'std'
|     std::unique_ptr<std::istream> is_ptr(Util::get_resource(filename));
|     ~~~~~^
| ../src/libmatrix/shader-source.cc:37:33: error: expected '(' for function-style cast or type construction
|     std::unique_ptr<std::istream> is_ptr(Util::get_resource(filename));
|                     ~~~~~~~~~~~~^
| ../src/libmatrix/shader-source.cc:37:35: error: use of undeclared identifier 'is_ptr'
|     std::unique_ptr<std::istream> is_ptr(Util::get_resource(filename));
|                                   ^
| ../src/libmatrix/shader-source.cc:38:30: error: use of undeclared identifier 'is_ptr'
|     std::istream& inputFile(*is_ptr);
|                              ^
| 4 errors generated.

Upstream-Status: Pending

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 wscript | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wscript b/wscript
index dcaf298..485a9fb 100644
--- a/wscript
+++ b/wscript
@@ -79,7 +79,7 @@ def configure(ctx):
             ctx.check_cfg(package = pkg, uselib_store = uselib, args = '--cflags --libs',
                           mandatory = True)
 
-    ctx.env.append_unique('CXXFLAGS', '-Wall -Werror -Wextra'.split(' '))
+    ctx.env.append_unique('CXXFLAGS', '-Wall -Werror -std=c++11 -Wextra'.split(' '))
 
     # Prepend -O# and -g flags so that they can be overriden by the CFLAGS environment variable
     if Options.options.opt:
-- 
1.9.1