mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
76db3b9c06
This commit moves the parameters of the stack area to the base-internal header 'stack_area.h'. Issue #1832
21 lines
529 B
PHP
21 lines
529 B
PHP
#
|
|
# \brief Portions of base library that are exclusive to non-core processes
|
|
# \author Norman Feske
|
|
# \date 2013-02-14
|
|
#
|
|
|
|
LIBS += base-common
|
|
|
|
SRC_CC += console/log_console.cc
|
|
SRC_CC += cpu/cache.cc
|
|
SRC_CC += env/env.cc env/stack_area.cc env/reinitialize.cc \
|
|
env/cap_map_remove.cc env/cap_alloc.cc
|
|
SRC_CC += thread/thread_start.cc
|
|
SRC_CC += irq/platform.cc
|
|
SRC_CC += server/rpc_cap_alloc.cc
|
|
|
|
INC_DIR += $(REP_DIR)/src/include $(BASE_DIR)/src/include
|
|
|
|
vpath %.cc $(REP_DIR)/src/base
|
|
vpath %.cc $(BASE_DIR)/src/base
|