From: Bruce Richardson Date: Thu, 25 Feb 2021 15:29:03 +0000 (+0000) Subject: build: limit symbol checks to developer mode X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=720dfda4551e8185ad34f333e58157a8eb4d02ab;p=dpdk.git build: limit symbol checks to developer mode The checking of symbols within each library and driver is only of interest to developers, so limit to developer mode only. Signed-off-by: Bruce Richardson --- diff --git a/drivers/meson.build b/drivers/meson.build index a5b54a50cc..0532c069d6 100644 --- a/drivers/meson.build +++ b/drivers/meson.build @@ -171,15 +171,17 @@ foreach subpath:subdirs endif else lk_args = ['-Wl,--version-script=' + version_map] - # on unix systems check the output of the - # check-symbols.sh script, using it as a - # dependency of the .so build - lk_deps += custom_target(lib_name + '.sym_chk', - command: [check_symbols, - version_map, '@INPUT@'], - capture: true, - input: static_lib, - output: lib_name + '.sym_chk') + if developer_mode + # on unix systems check the output of the + # check-symbols.sh script, using it as a + # dependency of the .so build + lk_deps += custom_target(lib_name + '.sym_chk', + command: [check_symbols, + version_map, '@INPUT@'], + capture: true, + input: static_lib, + output: lib_name + '.sym_chk') + endif endif shared_lib = shared_library(lib_name, diff --git a/lib/meson.build b/lib/meson.build index c2052e6e40..4eed83e57c 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -177,7 +177,7 @@ foreach l:libraries endif lk_deps = [version_map, def_file, mingw_map] - if not is_windows + if developer_mode and not is_windows # on unix systems check the output of the # check-symbols.sh script, using it as a # dependency of the .so build