Re: [Mesa-dev] [PATCH 2/5] android: radeonsi: fix building error in si_shader.c

2016-04-01 Thread Emil Velikov
On 21 February 2016 at 19:57, Mauro Rossi wrote: > Hi Micheal, > > no problem, I'm learning so much and you and Emil have both shown amounts of > patience with me. > > I've tested the following patch and it works > Mauro, please send patches that can be applied without

Re: [Mesa-dev] [PATCH 2/5] android: radeonsi: fix building error in si_shader.c

2016-02-21 Thread Mauro Rossi
Hi Micheal, no problem, I'm learning so much and you and Emil have both shown amounts of patience with me. I've tested the following patch and it works Mauro >From a00b1182fd74ec6af37e09e53dd3febec36af27d Mon Sep 17 00:00:00 2001 From: Mauro Rossi Date: Sun, 21 Feb

Re: [Mesa-dev] [PATCH 2/5] android: radeonsi: fix building error in si_shader.c

2016-02-16 Thread Michel Dänzer
On 16.02.2016 20:03, Emil Velikov wrote: > On 16 February 2016 at 07:02, Michel Dänzer wrote: >> On 14.02.2016 23:41, Mauro Rossi wrote: >>> >>> From: Mauro Rossi > >>> Date: Sun, 14 Feb 2016 15:34:16 +0100 >>> Subject:

Re: [Mesa-dev] [PATCH 2/5] android: radeonsi: fix building error in si_shader.c

2016-02-16 Thread Emil Velikov
On 16 February 2016 at 07:02, Michel Dänzer wrote: > On 14.02.2016 23:41, Mauro Rossi wrote: >> >> From: Mauro Rossi > >> Date: Sun, 14 Feb 2016 15:34:16 +0100 >> Subject: [PATCH 1/2] android: add support for strchrnul >> >>

Re: [Mesa-dev] [PATCH 2/5] android: radeonsi: fix building error in si_shader.c

2016-02-15 Thread Michel Dänzer
On 14.02.2016 23:41, Mauro Rossi wrote: > > From: Mauro Rossi > > Date: Sun, 14 Feb 2016 15:34:16 +0100 > Subject: [PATCH 1/2] android: add support for strchrnul > > Android Bionic has no strchrnul in string functions, > radeonsi uses

Re: [Mesa-dev] [PATCH 2/5] android: radeonsi: fix building error in si_shader.c

2016-02-14 Thread Mauro Rossi
Hi, thanks, now they should be ok The macro name was changed to __STRCHRNUL_H Tested by building marshmallow-x86 M. >From c1fd979ee7b3e74c4d097b7b1941ebbe65f8d003 Mon Sep 17 00:00:00 2001 From: Mauro Rossi Date: Sun, 14 Feb 2016 15:34:16 +0100 Subject: [PATCH 1/2]

Re: [Mesa-dev] [PATCH 2/5] android: radeonsi: fix building error in si_shader.c

2016-02-07 Thread Michel Dänzer
On 07.02.2016 08:56, Mauro Rossi wrote: > From e33d112be85e86c2537c26622969dea7dfd16186 Mon Sep 17 00:00:00 2001 > From: Mauro Rossi > > Date: Sat, 6 Feb 2016 23:54:24 +0100 > Subject: [PATCH 2/2] android: radeonsi: fix building error in

Re: [Mesa-dev] [PATCH 2/5] android: radeonsi: fix building error in si_shader.c

2016-02-07 Thread Michel Dänzer
On 07.02.2016 08:55, Mauro Rossi wrote: > From 8030a6cd9d7bb3320fca94038f1969db56223598 Mon Sep 17 00:00:00 2001 > From: Mauro Rossi > > Date: Sat, 6 Feb 2016 23:52:36 +0100 > Subject: [PATCH 1/2] android: add support for strchrnul > > Android

Re: [Mesa-dev] [PATCH 2/5] android: radeonsi: fix building error in si_shader.c

2016-02-06 Thread Mauro Rossi
>From e33d112be85e86c2537c26622969dea7dfd16186 Mon Sep 17 00:00:00 2001 From: Mauro Rossi Date: Sat, 6 Feb 2016 23:54:24 +0100 Subject: [PATCH 2/2] android: radeonsi: fix building error in si_shader.c Android Bionic does not support strchrnul() function, causing the

Re: [Mesa-dev] [PATCH 2/5] android: radeonsi: fix building error in si_shader.c

2016-02-06 Thread Mauro Rossi
>From 8030a6cd9d7bb3320fca94038f1969db56223598 Mon Sep 17 00:00:00 2001 From: Mauro Rossi Date: Sat, 6 Feb 2016 23:52:36 +0100 Subject: [PATCH 1/2] android: add support for strchrnul Android Bionic has no strchrnul in string functions, radeonsi uses strchrnul, so we need

Re: [Mesa-dev] [PATCH 2/5] android: radeonsi: fix building error in si_shader.c

2016-02-03 Thread Michel Dänzer
On 03.02.2016 12:18, Mauro Rossi wrote: > Hi Michel, > > Patch was updated according to the instructions and log/commit messages > changed. Thanks, but I'm afraid it doesn't match existing compatibility headers very well. > +#ifndef _ANDROID_COMPAT_H_ > +#define _ANDROID_COMPAT_H_ > + > +/* >

Re: [Mesa-dev] [PATCH 2/5] android: radeonsi: fix building error in si_shader.c

2016-02-02 Thread Mauro Rossi
Hi Michel, Patch was updated according to the instructions and log/commit messages changed. Thanks for the advice Mauro >From 7a9090bffa434b78d8654c4c6d4c8dc0ec00c524 Mon Sep 17 00:00:00 2001 From: Mauro Rossi Date: Wed, 3 Feb 2016 03:54:08 +0100 Subject: [PATCH]

Re: [Mesa-dev] [PATCH 2/5] android: radeonsi: fix building error in si_shader.c

2016-02-01 Thread Michel Dänzer
On 02.02.2016 07:37, Mauro Rossi wrote: > Bionic does not support strchrnul() function, > causing the following building error: > > external/mesa/src/gallium/drivers/radeonsi/si_shader.c:3863: error: undefined > reference to 'strchrnul' > collect2: error: ld returned 1 exit status > > This