Re: [Mesa-dev] [PATCH v2 1/3] nv50/ir: support different unordered_set implementations

2015-08-20 Thread Ilia Mirkin
I pushed this out without the Android.mk change: http://cgit.freedesktop.org/mesa/mesa/commit/?id=2a4af36517333ef61d5f7ca2264fec3f49ee3662 I don't know anything about Android makefiles and didn't feel like I knew enough about what was going on there to make any change. Feel free to resubmit that

Re: [Mesa-dev] [PATCH v2 1/3] nv50/ir: support different unordered_set implementations

2015-06-20 Thread Chih-Wei Huang
2015-06-20 9:04 GMT+08:00 Chih-Wei Huang : > 2015-06-20 3:12 GMT+08:00 Emil Velikov : >> Hi Chih-Wei, >> On 19 June 2015 at 19:00, Chih-Wei Huang wrote: > >>> diff --git a/Android.common.mk b/Android.common.mk >>> index d662d60..35dcda2 100644 >>> --- a/Android.common.mk >>> +++ b/Android.common.m

Re: [Mesa-dev] [PATCH v2 1/3] nv50/ir: support different unordered_set implementations

2015-06-19 Thread Emil Velikov
Hi Chih-Wei, On 19 June 2015 at 19:00, Chih-Wei Huang wrote: > If build with C++11 standard, use std::unordered_set. > > Otherwise if build on old Android version with stlport, > use std::tr1::unordered_set with a wrapper class. > > Otherwise use std::tr1::unordered_set. > > Signed-off-by: Chih-We

Re: [Mesa-dev] [PATCH v2 1/3] nv50/ir: support different unordered_set implementations

2015-06-19 Thread Chih-Wei Huang
2015-06-20 2:05 GMT+08:00 Ilia Mirkin : > The nouveau bits are > > Reviewed-by: Ilia Mirkin > > If someone can say something non-negative-sounding about the > Android.mk change, happy to push this out. [I assume there's some > reason why it's part of this change.] About the Android.mk change, ori

Re: [Mesa-dev] [PATCH v2 1/3] nv50/ir: support different unordered_set implementations

2015-06-19 Thread Ilia Mirkin
The nouveau bits are Reviewed-by: Ilia Mirkin If someone can say something non-negative-sounding about the Android.mk change, happy to push this out. [I assume there's some reason why it's part of this change.] On Fri, Jun 19, 2015 at 2:00 PM, Chih-Wei Huang wrote: > If build with C++11 standa

[Mesa-dev] [PATCH v2 1/3] nv50/ir: support different unordered_set implementations

2015-06-19 Thread Chih-Wei Huang
If build with C++11 standard, use std::unordered_set. Otherwise if build on old Android version with stlport, use std::tr1::unordered_set with a wrapper class. Otherwise use std::tr1::unordered_set. Signed-off-by: Chih-Wei Huang --- Android.common.mk | 2 +- s