mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-25 16:31:06 +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
24 lines
551 B
Makefile
24 lines
551 B
Makefile
SHARED_LIB = yes
|
|
|
|
VFS_DIR = $(REP_DIR)/src/lib/vfs/lxip
|
|
LXIP_DIR = $(REP_DIR)/src/lib/lxip
|
|
|
|
LIBS += lxip lxip_include
|
|
INC_DIR += $(VFS_DIR)
|
|
LD_OPT += --version-script=$(VFS_DIR)/symbol.map
|
|
SRC_CC = vfs.cc
|
|
|
|
vpath %.cc $(REP_DIR)/src/lib/vfs/lxip
|
|
|
|
SETUP_SUFFIX =
|
|
CC_OPT += -DSETUP_SUFFIX=$(SETUP_SUFFIX)
|
|
|
|
CC_OPT += -U__linux__ -D__KERNEL__
|
|
CC_OPT += -DCONFIG_INET -DCONFIG_BASE_SMALL=0 -DCONFIG_DEBUG_LOCK_ALLOC \
|
|
-DCONFIG_IP_PNP_DHCP
|
|
|
|
CC_C_OPT += -include $(LXIP_DIR)/include/lx_emul.h
|
|
CC_CXX_OPT = -fpermissive
|
|
|
|
CC_CXX_WARN_STRICT =
|