libapps.a: Add the static application library always to the target libraries

This error was made by me a long time ago, not understanding how the kernel
mode build is expected to work. So partially revert PR#946.
This commit is contained in:
Ville Juven 2022-10-14 10:01:50 +03:00 committed by Xiang Xiao
parent bca94fce5a
commit f844db5194
2 changed files with 4 additions and 6 deletions

View file

@ -66,7 +66,7 @@ LDLIBPATH = $(addprefix -L,$(call CONVERT_PATH,$(TOPDIR)$(DELIM)libs))
# Link with user libraries
ifeq ($(CONFIG_BUILD_KERNEL),y)
LDLIBS = -lapps -lmm -lc -lproxies
LDLIBS += -lmm -lc -lproxies
ifeq ($(CONFIG_HAVE_CXX),y)
LDLIBS += -lxx
endif