mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-18 21:33:39 -09:00
With classic thread library, the build fails with:
../lib/igt_kmod.c:1090:21: error: implicit declaration of function 'pthread_mutexattr_setrobust'; did you mean 'pthread_mutexattr_settype'? [-Werror=implicit-function-declaration]
igt-gpu-tools needs NPTL threads.
Fixes:
http://autobuild.buildroot.net/results/85311ce68ae1fff771ca00b434be1c4f8453d357/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit 80e0f643e8)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
config BR2_PACKAGE_IGT_GPU_TOOLS
|
|
bool "igt-gpu-tools"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_ENABLE_LOCALE
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
|
depends on BR2_PACKAGE_HAS_UDEV
|
|
depends on BR2_USE_WCHAR # elfutils, procps-ng
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_11 # linux/dma-buf.h
|
|
select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # procps-ng
|
|
select BR2_PACKAGE_CAIRO
|
|
select BR2_PACKAGE_CAIRO_PNG
|
|
select BR2_PACKAGE_ELFUTILS
|
|
select BR2_PACKAGE_KMOD
|
|
select BR2_PACKAGE_LIBDRM
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
select BR2_PACKAGE_LIBPCIACCESS
|
|
select BR2_PACKAGE_PIXMAN
|
|
select BR2_PACKAGE_PROCPS_NG
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
IGT GPU Tools is a collection of tools for development and
|
|
testing of the DRM drivers.
|
|
|
|
https://gitlab.freedesktop.org/drm/igt-gpu-tools
|
|
|
|
comment "igt-gpu-tools needs udev /dev management and toolchain w/ NPTL, wchar, dynamic library, locale, headers >= 4.11"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_PACKAGE_HAS_UDEV || BR2_STATIC_LIBS || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS_NPTL || !BR2_USE_WCHAR || \
|
|
!BR2_ENABLE_LOCALE || \
|
|
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_11
|