mirror of
https://github.com/apache/nuttx.git
synced 2026-05-25 18:27:56 +08:00
tools: Fix an issue that libboard.a is not exported
If CONFIG_ARCH_BOARD_COMMON is enabled, libboard.a should be generated. Fix an issue it is not built with make export.
This commit is contained in:
committed by
Petro Karashchenko
parent
a31316cab5
commit
10a5c660f2
@@ -132,6 +132,12 @@ ifeq ($(CONFIG_OPENAMP),y)
|
||||
NUTTXLIBS += staging$(DELIM)libopenamp$(LIBEXT)
|
||||
endif
|
||||
|
||||
# Add libraries for board common support
|
||||
|
||||
ifeq ($(CONFIG_ARCH_BOARD_COMMON),y)
|
||||
NUTTXLIBS += staging$(DELIM)libboard$(LIBEXT)
|
||||
endif
|
||||
|
||||
# Export only the user libraries
|
||||
|
||||
EXPORTLIBS = $(USERLIBS)
|
||||
|
||||
Reference in New Issue
Block a user