1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 04:52:59 +01:00

makefile/..picolib: make missing picolib fail louder

This commit is contained in:
Karl Fessel 2021-02-15 10:51:51 +01:00
parent ffdddc802e
commit f3c0a4e602

View File

@ -6,6 +6,9 @@ ifneq (,$(filter picolibc,$(USEMODULE)))
CFLAGS += -fshort-wchar
LINKFLAGS += -Wl,--no-wchar-size-warning
endif
else
$(warning picolib was selected to be build but no picolib.spec could be found)
$(error check your installation or build configuration.)
endif
endif