2011-12-22 15:19:25 +00:00
|
|
|
TARGET = core
|
2015-06-19 12:58:18 +00:00
|
|
|
REQUIRES += foc
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
GEN_CORE_DIR = $(BASE_DIR)/src/core
|
|
|
|
|
Merge base libraries into a single library
This patch simplifies the way of how Genode's base libraries are
organized. Originally, the base API was implemented in the form of many
small libraries such as 'thread', 'env', 'server', etc. Most of them
used to consist of only a small number of files. Because those libraries
are incorporated in any build, the checking of their inter-dependencies
made the build process more verbose than desired. Also, the number of
libraries and their roles (core only, non-core only, shared by both core
and non-core) were not easy to capture.
Hereby, the base libraries have been reduced to the following few
libraries:
- startup.mk contains the startup code for normal Genode processes.
On some platform, core is able to use the library as well.
- base-common.mk contains the parts of the base library that are
identical by core and non-core processes.
- base.mk contains the complete base API implementation for non-core
processes
Consequently, the 'LIBS' declaration in 'target.mk' files becomes
simpler as well. In the most simple case, only the 'base' library must
be mentioned.
Fixes #18
2013-02-14 11:39:51 +00:00
|
|
|
LIBS += base-common
|
|
|
|
|
2016-01-23 13:42:55 +00:00
|
|
|
SRC_CC += stack_area.cc \
|
2015-06-19 12:58:18 +00:00
|
|
|
core_printf.cc \
|
2016-04-20 19:12:57 +00:00
|
|
|
core_region_map.cc \
|
2016-01-19 19:24:22 +00:00
|
|
|
core_rpc_cap_alloc.cc \
|
2011-12-22 15:19:25 +00:00
|
|
|
cpu_session_component.cc \
|
2016-03-30 13:34:37 +00:00
|
|
|
cpu_session_support.cc \
|
2012-10-02 11:11:58 +00:00
|
|
|
dataspace_component.cc \
|
|
|
|
dump_alloc.cc \
|
2011-12-22 15:19:25 +00:00
|
|
|
io_mem_session_component.cc \
|
|
|
|
io_mem_session_support.cc \
|
2015-06-19 12:58:18 +00:00
|
|
|
ipc_pager.cc \
|
2012-10-02 11:11:58 +00:00
|
|
|
irq_session_component.cc \
|
|
|
|
main.cc \
|
|
|
|
multiboot_info.cc \
|
2015-06-19 12:58:18 +00:00
|
|
|
pager.cc \
|
2015-07-29 08:58:17 +00:00
|
|
|
pager_object.cc \
|
2012-10-02 11:11:58 +00:00
|
|
|
pd_session_component.cc \
|
2016-01-19 19:24:22 +00:00
|
|
|
pd_assign_pci.cc \
|
|
|
|
pd_upgrade_ram_quota.cc \
|
|
|
|
native_pd_component.cc \
|
2016-03-30 13:34:37 +00:00
|
|
|
native_cpu_component.cc \
|
2016-01-19 19:24:22 +00:00
|
|
|
rpc_cap_factory.cc \
|
2011-12-22 15:19:25 +00:00
|
|
|
platform.cc \
|
2012-10-02 11:11:58 +00:00
|
|
|
platform_pd.cc \
|
|
|
|
platform_services.cc \
|
|
|
|
platform_thread.cc \
|
|
|
|
ram_session_component.cc \
|
|
|
|
ram_session_support.cc \
|
2016-04-15 13:19:22 +00:00
|
|
|
region_map_component.cc \
|
|
|
|
region_map_support.cc \
|
2012-10-02 11:11:58 +00:00
|
|
|
rom_session_component.cc \
|
2011-12-22 15:19:25 +00:00
|
|
|
signal_source_component.cc \
|
Merge base libraries into a single library
This patch simplifies the way of how Genode's base libraries are
organized. Originally, the base API was implemented in the form of many
small libraries such as 'thread', 'env', 'server', etc. Most of them
used to consist of only a small number of files. Because those libraries
are incorporated in any build, the checking of their inter-dependencies
made the build process more verbose than desired. Also, the number of
libraries and their roles (core only, non-core only, shared by both core
and non-core) were not easy to capture.
Hereby, the base libraries have been reduced to the following few
libraries:
- startup.mk contains the startup code for normal Genode processes.
On some platform, core is able to use the library as well.
- base-common.mk contains the parts of the base library that are
identical by core and non-core processes.
- base.mk contains the complete base API implementation for non-core
processes
Consequently, the 'LIBS' declaration in 'target.mk' files becomes
simpler as well. In the most simple case, only the 'base' library must
be mentioned.
Fixes #18
2013-02-14 11:39:51 +00:00
|
|
|
thread_start.cc \
|
2015-06-19 12:58:18 +00:00
|
|
|
trace_session_component.cc
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
INC_DIR += $(REP_DIR)/src/core/include \
|
2012-02-29 14:23:06 +00:00
|
|
|
$(GEN_CORE_DIR)/include \
|
2016-01-20 17:27:18 +00:00
|
|
|
$(REP_DIR)/src/include \
|
|
|
|
$(BASE_DIR)/src/include
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-03-18 15:23:52 +00:00
|
|
|
include $(GEN_CORE_DIR)/version.inc
|
|
|
|
|
2016-01-23 13:42:55 +00:00
|
|
|
vpath stack_area.cc $(GEN_CORE_DIR)
|
2012-10-02 11:11:58 +00:00
|
|
|
vpath cpu_session_component.cc $(GEN_CORE_DIR)
|
2016-03-30 13:34:37 +00:00
|
|
|
vpath cpu_session_support.cc $(GEN_CORE_DIR)
|
2012-10-02 11:11:58 +00:00
|
|
|
vpath dataspace_component.cc $(GEN_CORE_DIR)
|
|
|
|
vpath dump_alloc.cc $(GEN_CORE_DIR)
|
|
|
|
vpath io_mem_session_component.cc $(GEN_CORE_DIR)
|
|
|
|
vpath io_mem_session_support.cc $(GEN_CORE_DIR)
|
2011-12-22 15:19:25 +00:00
|
|
|
vpath main.cc $(GEN_CORE_DIR)
|
|
|
|
vpath multiboot_info.cc $(GEN_CORE_DIR)
|
|
|
|
vpath pd_session_component.cc $(GEN_CORE_DIR)
|
2016-01-19 19:24:22 +00:00
|
|
|
vpath pd_assign_pci.cc $(GEN_CORE_DIR)
|
|
|
|
vpath pd_upgrade_ram_quota.cc $(GEN_CORE_DIR)
|
2012-10-02 11:11:58 +00:00
|
|
|
vpath ram_session_component.cc $(GEN_CORE_DIR)
|
2016-04-15 13:19:22 +00:00
|
|
|
vpath region_map_component.cc $(GEN_CORE_DIR)
|
2012-10-02 11:11:58 +00:00
|
|
|
vpath rom_session_component.cc $(GEN_CORE_DIR)
|
2013-08-10 01:44:55 +00:00
|
|
|
vpath trace_session_component.cc $(GEN_CORE_DIR)
|
2016-01-19 19:24:22 +00:00
|
|
|
vpath core_rpc_cap_alloc.cc $(GEN_CORE_DIR)
|
2016-04-20 19:12:57 +00:00
|
|
|
vpath core_region_map.cc $(GEN_CORE_DIR)
|
2016-04-29 11:23:19 +00:00
|
|
|
vpath core_printf.cc $(BASE_DIR)/src/lib/base
|
2011-12-22 15:19:25 +00:00
|
|
|
vpath %.cc $(REP_DIR)/src/core
|
2016-04-29 11:23:19 +00:00
|
|
|
vpath %.cc $(REP_DIR)/src/lib/base
|