mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-18 21:27:56 +00:00
c74c8d12cf
Fixes #4834
22 lines
477 B
Makefile
22 lines
477 B
Makefile
#
|
|
# \brief Portions of base library shared by core and non-core processes
|
|
# \author Norman Feske
|
|
# \date 2013-02-14
|
|
#
|
|
|
|
include $(BASE_DIR)/lib/mk/base-common.inc
|
|
|
|
LIBS += startup-nova
|
|
|
|
SRC_CC += thread.cc thread_myself.cc
|
|
SRC_CC += stack.cc
|
|
SRC_CC += stack_area_addr.cc
|
|
SRC_CC += cap_map.cc
|
|
SRC_CC += capability.cc
|
|
SRC_CC += signal_transmitter.cc
|
|
|
|
#
|
|
# Prevent the compiler from deleting null pointer checks related to 'this == 0'
|
|
#
|
|
CC_OPT += -fno-delete-null-pointer-checks
|