freedreno: 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 2763cd390e
commit 6c819350af
2 changed files with 7 additions and 23 deletions

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_FREEDRENO_H_FILES
FUNCS=$($NM -D --format=bsd --defined-only ${1-.libs/libdrm_freedreno.so} | awk '{print $3}'| while read func; do
( grep -q "^$func$" || echo $func ) <<EOF
__bss_start
_edata
_end
_fini
_init
fd_bo_cpu_fini
fd_bo_cpu_prep
fd_bo_del
@ -57,8 +43,3 @@ fd_ringbuffer_set_parent
fd_ringbuffer_size
fd_ringbuffer_timestamp
fd_ringbuffer_flush2
EOF
done)
test ! -n "$FUNCS" || echo $FUNCS
test ! -n "$FUNCS"

View File

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