build: rpi: add missing linker flags to fix build

See https://www.raspberrypi.org/forums/viewtopic.php?f=67&t=20005&p=194090
and https://github.com/raspberrypi/firmware/issues/110

Raspberry-pi upstream also adds '-lGLESv2' when EGL is used:
https://github.com/raspberrypi/userland/blob/master/pkgconfig/egl.pc.in
This commit is contained in:
Ilya Tumaykin 2017-01-26 23:51:29 +03:00 committed by Kevin Mitchell
parent d040ab1119
commit 48143b0cf5
1 changed files with 1 additions and 1 deletions

View File

@ -772,7 +772,7 @@ video_output_features = [
lib=['mmal_core', 'mmal_util', 'mmal_vc_client', 'bcm_host']),
# We still need all OpenGL symbols, because the vo_opengl code is
# generic and supports anything from GLES2/OpenGL 2.1 to OpenGL 4 core.
check_cc(lib="EGL"),
check_cc(lib="EGL", linkflags="-lGLESv2"),
check_cc(lib="GLESv2"),
),
} , {