aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2018-02-23 17:02:08 +0000
committerEric Engestrom <[email protected]>2018-02-26 13:50:59 +0000
commit11d45304fd20bbdf07222830e76d3f9977e803b4 (patch)
tree8e5e9b3f516c5bcdd222677f1b8ccdd6b8b61052
parentef308d40070014b92aaf07a228edc73bd2e85570 (diff)
*-symbol-check: use correct `nm` path when cross-compiling
Inspired-by: a similar patch for libdrm by Heiko Becker Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Emil Velikov <[email protected]>
-rw-r--r--configure.ac1
-rw-r--r--meson.build3
-rwxr-xr-xsrc/egl/egl-symbols-check2
-rw-r--r--src/egl/meson.build1
-rw-r--r--src/egl/wayland/wayland-egl/meson.build1
-rwxr-xr-xsrc/egl/wayland/wayland-egl/wayland-egl-symbols-check2
-rwxr-xr-xsrc/gbm/gbm-symbols-check3
-rw-r--r--src/gbm/meson.build1
-rwxr-xr-xsrc/mapi/es1api/ABI-check2
-rw-r--r--src/mapi/es1api/meson.build1
-rwxr-xr-xsrc/mapi/es2api/ABI-check2
-rw-r--r--src/mapi/es2api/meson.build1
12 files changed, 14 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index 346c8130352..d8093597dd0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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])
diff --git a/meson.build b/meson.build
index 8cf67b81715..6f2615f9d17 100644
--- a/meson.build
+++ b/meson.build
@@ -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')
diff --git a/src/egl/egl-symbols-check b/src/egl/egl-symbols-check
index ae867d04bca..460e61a357c 100755
--- a/src/egl/egl-symbols-check
+++ b/src/egl/egl-symbols-check
@@ -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
diff --git a/src/egl/meson.build b/src/egl/meson.build
index abf60855737..36cd33ac08b 100644
--- a/src/egl/meson.build
+++ b/src/egl/meson.build
@@ -204,6 +204,7 @@ if with_tests
else
test('egl-symbols-check',
find_program('egl-symbols-check'),
+ env : env_test,
args : libegl
)
endif
diff --git a/src/egl/wayland/wayland-egl/meson.build b/src/egl/wayland/wayland-egl/meson.build
index c95d4c1d1f4..d0a7521da91 100644
--- a/src/egl/wayland/wayland-egl/meson.build
+++ b/src/egl/wayland/wayland-egl/meson.build
@@ -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(
diff --git a/src/egl/wayland/wayland-egl/wayland-egl-symbols-check b/src/egl/wayland/wayland-egl/wayland-egl-symbols-check
index 04b2dbf1d37..a5fab775824 100755
--- a/src/egl/wayland/wayland-egl/wayland-egl-symbols-check
+++ b/src/egl/wayland/wayland-egl/wayland-egl-symbols-check
@@ -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
diff --git a/src/gbm/gbm-symbols-check b/src/gbm/gbm-symbols-check
index cf57a08d572..5adeadaed07 100755
--- a/src/gbm/gbm-symbols-check
+++ b/src/gbm/gbm-symbols-check
@@ -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
diff --git a/src/gbm/meson.build b/src/gbm/meson.build
index 2f5d1c6ddd7..13fa3a1f84c 100644
--- a/src/gbm/meson.build
+++ b/src/gbm/meson.build
@@ -74,6 +74,7 @@ if with_tests
test(
'gbm-symbols-check',
find_program('gbm-symbols-check'),
+ env : env_test,
args : libgbm
)
endif
diff --git a/src/mapi/es1api/ABI-check b/src/mapi/es1api/ABI-check
index b9ae5efafd8..11b4923dea2 100755
--- a/src/mapi/es1api/ABI-check
+++ b/src/mapi/es1api/ABI-check
@@ -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
diff --git a/src/mapi/es1api/meson.build b/src/mapi/es1api/meson.build
index 38a5747e9a0..657dc2d9eff 100644
--- a/src/mapi/es1api/meson.build
+++ b/src/mapi/es1api/meson.build
@@ -55,6 +55,7 @@ if with_tests
test(
'es1-ABI-check',
find_program('ABI-check'),
+ env : env_test,
args : libglesv1_cm
)
endif
diff --git a/src/mapi/es2api/ABI-check b/src/mapi/es2api/ABI-check
index 7bc78480f76..a04b03d7d60 100755
--- a/src/mapi/es2api/ABI-check
+++ b/src/mapi/es2api/ABI-check
@@ -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
diff --git a/src/mapi/es2api/meson.build b/src/mapi/es2api/meson.build
index 9f4770a7386..da5198ed6e8 100644
--- a/src/mapi/es2api/meson.build
+++ b/src/mapi/es2api/meson.build
@@ -55,6 +55,7 @@ if with_tests
test(
'es2-ABI-check',
find_program('ABI-check'),
+ env : env_test,
args : libgles2
)
endif