On Tue, Apr 23, 2019 at 11:51 AM Stanislav Angelovič
<angelovi...@gmail.com> wrote:
>
> Hi systemd-ers,
>
> Having recent systemd sources, how can I build libsystemd.so only?
>
> I was able to build the static version with this:
> meson build/
> ninja -C build version.h
> ninja -C build libsystemd.a
>
> But how can I build the shared one? Is there a configuration flag? (I'm not 
> familiar with meson.)

You first need to determine the full soname of the library. You can
figure that out like so:

meson build
readlink build/libsystemd.so.0 # this is a symlink created by meson

Then, pass the full soname to ninja.

ninja -C build libsystemd.so.0.26.0
_______________________________________________
systemd-devel mailing list
systemd-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/systemd-devel

Reply via email to