This makes nm not required, but used if found. In general I imagine that this means that on windows nm wont be found, and on other platforms it will.
v2: - fix gbm and egl symbols check tests to only be run if nm is found - reword commit message to reflect the code change --- meson.build | 5 ++++- src/egl/meson.build | 2 +- src/gbm/meson.build | 2 +- src/mapi/es1api/meson.build | 2 +- src/mapi/es2api/meson.build | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/meson.build b/meson.build index 164917eae1a..4a57cc12bb3 100644 --- a/meson.build +++ b/meson.build @@ -1526,8 +1526,11 @@ endif pkg = import('pkgconfig') +prog_nm = find_program('nm', required : false) env_test = environment() -env_test.set('NM', find_program('nm').path()) +if prog_nm.found() + env_test.set('NM', prog_nm.path()) +endif subdir('include') subdir('bin') diff --git a/src/egl/meson.build b/src/egl/meson.build index 5f30bbba89a..4f26cefe361 100644 --- a/src/egl/meson.build +++ b/src/egl/meson.build @@ -194,7 +194,7 @@ pkg.generate( extra_cflags : gl_pkgconfig_c_flags, ) -if with_tests +if with_tests and prog_nm.found() if with_glvnd # TODO: add glvnd symbol check else diff --git a/src/gbm/meson.build b/src/gbm/meson.build index 2e9d380c0b4..97516dfbc6c 100644 --- a/src/gbm/meson.build +++ b/src/gbm/meson.build @@ -68,7 +68,7 @@ pkg.generate( libraries_private : '-ldl', # FIXME: autotools lists this a incomplete ) -if with_tests +if with_tests and prog_nm.found() test( 'gbm-symbols-check', find_program('gbm-symbols-check'), diff --git a/src/mapi/es1api/meson.build b/src/mapi/es1api/meson.build index dcf0aa57492..448cf1c73d2 100644 --- a/src/mapi/es1api/meson.build +++ b/src/mapi/es1api/meson.build @@ -59,7 +59,7 @@ pkg.generate( libraries_private : gl_priv_libs, ) -if with_tests +if with_tests and prog_nm.found() test( 'es1-ABI-check', find_program('ABI-check'), diff --git a/src/mapi/es2api/meson.build b/src/mapi/es2api/meson.build index abd633fbb6b..cb6a70a2e90 100644 --- a/src/mapi/es2api/meson.build +++ b/src/mapi/es2api/meson.build @@ -59,7 +59,7 @@ pkg.generate( libraries_private : gl_priv_libs, ) -if with_tests +if with_tests and prog_nm.found() test( 'es2-ABI-check', find_program('ABI-check'), -- 2.18.0 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev