From 8c6bc7f728b9d8709de364c37a24f0b5a469f966 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 4 Sep 2014 11:43:41 -0600 Subject: In the kernel build, only the user libraries should be exported. --- nuttx/KernelLibs.mk | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'nuttx/KernelLibs.mk') diff --git a/nuttx/KernelLibs.mk b/nuttx/KernelLibs.mk index 8d7c35920..2f1870493 100644 --- a/nuttx/KernelLibs.mk +++ b/nuttx/KernelLibs.mk @@ -39,6 +39,8 @@ # is disabled. # USERLIBS is the list of libraries used to build the final user-space # application +# EXPORTLIBS is the list of libraries that should be exported by +# 'make export' is NUTTXLIBS = lib$(DELIM)libsched$(LIBEXT) USERLIBS = @@ -97,3 +99,7 @@ endif ifeq ($(CONFIG_AUDIO),y) NUTTXLIBS += lib$(DELIM)libaudio$(LIBEXT) endif + +# Export only the user libraries + +EXPORTLIBS = $(USERLIBS) -- cgit v1.2.3