mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 08:51:08 +00:00
366bba0227
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
25 lines
945 B
Makefile
25 lines
945 B
Makefile
include $(REP_DIR)/lib/mk/libc-gen.inc
|
|
|
|
LIBC_GEN_ARM_DIR = $(LIBC_DIR)/lib/libc/arm/gen
|
|
|
|
#FILTER_OUT_S += rfork_thread.S sigsetjmp.S setjmp.S _setjmp.S divsi3.S
|
|
FILTER_OUT_S += rfork_thread.S divsi3.S setjmp.S _setjmp.S
|
|
FILTER_OUT_C += _set_tp.c fabs.c frexp.c modf.c
|
|
|
|
SRC_S += $(filter-out $(FILTER_OUT_S),$(notdir $(wildcard $(LIBC_GEN_ARM_DIR)/*.S)))
|
|
SRC_C += $(filter-out $(FILTER_OUT_C),$(notdir $(wildcard $(LIBC_GEN_ARM_DIR)/*.c)))
|
|
|
|
#
|
|
# Fix missing include prefix for 'ucontext.h', should be 'sys/ucontext.h'
|
|
#
|
|
# The first path is in effect when using the regular build system. The second
|
|
# path is in effect when building the libc from a source archive (where the
|
|
# ucontext.h header is taken from the libc API archive).
|
|
#
|
|
CC_OPT_makecontext = -I$(call select_from_ports,libc)/include/libc/sys \
|
|
$(addprefix -I,$(call select_from_repositories,/include/libc/sys))
|
|
|
|
vpath % $(LIBC_GEN_ARM_DIR)
|
|
|
|
CC_CXX_WARN_STRICT =
|