mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-27 09:12:32 +00:00
3d7b92ea50
This patch make the ABI mechanism available to shared libraries other than Genode's dynamic linker. It thereby allows us to introduce intermediate ABIs at the granularity of shared libraries. This is useful for slow-moving ABIs such as the libc's interface but it will also become handy for the package management. To implement the feature, the build system had to be streamlined a bit. In particular, archive dependencies and shared-lib dependencies are now handled separately, and the global list of 'SHARED_LIBS' is no more. Now, the variable with the same name holds the per-target list of shared libraries used by the target.
38 lines
889 B
PHP
38 lines
889 B
PHP
#
|
|
# \brief Portions of base library shared by core and non-core processes
|
|
# \author Norman Feske
|
|
# \date 2013-02-14
|
|
#
|
|
|
|
SRC_CC += avl_tree.cc
|
|
SRC_CC += slab.cc
|
|
SRC_CC += allocator_avl.cc
|
|
SRC_CC += heap.cc sliced_heap.cc
|
|
SRC_CC += registry.cc
|
|
SRC_CC += console.cc
|
|
SRC_CC += output.cc
|
|
SRC_CC += child.cc
|
|
SRC_CC += child_process.cc
|
|
SRC_CC += session_state.cc
|
|
SRC_CC += elf_binary.cc
|
|
SRC_CC += ipc.cc
|
|
SRC_CC += lock.cc
|
|
SRC_CC += log.cc
|
|
SRC_CC += raw_output.cc
|
|
SRC_CC += rpc_entrypoint.cc
|
|
SRC_CC += signal.cc signal_common.cc
|
|
SRC_CC += sleep.cc
|
|
SRC_CC += entrypoint.cc
|
|
SRC_CC += component.cc
|
|
SRC_CC += region_map_client.cc
|
|
SRC_CC += rm_session_client.cc
|
|
SRC_CC += stack_allocator.cc
|
|
SRC_CC += trace.cc
|
|
SRC_CC += root_proxy.cc
|
|
SRC_CC += env_session_id_space.cc
|
|
|
|
INC_DIR += $(REP_DIR)/src/include $(BASE_DIR)/src/include
|
|
|
|
vpath %.cc $(REP_DIR)/src/lib/base
|
|
vpath %.cc $(BASE_DIR)/src/lib/base
|