mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-18 21:27:56 +00:00
b134867f31
This patch largely reverts the commit "base: lay groundwork for base-linux caps change" because the use of 'epoll' instead of 'select' alleviated the need to allocate large FD sets, which motivated the introduction of the 'Native_context' hook. Related to issue #3581
18 lines
456 B
Makefile
18 lines
456 B
Makefile
#
|
|
# \brief Portions of base library shared by core and non-core processes
|
|
# \author Norman Feske
|
|
# \date 2013-02-14
|
|
#
|
|
|
|
include $(BASE_DIR)/lib/mk/base-common.inc
|
|
|
|
LIBS += startup-pistachio syscall-pistachio
|
|
|
|
SRC_CC += capability.cc capability_raw.cc
|
|
SRC_CC += rpc_dispatch_loop.cc
|
|
SRC_CC += thread.cc thread_bootstrap.cc thread_myself.cc
|
|
SRC_CC += stack_area_addr.cc
|
|
|
|
# suppress warning caused by Pistachio's 'l4/message.h'
|
|
CC_WARN += -Wno-array-bounds
|