Re: [PATCH v2] util: use host module suffix when loading drivers

2020-08-26 Thread Scott Shambarger
On 2020-08-26 01:34, Pavel Hrdina wrote: And pushed. Great, I'll update my pull request on Homebrew. Now to see if I can fix all those tests that have been failing on MacOS... S.

Re: [PATCH v2] util: use host module suffix when loading drivers

2020-08-26 Thread Pavel Hrdina
On Tue, Aug 25, 2020 at 04:47:07PM -0700, Scott Shambarger wrote: > Driver module loaders current hardcode ".so" as the file > extension. On MacOS, meson uses ".dylib" as a module file extension. > This patch adds VIR_FILE_MODULE_EXT to virfile.h defined as the > hosts module extension, and update

[PATCH v2] util: use host module suffix when loading drivers

2020-08-25 Thread Scott Shambarger
Driver module loaders current hardcode ".so" as the file extension. On MacOS, meson uses ".dylib" as a module file extension. This patch adds VIR_FILE_MODULE_EXT to virfile.h defined as the hosts module extension, and updates driver module loaders to make use of it. Signed-off-by: Scott Shambarge