mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
Fixes:
http://autobuild.buildroot.net/results/58a/58a498fac83cbb55b252ab54cd8db04570bb5ec9/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
[yann.morin.1998@free.fr: comment on same line as depends-on]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
(cherry picked from commit 5b401925ba)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
73 lines
2.1 KiB
Plaintext
73 lines
2.1 KiB
Plaintext
config BR2_PACKAGE_GLMARK2_FLAVOR_ANY
|
|
bool
|
|
|
|
config BR2_PACKAGE_GLMARK2_FLAVOR_DRM_GLESV2
|
|
bool
|
|
default y
|
|
depends on BR2_PACKAGE_HAS_LIBEGL
|
|
depends on BR2_PACKAGE_HAS_LIBGLES
|
|
depends on BR2_PACKAGE_HAS_UDEV
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libpthread-stubs -> libdrm
|
|
select BR2_PACKAGE_GLMARK2_FLAVOR_ANY
|
|
|
|
config BR2_PACKAGE_GLMARK2_FLAVOR_DRM_GL
|
|
bool
|
|
default y
|
|
depends on BR2_PACKAGE_HAS_LIBEGL
|
|
depends on BR2_PACKAGE_HAS_LIBGL
|
|
depends on BR2_PACKAGE_HAS_UDEV
|
|
select BR2_PACKAGE_GLMARK2_FLAVOR_ANY
|
|
|
|
config BR2_PACKAGE_GLMARK2_FLAVOR_WAYLAND_GLESV2
|
|
bool
|
|
default y
|
|
depends on BR2_PACKAGE_HAS_LIBEGL
|
|
depends on BR2_PACKAGE_HAS_LIBGLES
|
|
depends on BR2_PACKAGE_WAYLAND
|
|
select BR2_PACKAGE_GLMARK2_FLAVOR_ANY
|
|
|
|
config BR2_PACKAGE_GLMARK2_FLAVOR_WAYLAND_GL
|
|
bool
|
|
default y
|
|
depends on BR2_PACKAGE_HAS_LIBEGL
|
|
depends on BR2_PACKAGE_HAS_LIBGL
|
|
depends on BR2_PACKAGE_WAYLAND
|
|
select BR2_PACKAGE_GLMARK2_FLAVOR_ANY
|
|
|
|
config BR2_PACKAGE_GLMARK2_FLAVOR_X11_GLESV2
|
|
bool
|
|
default y
|
|
depends on BR2_PACKAGE_HAS_LIBEGL
|
|
depends on BR2_PACKAGE_HAS_LIBGLES
|
|
depends on BR2_PACKAGE_XLIB_LIBX11
|
|
select BR2_PACKAGE_GLMARK2_FLAVOR_ANY
|
|
|
|
config BR2_PACKAGE_GLMARK2_FLAVOR_X11_GL
|
|
bool
|
|
default y
|
|
depends on BR2_PACKAGE_HAS_LIBGL
|
|
depends on BR2_PACKAGE_XLIB_LIBX11
|
|
select BR2_PACKAGE_GLMARK2_FLAVOR_ANY
|
|
|
|
comment "glmark2 needs a toolchain w/ C++, gcc >= 4.9"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
|
|
|
comment "glmark2 needs an OpenGL or an openGL ES and EGL backend"
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 && BR2_INSTALL_LIBSTDCPP
|
|
depends on !BR2_PACKAGE_GLMARK2_FLAVOR_ANY
|
|
|
|
config BR2_PACKAGE_GLMARK2
|
|
bool "glmark2"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++14
|
|
depends on BR2_PACKAGE_GLMARK2_FLAVOR_ANY
|
|
select BR2_PACKAGE_JPEG
|
|
select BR2_PACKAGE_LIBDRM if BR2_PACKAGE_GLMARK2_FLAVOR_DRM_GLESV2
|
|
select BR2_PACKAGE_LIBPNG
|
|
select BR2_PACKAGE_WAYLAND_PROTOCOLS if BR2_PACKAGE_GLMARK2_FLAVOR_WAYLAND_GL
|
|
select BR2_PACKAGE_WAYLAND_PROTOCOLS if BR2_PACKAGE_GLMARK2_FLAVOR_WAYLAND_GLESV2
|
|
help
|
|
glmark2 is an OpenGL 2.0 and ES 2.0 benchmark.
|
|
|
|
https://github.com/glmark2/glmark2
|