mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-24 07:46:42 +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
17 lines
571 B
Makefile
17 lines
571 B
Makefile
RUMP_PORT_DIR := $(call select_from_ports,dde_rump)/src/lib/dde_rump
|
|
RUMP_BASE := $(BUILD_BASE_DIR)/var/libcache/rump
|
|
|
|
ifeq ($(filter-out $(SPECS),arm),)
|
|
# rump include shadows some parts of 'machine' on ARM only,
|
|
# Therefore, it must be included before RUMP_BASE/include/machine
|
|
INC_DIR := $(RUMP_PORT_DIR)/src/sys/rump/include $(INC_DIR)
|
|
endif
|
|
|
|
INC_DIR += $(LIBGCC_INC_DIR) \
|
|
$(RUMP_PORT_DIR)/src/sys \
|
|
$(RUMP_PORT_DIR)/src/sys/rump/include \
|
|
$(RUMP_PORT_DIR)/src/sys/sys \
|
|
$(RUMP_BASE)/include
|
|
|
|
CC_CXX_WARN_STRICT =
|