genode/repos/base-nova/lib/mk/base-nova.mk
Norman Feske 0ab69a2bb8 base: de-duplicate src/lib/base/platform.cc
By splitting the 'init_capability_slab()' implementation to a separate
compilation unit 'capability_slab.cc', base-hw no longer needs a
customized version of 'lib/base/platform.cc'.

Related to issue #4784
2023-07-14 12:06:31 +02:00

13 lines
297 B
Makefile

include $(BASE_DIR)/lib/mk/base.inc
LIBS += base-nova-common cxx timeout
SRC_CC += thread_start.cc
SRC_CC += cache.cc
SRC_CC += signal.cc
SRC_CC += capability_slab.cc
#
# Prevent the compiler from deleting null pointer checks related to 'this == 0'
#
CC_OPT += -fno-delete-null-pointer-checks