nouveau: convert to new symbols check

Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
main
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(
'nouveau-symbol-check',
find_program('nouveau-symbol-check'),
env : env_test,
args : libdrm_nouveau,
'nouveau-symbols-check',
symbols_check,
args : [
'--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_name_get
nouveau_bo_name_ref
@ -53,8 +39,3 @@ nouveau_pushbuf_reloc
nouveau_pushbuf_space
nouveau_pushbuf_validate
nouveau_setparam
EOF
done)
test ! -n "$FUNCS" || echo $FUNCS
test ! -n "$FUNCS"