gallium/i915: ship all files in the tarball
[mesa.git] / src / gallium / targets / gbm / gallium-gbm-symbols-check
1 #!/bin/bash
2
3 FUNCS=$(nm -D --defined-only ${1-.libs/gbm_gallium_drm.so} | egrep -o "T .*|D .*" | cut -c 3- | while read func; do
4 ( grep -q "^$func$" || echo $func ) <<EOF
5 gbm_backend
6 _edata
7 _fini
8 _init
9 EOF
10 done)
11
12 test ! -n "$FUNCS" || echo $FUNCS
13 test ! -n "$FUNCS"