From f7eee58aee1e10c9116fff8042e24e16dea9ce6d Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 3 Sep 2018 13:34:41 -0600 Subject: [PATCH] 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. --- tools/KernelLibs.mk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/KernelLibs.mk b/tools/KernelLibs.mk index fe79a3e687..329fd6ca5e 100644 --- a/tools/KernelLibs.mk +++ b/tools/KernelLibs.mk @@ -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)