Re: [dpdk-dev] [PATCH 2/2] devtools: check Windows export files

2020-10-16 Thread David Marchand
On Fri, Oct 16, 2020 at 11:39 AM David Marchand wrote: > +validate_windows_exports () > +{ > +for map in $(find lib drivers -name '*.map') ; do > +def=${map/_version.map}_exports.def > +[ -e $def ] || continue I should have inverted this logic and look for exports.def files. I

[dpdk-dev] [PATCH 2/2] devtools: check Windows export files

2020-10-16 Thread David Marchand
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 --- devtools/check-symbol-maps.sh | 24 +++- 1 file changed, 23 insertions(+), 1