mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
ea46c462a4
When running core as the kernel inside every component, a separate stack area for core is needed that is different from the user-land component's one. Ref #2091
17 lines
350 B
Makefile
17 lines
350 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
|