Updating export files (supposed to disappear at some point, but still
there) might be missed when removing symbols in the API / map files.
Add a check for this case.
Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
# speed up by ignoring Unicode details
export LC_ALL=C
# speed up by ignoring Unicode details
export LC_ALL=C
find_orphan_symbols ()
{
for map in $(find lib drivers -name '*.map') ; do
find_orphan_symbols ()
{
for map in $(find lib drivers -name '*.map') ; do
if [ -n "$orphan_symbols" ] ; then
echo "Found only in symbol map file:"
echo "$orphan_symbols" | sed 's,^,\t,'
if [ -n "$orphan_symbols" ] ; then
echo "Found only in symbol map file:"
echo "$orphan_symbols" | sed 's,^,\t,'
+
+find_orphan_windows_symbols ()
+{
+ for def in $(find lib drivers -name '*_exports.def') ; do
+ map=${def/_exports.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