mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-15 15:32:07 +00:00
Dataspace components inherit from RPC objects which are non-copyable from now on. Therefore, the Rom_session_component's constructor had to be modified to not construct a dataspace component on the stack and assign it in the following. Ref #1704
55 lines
2.0 KiB
Makefile
55 lines
2.0 KiB
Makefile
TARGET = core
|
|
REQUIRES = linux
|
|
LIBS = cxx base-common syscall startup
|
|
|
|
GEN_CORE_DIR = $(BASE_DIR)/src/core
|
|
|
|
SRC_CC = main.cc \
|
|
platform.cc \
|
|
platform_thread.cc \
|
|
platform_services.cc \
|
|
ram_session_component.cc \
|
|
ram_session_support.cc \
|
|
rom_session_component.cc \
|
|
cap_session_component.cc \
|
|
cpu_session_component.cc \
|
|
cpu_session_extension.cc \
|
|
cpu_session_support.cc \
|
|
dataspace_component.cc \
|
|
pd_session_component.cc \
|
|
io_mem_session_component.cc \
|
|
signal_session_component.cc \
|
|
signal_source_component.cc \
|
|
trace_session_component.cc \
|
|
thread_linux.cc \
|
|
context_area.cc \
|
|
core_printf.cc \
|
|
thread.cc myself.cc
|
|
|
|
INC_DIR += $(REP_DIR)/src/core/include \
|
|
$(GEN_CORE_DIR)/include \
|
|
$(REP_DIR)/src/platform \
|
|
$(REP_DIR)/src/base/ipc \
|
|
$(REP_DIR)/src/base/env \
|
|
$(BASE_DIR)/src/base/env \
|
|
$(REP_DIR)/src/base/console \
|
|
$(BASE_DIR)/src/base/thread \
|
|
|
|
HOST_INC_DIR += /usr/include
|
|
|
|
include $(GEN_CORE_DIR)/version.inc
|
|
|
|
vpath main.cc $(GEN_CORE_DIR)
|
|
vpath ram_session_component.cc $(GEN_CORE_DIR)
|
|
vpath cap_session_component.cc $(GEN_CORE_DIR)
|
|
vpath cpu_session_component.cc $(GEN_CORE_DIR)
|
|
vpath platform_services.cc $(GEN_CORE_DIR)
|
|
vpath signal_session_component.cc $(GEN_CORE_DIR)
|
|
vpath signal_source_component.cc $(GEN_CORE_DIR)
|
|
vpath trace_session_component.cc $(GEN_CORE_DIR)
|
|
vpath core_printf.cc $(BASE_DIR)/src/base/console
|
|
vpath thread.cc $(BASE_DIR)/src/base/thread
|
|
vpath myself.cc $(BASE_DIR)/src/base/thread
|
|
vpath trace.cc $(BASE_DIR)/src/base/thread
|
|
vpath %.cc $(PRG_DIR)
|