[Buildroot] [PATCH 1/1] package/mesa3d: Disable static build of DRI drivers if BR2_SHARED_STATIC_LIBS=y

Baruch Siach baruch at tkos.co.il
Sat Jun 25 20:13:18 UTC 2016


Hi Bernd,

On Sat, Jun 25, 2016 at 01:42:23PM +0200, Bernd Kuhls wrote:
> Using this defconfig
> 
> BR2_SHARED_STATIC_LIBS=y
> BR2_TOOLCHAIN_BUILDROOT_CXX=y
> BR2_PACKAGE_MESA3D=y
> BR2_PACKAGE_MESA3D_DRI_DRIVER_I965=y
> 
> building DRI drivers in mesa3d fails with this message:
> 
> configure: error: Cannot use static libraries for DRI drivers
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls at t-online.de>
> ---
>  package/mesa3d/mesa3d.mk | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/package/mesa3d/mesa3d.mk b/package/mesa3d/mesa3d.mk
> index ebd674f..5ba9d6e 100644
> --- a/package/mesa3d/mesa3d.mk
> +++ b/package/mesa3d/mesa3d.mk
> @@ -123,6 +123,11 @@ MESA3D_CONF_OPTS += \
>  	--enable-shared-glapi \
>  	--enable-driglx-direct \
>  	--with-dri-drivers=$(subst $(space),$(comma),$(MESA3D_DRI_DRIVERS-y))
> +# fixes the following configure error:
> +# configure: error: Cannot use static libraries for DRI drivers
> +ifeq ($(BR2_SHARED_STATIC_LIBS),y)
> +MESA3D_CONF_OPTS += --disable-static
> +endif

Since mesa3d depends on !BR2_STATIC_LIBS already, why not add --disable-static 
unconditionally?

baruch

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -


More information about the buildroot mailing list