mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-13 16:29:54 +00:00
7a11384177
The pthread API is considered a standard feature of libc so better to simply merge it with the libc. Pthreads are in fact already a part of the libc in the form of weak symbols. This merger is also a prerequisite for better integrating pthreads with the libc I/O task. Fix #3054
21 lines
503 B
Makefile
21 lines
503 B
Makefile
include $(REP_DIR)/lib/mk/virtualbox5-common.inc
|
|
|
|
LIBS += stdcxx
|
|
|
|
SRC_CC = sup.cc pgm.cc
|
|
|
|
INC_DIR += $(call select_from_repositories,src/lib/libc)
|
|
|
|
INC_DIR += $(VIRTUALBOX_DIR)/VBoxAPIWrap
|
|
|
|
INC_DIR += $(VBOX_DIR)/Main/xml
|
|
INC_DIR += $(VBOX_DIR)/Main/include
|
|
INC_DIR += $(VBOX_DIR)/VMM/include
|
|
INC_DIR += $(REP_DIR)/src/virtualbox
|
|
INC_DIR += $(REP_DIR)/src/virtualbox5/frontend
|
|
|
|
vpath sup.cc $(REP_DIR)/src/virtualbox5/spec/nova/
|
|
vpath pgm.cc $(REP_DIR)/src/virtualbox5/spec/nova/
|
|
|
|
CC_CXX_WARN_STRICT =
|