tools/KernelLibs.mk: Force libproxies to be built and installed before applications are build. Otherwise, the applications will not be able to find libproxies. I don't know why this was never seen before. Must be due to recent changes in the apps/ directory. The change is correct in any event.

This commit is contained in:
Gregory Nutt 2018-09-03 13:34:41 -06:00
parent 152ccbd447
commit f7eee58aee
1 changed files with 6 additions and 0 deletions

View File

@ -79,6 +79,12 @@ ifeq ($(CONFIG_HAVE_CXX),y)
USERLIBS += staging$(DELIM)$(LIBXX)$(LIBEXT)
endif
# Add library for application support.
ifneq ($(APPDIR),)
USERLIBS += staging$(DELIM)libapps$(LIBEXT)
endif
# Add libraries for network support
ifeq ($(CONFIG_NET),y)