nouveau: convert to new symbols check

Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
This commit is contained in:
Eric Engestrom 2019-10-23 23:32:54 +01:00 committed by Eric Engestrom
parent 35fa20f1fd
commit 574778100e
2 changed files with 7 additions and 23 deletions

View file

@ -52,8 +52,11 @@ pkg.generate(
) )
test( test(
'nouveau-symbol-check', 'nouveau-symbols-check',
find_program('nouveau-symbol-check'), symbols_check,
env : env_test, args : [
args : libdrm_nouveau, '--lib', libdrm_nouveau,
'--symbols-file', files('nouveau-symbols.txt'),
'--nm', prog_nm.path(),
],
) )

View file

@ -1,17 +1,3 @@
#!/bin/sh
set -u
# The following symbols (past the first five) are taken from the public headers.
# A list of the latter should be available Makefile.sources/LIBDRM_NOUVEAU_H_FILES
FUNCS=$($NM -D --format=bsd --defined-only ${1-.libs/libdrm_nouveau.so} | awk '{print $3}'| while read func; do
( grep -q "^$func$" || echo $func ) <<EOF
__bss_start
_edata
_end
_fini
_init
nouveau_bo_map nouveau_bo_map
nouveau_bo_name_get nouveau_bo_name_get
nouveau_bo_name_ref nouveau_bo_name_ref
@ -53,8 +39,3 @@ nouveau_pushbuf_reloc
nouveau_pushbuf_space nouveau_pushbuf_space
nouveau_pushbuf_validate nouveau_pushbuf_validate
nouveau_setparam nouveau_setparam
EOF
done)
test ! -n "$FUNCS" || echo $FUNCS
test ! -n "$FUNCS"