1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

iec61850-9-2: fix build

This commit is contained in:
Steffen Vogel 2017-11-17 17:47:09 +01:00
parent 16bc167628
commit 2108974027
2 changed files with 3 additions and 3 deletions

View file

@ -30,7 +30,7 @@ LIBEXT_SRCS += $(addprefix lib/, sample.c queue.c queue_signalled.c \
)
LIBEXT_LDFLAGS = -shared
LIBEXT_LDLIBS =
LIBEXT_LDLIBS +=
ifeq ($(PLATFORM),Linux)
LIBEXT_LDLIBS += -ldl -lrt -Wl,-soname,$(LIBEXT_NAME).so.$(LIBEXT_ABI_VERSION)

View file

@ -36,8 +36,8 @@ LIB_SRCS += $(addprefix lib/kernel/, kernel.c rt.c) \
log_helper.c io_format.c task.c buffer.c table.c bitset.c \
)
LIB_LDFLAGS = -shared
LIB_LDLIBS = $(LDLIBS)
LIB_LDFLAGS += -shared
LIB_LDLIBS += $(LDLIBS)
ifeq ($(PLATFORM),Linux)
LIB_LDLIBS += -ldl -lrt -Wl,-soname,$(LIB_NAME).so.$(LIB_ABI_VERSION)