aboutsummaryrefslogtreecommitdiffstats
path: root/exynos
diff options
context:
space:
mode:
Diffstat (limited to 'exynos')
-rwxr-xr-xexynos/exynos-symbol-check2
-rw-r--r--exynos/meson.build1
2 files changed, 2 insertions, 1 deletions
diff --git a/exynos/exynos-symbol-check b/exynos/exynos-symbol-check
index 9692caa6..e9f1b04d 100755
--- a/exynos/exynos-symbol-check
+++ b/exynos/exynos-symbol-check
@@ -3,7 +3,7 @@
3# The following symbols (past the first five) are taken from the public headers. 3# The following symbols (past the first five) are taken from the public headers.
4# A list of the latter should be available Makefile.am/libdrm_exynos*_HEADERS 4# A list of the latter should be available Makefile.am/libdrm_exynos*_HEADERS
5 5
6FUNCS=$(nm -D --format=bsd --defined-only ${1-.libs/libdrm_exynos.so} | awk '{print $3}'| while read func; do 6FUNCS=$($NM -D --format=bsd --defined-only ${1-.libs/libdrm_exynos.so} | awk '{print $3}'| while read func; do
7( grep -q "^$func$" || echo $func ) <<EOF 7( grep -q "^$func$" || echo $func ) <<EOF
8__bss_start 8__bss_start
9_edata 9_edata
diff --git a/exynos/meson.build b/exynos/meson.build
index c96ad4e0..30d36405 100644
--- a/exynos/meson.build
+++ b/exynos/meson.build
@@ -49,5 +49,6 @@ pkg.generate(
49test( 49test(
50 'exynos-symbol-check', 50 'exynos-symbol-check',
51 prog_bash, 51 prog_bash,
52 env : env_test,
52 args : [files('exynos-symbol-check'), libdrm_exynos] 53 args : [files('exynos-symbol-check'), libdrm_exynos]
53) 54)