Re: [Mesa-dev] [PATCH v2 3/4] meson: build clover

2017-12-15 Thread Dylan Baker
Quoting Jan Vesely (2017-12-14 11:58:03) > > I use a symlink from install target to build dir to make it work on > autotools build. > My point was that meson defines PIPE_SEARCH_DIR to be relative path > '-DPIPE_SEARCH_DIR="lib64/gallium-pipe"' > even if I configure meson using

Re: [Mesa-dev] [PATCH v2 3/4] meson: build clover

2017-12-14 Thread Jan Vesely
On Wed, 2017-12-13 at 14:56 -0800, Dylan Baker wrote: > Quoting Jan Vesely (2017-12-13 14:23:21) > > On Wed, 2017-12-13 at 13:54 -0800, Dylan Baker wrote: > > > Quoting Jan Vesely (2017-12-13 12:53:25) > > > > On Wed, 2017-12-13 at 09:47 -0800, Dylan Baker wrote: > > > > > +if (with_gallium_va or

Re: [Mesa-dev] [PATCH v2 3/4] meson: build clover

2017-12-13 Thread Jan Vesely
On Wed, 2017-12-13 at 17:23 -0500, Jan Vesely wrote: > On Wed, 2017-12-13 at 13:54 -0800, Dylan Baker wrote: > > Quoting Jan Vesely (2017-12-13 12:53:25) > > > On Wed, 2017-12-13 at 09:47 -0800, Dylan Baker wrote: > > > > +if (with_gallium_va or with_gallium_vdpau or with_gallium_omx or > > > > +

Re: [Mesa-dev] [PATCH v2 3/4] meson: build clover

2017-12-13 Thread Dylan Baker
Quoting Jan Vesely (2017-12-13 14:23:21) > On Wed, 2017-12-13 at 13:54 -0800, Dylan Baker wrote: > > Quoting Jan Vesely (2017-12-13 12:53:25) > > > On Wed, 2017-12-13 at 09:47 -0800, Dylan Baker wrote: > > > > +if (with_gallium_va or with_gallium_vdpau or with_gallium_omx or > > > > +

Re: [Mesa-dev] [PATCH v2 3/4] meson: build clover

2017-12-13 Thread Jan Vesely
On Wed, 2017-12-13 at 13:54 -0800, Dylan Baker wrote: > Quoting Jan Vesely (2017-12-13 12:53:25) > > On Wed, 2017-12-13 at 09:47 -0800, Dylan Baker wrote: > > > +if (with_gallium_va or with_gallium_vdpau or with_gallium_omx or > > > +with_gallium_xvmc or with_dri) > > > +

Re: [Mesa-dev] [PATCH v2 3/4] meson: build clover

2017-12-13 Thread Dylan Baker
Quoting Jan Vesely (2017-12-13 13:36:25) > On Wed, 2017-12-13 at 13:01 -0800, Francisco Jerez wrote: > > Jan Vesely writes: > > > > autotools build works OK with no-rtti build of llvm, I've been running > like that for some time. LLVM_CXXFLAGS which include fno-rtti are

Re: [Mesa-dev] [PATCH v2 3/4] meson: build clover

2017-12-13 Thread Francisco Jerez
Dylan Baker writes: > Quoting Francisco Jerez (2017-12-13 13:01:29) >> Jan Vesely writes: >> > meson asked for libdrm_amdgpu dependency even though I'm only building >> > clover+r600g driver. >> > after a bit of fiddling with PATH and PK_CONFIG_PATH

Re: [Mesa-dev] [PATCH v2 3/4] meson: build clover

2017-12-13 Thread Dylan Baker
Quoting Francisco Jerez (2017-12-13 13:01:29) > Jan Vesely writes: > > meson asked for libdrm_amdgpu dependency even though I'm only building > > clover+r600g driver. > > after a bit of fiddling with PATH and PK_CONFIG_PATH to pick up the latest > > llvm/liblclc > >

Re: [Mesa-dev] [PATCH v2 3/4] meson: build clover

2017-12-13 Thread Dylan Baker
Quoting Jan Vesely (2017-12-13 12:53:25) > On Wed, 2017-12-13 at 09:47 -0800, Dylan Baker wrote: > > +if (with_gallium_va or with_gallium_vdpau or with_gallium_omx or > > +with_gallium_xvmc or with_dri) > > + pipe_loader_link_with += libgalliumvl > > +else > > + pipe_loader_link_with +=

Re: [Mesa-dev] [PATCH v2 3/4] meson: build clover

2017-12-13 Thread Francisco Jerez
Jan Vesely writes: > On Wed, 2017-12-13 at 13:01 -0800, Francisco Jerez wrote: >> Jan Vesely writes: >> >> > On Wed, 2017-12-13 at 09:47 -0800, Dylan Baker wrote: >> > > This has only been compile tested. >> > > >> > > v2: - Have a single option

Re: [Mesa-dev] [PATCH v2 3/4] meson: build clover

2017-12-13 Thread Jan Vesely
On Wed, 2017-12-13 at 13:01 -0800, Francisco Jerez wrote: > Jan Vesely writes: > > > On Wed, 2017-12-13 at 09:47 -0800, Dylan Baker wrote: > > > This has only been compile tested. > > > > > > v2: - Have a single option for opencl (Eric E) > > > - fix typo "tgis" ->

Re: [Mesa-dev] [PATCH v2 3/4] meson: build clover

2017-12-13 Thread Francisco Jerez
Jan Vesely writes: > On Wed, 2017-12-13 at 09:47 -0800, Dylan Baker wrote: >> This has only been compile tested. >> >> v2: - Have a single option for opencl (Eric E) >> - fix typo "tgis" -> "tgsi" (Curro) >> - Don't add "lib" prefix to pipe loader libraries,

Re: [Mesa-dev] [PATCH v2 3/4] meson: build clover

2017-12-13 Thread Jan Vesely
On Wed, 2017-12-13 at 09:47 -0800, Dylan Baker wrote: > This has only been compile tested. > > v2: - Have a single option for opencl (Eric E) > - fix typo "tgis" -> "tgsi" (Curro) > - Don't add "lib" prefix to pipe loader libraries, which matches the > autotools behavior > > cc:

[Mesa-dev] [PATCH v2 3/4] meson: build clover

2017-12-13 Thread Dylan Baker
This has only been compile tested. v2: - Have a single option for opencl (Eric E) - fix typo "tgis" -> "tgsi" (Curro) - Don't add "lib" prefix to pipe loader libraries, which matches the autotools behavior cc: Curro Jerez cc: Jan Vesely