mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
0ab69a2bb8
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
13 lines
297 B
Makefile
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
|