a5f3db697f
Compilation fails with this defconfig, provided by Thomas BR2_arm=y BR2_TOOLCHAIN_EXTERNAL=y BR2_TOOLCHAIN_EXTERNAL_CUSTOM=y BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD=y BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/br-arm-full-2014.11.tar.bz2" BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_17=y BR2_TOOLCHAIN_EXTERNAL_LARGEFILE=y BR2_TOOLCHAIN_EXTERNAL_INET_IPV6=y BR2_TOOLCHAIN_EXTERNAL_LOCALE=y BR2_TOOLCHAIN_EXTERNAL_INET_RPC=y BR2_TOOLCHAIN_EXTERNAL_CXX=y BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV=y BR2_PACKAGE_GLMARK2=y BR2_PACKAGE_MESA3D=y BR2_PACKAGE_RPI_USERLAND=y because rpi-userland is used a provider for libegl/gles. Fix this by depending on the corresponding mesa3d suboptions. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
30 lines
894 B
Plaintext
30 lines
894 B
Plaintext
config BR2_PACKAGE_GLMARK2_EGL_GLES
|
|
bool
|
|
default y
|
|
depends on BR2_PACKAGE_MESA3D_OPENGL_EGL
|
|
depends on BR2_PACKAGE_MESA3D_OPENGL_ES
|
|
|
|
config BR2_PACKAGE_GLMARK2_GL
|
|
bool
|
|
default y
|
|
depends on BR2_PACKAGE_MESA3D_DRI_DRIVER
|
|
|
|
comment "glmark2 needs an OpenGL or an openGL ES and EGL backend provided by mesa3d"
|
|
depends on BR2_LARGEFILE
|
|
depends on !BR2_PACKAGE_GLMARK2_GL && !BR2_PACKAGE_GLMARK2_EGL_GLES
|
|
|
|
config BR2_PACKAGE_GLMARK2
|
|
bool "glmark2"
|
|
depends on BR2_LARGEFILE
|
|
depends on BR2_PACKAGE_GLMARK2_GL || BR2_PACKAGE_GLMARK2_EGL_GLES
|
|
select BR2_PACKAGE_JPEG
|
|
select BR2_PACKAGE_LIBPNG
|
|
help
|
|
glmark2 is an OpenGL 2.0 and ES 2.0 benchmark.
|
|
|
|
https://github.com/glmark2/glmark2
|
|
|
|
comment "glmark2 needs udev /dev management and a toolchain w/ C++, largefile, NPTL"
|
|
depends on !BR2_LARGEFILE || !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS_NPTL || !BR2_PACKAGE_HAS_UDEV
|