a8d0d473a0
Use the newer macros defined by meson in all DPDK source code, to ensure there are no errors when the old non-standard macros are removed. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Luca Boccassi <bluca@debian.org> Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru> Acked-by: Rosen Xu <rosen.xu@intel.com> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
56 lines
1.4 KiB
Bash
Executable File
56 lines
1.4 KiB
Bash
Executable File
#! /bin/sh -e
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright 2018 Mellanox Technologies, Ltd
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
# speed up by ignoring Unicode details
|
|
export LC_ALL=C
|
|
|
|
ret=0
|
|
|
|
find_orphan_symbols ()
|
|
{
|
|
for map in $(find lib drivers -name '*.map') ; do
|
|
for sym in $(sed -rn 's,^([^}]*_.*);,\1,p' $map) ; do
|
|
if echo $sym | grep -q '^per_lcore_' ; then
|
|
symsrc=${sym#per_lcore_}
|
|
elif echo $sym | grep -q '^__rte_.*_trace_' ; then
|
|
symsrc=${sym#__}
|
|
else
|
|
symsrc=$sym
|
|
fi
|
|
if ! grep -q -r --exclude=$(basename $map) \
|
|
-w $symsrc $(dirname $map) ; then
|
|
echo "$map: $sym"
|
|
fi
|
|
done
|
|
done
|
|
}
|
|
|
|
orphan_symbols=$(find_orphan_symbols)
|
|
if [ -n "$orphan_symbols" ] ; then
|
|
echo "Found only in symbol map file:"
|
|
echo "$orphan_symbols" | sed 's,^,\t,'
|
|
ret=1
|
|
fi
|
|
|
|
find_orphan_windows_symbols ()
|
|
{
|
|
for def in $(find lib drivers -name '*_exports.def') ; do
|
|
map=$(dirname $def)/version.map
|
|
for sym in $(grep -v ^EXPORTS $def); do
|
|
grep -q $sym $map || echo $sym
|
|
done
|
|
done
|
|
}
|
|
|
|
orphan_windows_symbols=$(find_orphan_windows_symbols)
|
|
if [ -n "$orphan_windows_symbols" ] ; then
|
|
echo "Found only in Windows export file:"
|
|
echo "$orphan_windows_symbols" | sed 's,^,\t,'
|
|
ret=1
|
|
fi
|
|
|
|
exit $ret
|