Commit 33993eaf authored by Ruslan Kuprieiev's avatar Ruslan Kuprieiev Committed by Pavel Emelyanov

make: add ldflags-so variable to make engine

We need it to use other dynamic libraries in libcriu.
Signed-off-by: 's avatarRuslan Kuprieiev <kupruser@gmail.com>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 5ec15bf2
...@@ -204,7 +204,7 @@ endif ...@@ -204,7 +204,7 @@ endif
ifneq ($(lib-so),) ifneq ($(lib-so),)
$(obj)/$(lib-so).so: $(all-objs) $(libs-e) $(obj)/$(lib-so).so: $(all-objs) $(libs-e)
$(E) " LINK " $@ $(E) " LINK " $@
$(Q) $(CC) -shared $(cflags-so) -o $@ $^ $(Q) $(CC) -shared $(cflags-so) -o $@ $^ $(ldflags-so)
_all += $(obj)/$(lib-so).so _all += $(obj)/$(lib-so).so
cleanup-y += $(obj)/$(lib-so).so cleanup-y += $(obj)/$(lib-so).so
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment