*-symbol-check: use correct nm path when cross-compiling

Inspired-by: a similar patch for libdrm by Heiko Becker
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
Eric Engestrom
2018-02-23 17:02:08 +00:00
parent ef308d4007
commit 11d45304fd
12 changed files with 14 additions and 6 deletions

View File

@@ -116,6 +116,7 @@ dnl other CC/CXX flags related help
AC_ARG_VAR([CXX11_CXXFLAGS], [Compiler flag to enable C++11 support (only needed if not
enabled by default and different from -std=c++11)])
AM_PROG_CC_C_O
AC_PROG_NM
AM_PROG_AS
AX_CHECK_GNU_MAKE
AC_CHECK_PROGS([PYTHON2], [python2.7 python2 python])

View File

@@ -1256,6 +1256,9 @@ endif
pkg = import('pkgconfig')
env_test = environment()
env_test.set('NM', find_program('nm').path())
subdir('include')
subdir('bin')
subdir('src')

View File

@@ -8,7 +8,7 @@ then
exit 1
fi
FUNCS=$(nm -D --defined-only $LIB | grep -o "T .*" | cut -c 3- | while read func; do
FUNCS=$($NM -D --defined-only $LIB | grep -o "T .*" | cut -c 3- | while read func; do
( grep -q "^$func$" || echo $func ) <<EOF
eglBindAPI
eglBindTexImage

View File

@@ -204,6 +204,7 @@ if with_tests
else
test('egl-symbols-check',
find_program('egl-symbols-check'),
env : env_test,
args : libegl
)
endif

View File

@@ -40,6 +40,7 @@ pkg.generate(
if with_tests
test('wayland-egl-symbols-check',
find_program('wayland-egl-symbols-check'),
env : env_test,
args : libwayland_egl
)
test(

View File

@@ -8,7 +8,7 @@ then
exit 1
fi
FUNCS=$(nm -D --defined-only $LIB | grep -o "T .*" | cut -c 3- | while read func; do
FUNCS=$($NM -D --defined-only $LIB | grep -o "T .*" | cut -c 3- | while read func; do
( grep -q "^$func$" || echo $func ) <<EOF
wl_egl_window_resize
wl_egl_window_create

View File

@@ -8,8 +8,7 @@ then
exit 1
fi
FUNCS=$(nm -D --defined-only $LIB | grep -o "T .*" | cut -c 3- | while read func; do
FUNCS=$($NM -D --defined-only $LIB | grep -o "T .*" | cut -c 3- | while read func; do
( grep -q "^$func$" || echo $func ) <<EOF
gbm_device_get_fd
gbm_device_get_backend_name

View File

@@ -74,6 +74,7 @@ if with_tests
test(
'gbm-symbols-check',
find_program('gbm-symbols-check'),
env : env_test,
args : libgbm
)
endif

View File

@@ -26,7 +26,7 @@ then
exit 1
fi
FUNCS=$(nm -D --defined-only $LIB | grep -o 'T gl.*' | cut -c 3- | while read func; do
FUNCS=$($NM -D --defined-only $LIB | grep -o 'T gl.*' | cut -c 3- | while read func; do
( grep -q "^$func$" || echo $func ) <<EOF
glActiveTexture
glAlphaFunc

View File

@@ -55,6 +55,7 @@ if with_tests
test(
'es1-ABI-check',
find_program('ABI-check'),
env : env_test,
args : libglesv1_cm
)
endif

View File

@@ -23,7 +23,7 @@ then
exit 1
fi
FUNCS=$(nm -D --defined-only $LIB | grep -o 'T gl.*' | cut -c 3- | while read func; do
FUNCS=$($NM -D --defined-only $LIB | grep -o 'T gl.*' | cut -c 3- | while read func; do
( grep -q "^$func$" || echo $func ) <<EOF
glActiveShaderProgram
glActiveTexture

View File

@@ -55,6 +55,7 @@ if with_tests
test(
'es2-ABI-check',
find_program('ABI-check'),
env : env_test,
args : libgles2
)
endif