12/03/2024 17:52, Tyler Retzlaff: > When EAL is built with MSVC it is possible to dynamically load plugins > on Windows. Hook eal_plugins_init into rte_eal_init if built with MSVC > and provide code to load plugins on Windows. > > Signed-off-by: Tyler Retzlaff <[email protected]> > Acked-by: Dmitry Kozlyuk <[email protected]> > --- > +#ifdef RTE_EXEC_ENV_WINDOWS > +static void* > +eal_dlopen(const char *pathname) > +{
I'm not sure about having a Windows-specific implementation in lib/eal/common/ Also, the CI is failing with this patchset.

