2011-12-22 15:19:25 +00:00
|
|
|
GEN_CORE_DIR = $(BASE_DIR)/src/core
|
|
|
|
|
2016-12-29 17:27:45 +00:00
|
|
|
LIBS += base-foc-common syscall-foc cxx
|
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
|
|
|
|
2016-01-23 13:42:55 +00:00
|
|
|
SRC_CC += stack_area.cc \
|
2017-06-20 13:01:05 +00:00
|
|
|
stack_area_addr.cc \
|
2017-12-11 12:05:08 +00:00
|
|
|
core_log.cc \
|
2017-12-12 09:53:03 +00:00
|
|
|
core_log_out.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 \
|
2016-05-10 16:05:38 +00:00
|
|
|
cpu_thread_component.cc \
|
2012-10-02 11:11:58 +00:00
|
|
|
dataspace_component.cc \
|
2016-05-03 14:31:17 +00:00
|
|
|
default_log.cc \
|
2012-10-02 11:11:58 +00:00
|
|
|
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 \
|
2015-06-19 12:58:18 +00:00
|
|
|
pager.cc \
|
2015-07-29 08:58:17 +00:00
|
|
|
pager_object.cc \
|
2017-08-02 15:30:49 +00:00
|
|
|
pd_session_support.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 \
|
2017-08-17 14:20:56 +00:00
|
|
|
platform_rom_modules.cc \
|
2012-10-02 11:11:58 +00:00
|
|
|
platform_pd.cc \
|
|
|
|
platform_thread.cc \
|
2017-05-11 18:03:28 +00:00
|
|
|
pd_session_component.cc \
|
2017-05-11 13:03:03 +00:00
|
|
|
ram_dataspace_support.cc \
|
|
|
|
ram_dataspace_factory.cc \
|
2016-04-15 13:19:22 +00:00
|
|
|
region_map_component.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 \
|
2017-05-10 18:11:38 +00:00
|
|
|
signal_transmitter_proxy.cc \
|
|
|
|
signal_receiver.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 \
|
2018-11-14 15:19:30 +00:00
|
|
|
trace_session_component.cc \
|
2018-09-26 12:48:25 +00:00
|
|
|
vm_session_component.cc \
|
2019-04-02 15:41:30 +00:00
|
|
|
vm_session_common.cc \
|
2018-11-14 15:19:30 +00:00
|
|
|
heartbeat.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)
|
2017-12-11 12:05:08 +00:00
|
|
|
vpath core_log.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)
|
2016-05-10 16:05:38 +00:00
|
|
|
vpath cpu_thread_component.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)
|
2016-05-03 14:31:17 +00:00
|
|
|
vpath default_log.cc $(GEN_CORE_DIR)
|
2012-10-02 11:11:58 +00:00
|
|
|
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)
|
2017-08-02 15:30:49 +00:00
|
|
|
vpath pd_session_support.cc $(GEN_CORE_DIR)
|
2016-01-19 19:24:22 +00:00
|
|
|
vpath pd_upgrade_ram_quota.cc $(GEN_CORE_DIR)
|
2017-05-11 18:03:28 +00:00
|
|
|
vpath pd_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)
|
2017-05-11 13:03:03 +00:00
|
|
|
vpath ram_dataspace_factory.cc $(GEN_CORE_DIR)
|
2017-05-10 18:11:38 +00:00
|
|
|
vpath signal_transmitter_proxy.cc $(GEN_CORE_DIR)
|
|
|
|
vpath signal_receiver.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)
|
2017-08-17 14:20:56 +00:00
|
|
|
vpath platform_rom_modules.cc $(GEN_CORE_DIR)
|
2018-11-14 15:19:30 +00:00
|
|
|
vpath heartbeat.cc $(GEN_CORE_DIR)
|
2019-04-02 15:41:30 +00:00
|
|
|
vpath vm_session_common.cc $(GEN_CORE_DIR)
|
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
|