mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
This is a follow-up commit to "Increase default warning level", which overrides Genode's new default warning level for targets contained in higher-level repositories. By explicitly whitelisting all those targets, we can selectively adjust them to the new strictness over time - by looking out for 'CC_CXX_WARN_STRICT' in the target description files. Issue #465
10 lines
332 B
Makefile
10 lines
332 B
Makefile
include $(call select_from_repositories,lib/mk/libc-common.inc)
|
|
|
|
SRC_C = stdlib/strtoul.c
|
|
SRC_C += $(addprefix string/,strchr.c strncpy.c strspn.c strcspn.c strstr.c strlen.c strnlen.c strcpy.c memcmp.c strcmp.c)
|
|
SRC_C += sys/__error.c gen/errno.c locale/none.c locale/table.c
|
|
|
|
vpath %.c $(LIBC_DIR)/lib/libc
|
|
|
|
CC_CXX_WARN_STRICT =
|