When creating a shared library for use as a plugin in existing programs/languages, you often need to follow certain naming conventions, e.g. myprogram-plugin-b.so.
I can't seem to find a way to set the output filename from zig build-lib -dynamic. It seems to come out as libNAME.so.x.y.z where NAME can be set with --name and x/y/z can come from the --ver flags.
Possibly related to #2230
When creating a shared library for use as a plugin in existing programs/languages, you often need to follow certain naming conventions, e.g.
myprogram-plugin-b.so.I can't seem to find a way to set the output filename from
zig build-lib -dynamic. It seems to come out aslibNAME.so.x.y.zwhere NAME can be set with--nameandx/y/zcan come from the--verflags.Possibly related to #2230