mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 12:18:09 +02:00
wayland-egl: fail symbol check if lib is missing
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com> Reviewed-by: Dylan Baker <dylan@pnwbakers.com> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
parent
0529a63384
commit
4e43ba5687
1 changed files with 9 additions and 1 deletions
|
|
@ -1,6 +1,14 @@
|
|||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
FUNCS=$(nm -D --defined-only ${1-.libs/libwayland-egl.so} | grep -o "T .*" | cut -c 3- | while read func; do
|
||||
LIB=${1-.libs/libwayland-egl.so}
|
||||
|
||||
if ! [ -f "$LIB" ]
|
||||
then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
FUNCS=$(nm -D --defined-only $LIB | grep -o "T .*" | cut -c 3- | while read func; do
|
||||
( grep -q "^$func$" || echo $func ) <<EOF
|
||||
wl_egl_window_resize
|
||||
wl_egl_window_create
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue