Re: [OE-core] [OE-Core][meta-oe][PATCH] glmark2: Enabling c++ 11 features

2016-10-19 Thread Khem Raj
> On Oct 17, 2016, at 11:49 PM, Amarnath Valluri > wrote: > > > > On Friday 14 October 2016 05:13 PM, Khem Raj wrote: >> On Fri, Oct 14, 2016 at 3:21 PM, Amarnath Valluri >> wrote: >>> > The failure

Re: [OE-core] [OE-Core][meta-oe][PATCH] glmark2: Enabling c++ 11 features

2016-10-18 Thread Amarnath Valluri
On Friday 14 October 2016 05:13 PM, Khem Raj wrote: On Fri, Oct 14, 2016 at 3:21 PM, Amarnath Valluri wrote: >The failure was: >| ../src/image-reader.cpp: In member function 'bool PNGReader::init(const >string&)': >| ../src/image-reader.cpp:123:16: error:

Re: [OE-core] [OE-Core][meta-oe][PATCH] glmark2: Enabling c++ 11 features

2016-10-14 Thread Burton, Ross
On 14 October 2016 at 14:21, Amarnath Valluri wrote: > meta-oe/recipes-benchmark/glmark2/glmark2_git.bb | 3 +++ > This should go to openembedded-devel, not -core. Ross -- ___ Openembedded-core mailing list

Re: [OE-core] [OE-Core][meta-oe][PATCH] glmark2: Enabling c++ 11 features

2016-10-14 Thread Khem Raj
On Fri, Oct 14, 2016 at 3:21 PM, Amarnath Valluri wrote: > The failure was: > | ../src/image-reader.cpp: In member function 'bool PNGReader::init(const > string&)': > | ../src/image-reader.cpp:123:16: error: 'unique_ptr' in namespace 'std' does > not name a template

[OE-core] [OE-Core][meta-oe][PATCH] glmark2: Enabling c++ 11 features

2016-10-14 Thread Amarnath Valluri
The failure was: | ../src/image-reader.cpp: In member function 'bool PNGReader::init(const string&)': | ../src/image-reader.cpp:123:16: error: 'unique_ptr' in namespace 'std' does not name a template type This change enables c++11 features, as code useing them. Signed-off-by: Amarnath Valluri