libc/stdio: Build the lib_noflush() and lib_snoflush() stubs even if CONFIG_FILE_DESCRIPTORS=0. They may still be needed.

This commit is contained in:
Gregory Nutt 2017-10-08 09:45:50 -06:00
parent a83aef4763
commit ced5b6d504

View File

@ -36,6 +36,10 @@
-include $(TOPDIR)/Make.defs
ASRCS =
CSRCS = z80_irq.c z80_serial.c z80_timerisr.c z80_lowputc.c
CSRCS = z80_irq.c z80_timerisr.c z80_lowputc.c
ifneq ($(CONFIG_DISABLE_SIGNALS),y)
CSRCS += z80_serial.c
endif
include $(TOPDIR)/configs/Board.mk