mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 06:57:51 +00:00
f9ba60e501
Make 'context_area_virtual_base' platform configurable. On Arndale, we need to move the context area to a location that does not interfere with the address range of physical memory.
18 lines
461 B
Makefile
18 lines
461 B
Makefile
#
|
|
# \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 += env/env.cc env/context_area.cc env/reload_parent_cap.cc \
|
|
env/cap_map_remove.cc env/cap_alloc.cc
|
|
SRC_CC += thread/thread_start.cc thread/thread_context_area.cc
|
|
|
|
INC_DIR += $(BASE_DIR)/src/base/env
|
|
|
|
vpath %.cc $(REP_DIR)/src/base
|
|
vpath %.cc $(BASE_DIR)/src/base
|