diff options
author | Eric Engestrom <[email protected]> | 2017-10-30 15:28:18 +0000 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2017-10-31 17:59:39 +0000 |
commit | ddb3a695a8fba949fd6e8bc1b483aa361b3fbd5a (patch) | |
tree | c5d4c8dbbd64ff8d017409f2d447a28a24dab576 /src/mapi | |
parent | 4e7612c54d6a121a5e45985709c33bcd7f8af995 (diff) |
gles2: fail symbol check if lib is missing
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/mapi')
-rwxr-xr-x | src/mapi/es2api/ABI-check | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/mapi/es2api/ABI-check b/src/mapi/es2api/ABI-check index 5c9e8266246..2c2764e7fb9 100755 --- a/src/mapi/es2api/ABI-check +++ b/src/mapi/es2api/ABI-check @@ -1,11 +1,19 @@ #!/bin/sh +set -eu # Print defined gl.* functions not in GL ES 3.0 or in # (FIXME, none of these should be part of the ABI) # GL_EXT_multi_draw_arrays # GL_OES_EGL_image -FUNCS=$(nm -D --defined-only ${1-.libs/libGLESv2.so.2} | grep -o 'T gl.*' | cut -c 3- | while read func; do +LIB=${1-.libs/libGLESv2.so.2} + +if ! [ -f "$LIB" ] +then + exit 1 +fi + +FUNCS=$(nm -D --defined-only $LIB | grep -o 'T gl.*' | cut -c 3- | while read func; do ( grep -q "^$func$" || echo $func ) <<EOF glActiveTexture glAttachShader |