db54b8a716
Disable tests to avoid the following build failure with amdgpu and gcc 5 if cunit is built before libdrm: In file included from ../tests/amdgpu/shader_test_util.c:10:0: ../tests/amdgpu/shader_code.h:113:2: error: initializer element is not constant ps_##_ps##_shader_patchinfo_code_size_gfx##_n, \ ^ tests can be disabled since46d1e99a5d
Fixes: - http://autobuild.buildroot.org/results/612aad1fa642993da36bbec6c16c9020ac283e34 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle <arnout@mind.be> (cherry picked from commitf95069814b
) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
119 lines
2.5 KiB
Makefile
119 lines
2.5 KiB
Makefile
################################################################################
|
|
#
|
|
# libdrm
|
|
#
|
|
################################################################################
|
|
|
|
LIBDRM_VERSION = 2.4.120
|
|
LIBDRM_SOURCE = libdrm-$(LIBDRM_VERSION).tar.xz
|
|
LIBDRM_SITE = https://dri.freedesktop.org/libdrm
|
|
LIBDRM_LICENSE = MIT
|
|
LIBDRM_LICENSE_FILES = data/meson.build
|
|
LIBDRM_INSTALL_STAGING = YES
|
|
|
|
LIBDRM_DEPENDENCIES = \
|
|
libpthread-stubs \
|
|
host-pkgconf
|
|
|
|
LIBDRM_CONF_OPTS = \
|
|
-Dcairo-tests=disabled \
|
|
-Dman-pages=disabled \
|
|
-Dtests=false
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBATOMIC_OPS),y)
|
|
LIBDRM_DEPENDENCIES += libatomic_ops
|
|
ifeq ($(BR2_sparc_v8)$(BR2_sparc_leon3),y)
|
|
LIBDRM_CFLAGS = $(TARGET_CFLAGS) -DAO_NO_SPARC_V9
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBDRM_INTEL),y)
|
|
LIBDRM_CONF_OPTS += -Dintel=enabled
|
|
LIBDRM_DEPENDENCIES += libpciaccess
|
|
else
|
|
LIBDRM_CONF_OPTS += -Dintel=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBDRM_RADEON),y)
|
|
LIBDRM_CONF_OPTS += -Dradeon=enabled
|
|
else
|
|
LIBDRM_CONF_OPTS += -Dradeon=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBDRM_AMDGPU),y)
|
|
LIBDRM_CONF_OPTS += -Damdgpu=enabled
|
|
else
|
|
LIBDRM_CONF_OPTS += -Damdgpu=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBDRM_NOUVEAU),y)
|
|
LIBDRM_CONF_OPTS += -Dnouveau=enabled
|
|
else
|
|
LIBDRM_CONF_OPTS += -Dnouveau=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBDRM_VMWGFX),y)
|
|
LIBDRM_CONF_OPTS += -Dvmwgfx=enabled
|
|
else
|
|
LIBDRM_CONF_OPTS += -Dvmwgfx=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBDRM_OMAP),y)
|
|
LIBDRM_CONF_OPTS += -Domap=enabled
|
|
else
|
|
LIBDRM_CONF_OPTS += -Domap=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBDRM_ETNAVIV),y)
|
|
LIBDRM_CONF_OPTS += -Detnaviv=enabled
|
|
else
|
|
LIBDRM_CONF_OPTS += -Detnaviv=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBDRM_EXYNOS),y)
|
|
LIBDRM_CONF_OPTS += -Dexynos=enabled
|
|
else
|
|
LIBDRM_CONF_OPTS += -Dexynos=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBDRM_FREEDRENO),y)
|
|
LIBDRM_CONF_OPTS += -Dfreedreno=enabled
|
|
else
|
|
LIBDRM_CONF_OPTS += -Dfreedreno=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBDRM_TEGRA),y)
|
|
LIBDRM_CONF_OPTS += -Dtegra=enabled
|
|
else
|
|
LIBDRM_CONF_OPTS += -Dtegra=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBDRM_VC4),y)
|
|
LIBDRM_CONF_OPTS += -Dvc4=enabled
|
|
else
|
|
LIBDRM_CONF_OPTS += -Dvc4=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
|
|
LIBDRM_CONF_OPTS += -Dudev=true
|
|
LIBDRM_DEPENDENCIES += udev
|
|
else
|
|
LIBDRM_CONF_OPTS += -Dudev=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_VALGRIND),y)
|
|
LIBDRM_CONF_OPTS += -Dvalgrind=enabled
|
|
LIBDRM_DEPENDENCIES += valgrind
|
|
else
|
|
LIBDRM_CONF_OPTS += -Dvalgrind=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBDRM_INSTALL_TESTS),y)
|
|
LIBDRM_CONF_OPTS += -Dinstall-test-programs=true
|
|
ifeq ($(BR2_PACKAGE_CUNIT),y)
|
|
LIBDRM_DEPENDENCIES += cunit
|
|
endif
|
|
endif
|
|
|
|
$(eval $(meson-package))
|