Re: [Mesa-dev] [PATCH v2 03/22] clover/api: Fail if trying to build a non-executable binary

2018-01-27 Thread Pierre Moreau
On 2018-01-23 — 15:09, Francisco Jerez wrote: > Pierre Moreau writes: > > > On 2018-01-23 — 14:03, Francisco Jerez wrote: > >> Pierre Moreau writes: > >> > >> > From the OpenCL 1.2 Specification, Section 5.6.2 (about clBuildProgram: > >> > > >> >>

Re: [Mesa-dev] [PATCH v2 03/22] clover/api: Fail if trying to build a non-executable binary

2018-01-23 Thread Francisco Jerez
Pierre Moreau writes: > On 2018-01-23 — 14:03, Francisco Jerez wrote: >> Pierre Moreau writes: >> >> > From the OpenCL 1.2 Specification, Section 5.6.2 (about clBuildProgram: >> > >> >> If program is created with clCreateProgramWithBinary, then the

Re: [Mesa-dev] [PATCH v2 03/22] clover/api: Fail if trying to build a non-executable binary

2018-01-23 Thread Pierre Moreau
On 2018-01-23 — 14:03, Francisco Jerez wrote: > Pierre Moreau writes: > > > From the OpenCL 1.2 Specification, Section 5.6.2 (about clBuildProgram: > > > >> If program is created with clCreateProgramWithBinary, then the > >> program binary must be an executable binary (not

Re: [Mesa-dev] [PATCH v2 03/22] clover/api: Fail if trying to build a non-executable binary

2018-01-23 Thread Francisco Jerez
Pierre Moreau writes: > From the OpenCL 1.2 Specification, Section 5.6.2 (about clBuildProgram: > >> If program is created with clCreateProgramWithBinary, then the >> program binary must be an executable binary (not a compiled binary or >> library). > > Signed-off-by:

[Mesa-dev] [PATCH v2 03/22] clover/api: Fail if trying to build a non-executable binary

2018-01-22 Thread Pierre Moreau
From the OpenCL 1.2 Specification, Section 5.6.2 (about clBuildProgram: > If program is created with clCreateProgramWithBinary, then the > program binary must be an executable binary (not a compiled binary or > library). Signed-off-by: Pierre Moreau ---