gen2brain / go-mpv

Go bindings for libmpv
GNU General Public License v3.0
27 stars 5 forks source link

static linking with mpv? #8

Closed BrownNPC closed 1 day ago

BrownNPC commented 6 days ago

Your readme says this library supports static linking, but i cannot find any documentation for this, please provide the command required to compile the program with mpv statically linked

gen2brain commented 6 days ago

Mpv provides a pkg-config .pc file, the command would be go build -tags pkgconfig,static if libmpv is built statically (i.e. --enable-libmpv-static). You will not find here documentation on how to compile mpv or how pkg-config works. Note that you can point PKG_CONFIG_LIBDIR to your local directory with mpv.pc (and dependencies pkg-config includes) where you can do the modifications if needed, but the mpv build system will usually generate the correct .pc file.