mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-29 18:18:54 +00:00
bf92232698
This patch is the first step of re-organizing the internal structure of the libc. The original version involved many direct calls of global functions (often with side effects) across compilation units, which made the control flow (e.g., the initialization sequence) hard to follow. The new version replaces those ad-hoc interactions with dedicated interfaces (like suspend.h, resume.h, select.h, current_time.h). The underlying facilities are provided by the central Libc::Kernel and selectively propagated to the various compilation units. The latter is done by a sequence of 'init_*' calls, which eventually will be replaced by constructor calls. The addition of new headers increases the chance for name clashes with existing (public) headers. To disambiguate libc-internal header files from public headers, this patch moves the former into a new 'internal/' subdirectory. This makes the include directives easier to follow and the libc's source-tree structure more tidy. There are still a few legacies left, which cannot easily be removed right now (e.g., because noux relies on them). However, the patch moves those bad apples to legacy.h and legacy.cc, which highlights the deprecation of those functions. Issue #3497
62 lines
1.7 KiB
Makefile
62 lines
1.7 KiB
Makefile
#
|
|
# C Library including string, locale
|
|
#
|
|
LIBS = libc-string libc-locale libc-stdlib libc-stdio libc-gen libc-gdtoa \
|
|
libc-inet libc-stdtime libc-regex libc-compat libc-setjmp libc-mem \
|
|
libc-resolv libc-isc libc-nameser libc-net libc-rpc libc-tzcode \
|
|
libc-libkern
|
|
|
|
LIBS += base vfs
|
|
|
|
#
|
|
# Back end
|
|
#
|
|
SRC_CC = atexit.cc dummies.cc rlimit.cc sysctl.cc \
|
|
issetugid.cc errno.cc gai_strerror.cc time.cc \
|
|
malloc.cc progname.cc fd_alloc.cc file_operations.cc \
|
|
plugin.cc plugin_registry.cc select.cc exit.cc environ.cc sleep.cc \
|
|
pread_pwrite.cc readv_writev.cc poll.cc \
|
|
vfs_plugin.cc dynamic_linker.cc signal.cc \
|
|
socket_operations.cc socket_fs_plugin.cc syscall.cc legacy.cc \
|
|
getpwent.cc getrandom.cc fork.cc execve.cc kernel.cc component.cc
|
|
|
|
#
|
|
# Pthreads
|
|
#
|
|
SRC_CC += semaphore.cc rwlock.cc \
|
|
pthread.cc pthread_create.cc
|
|
|
|
#
|
|
# FreeBSD headers use the C99 restrict keyword
|
|
#
|
|
CXX_DEF += -Drestrict=__restrict
|
|
|
|
#
|
|
# Extra include path for internal dummies
|
|
#
|
|
CC_OPT_dummies += -I$(LIBC_DIR)/sys
|
|
|
|
INC_DIR += $(REP_DIR)/src/lib/libc
|
|
INC_DIR += $(REP_DIR)/src/lib/libc/include
|
|
|
|
# needed for base/internal/unmanaged_singleton.h
|
|
INC_DIR += $(BASE_DIR)/src/include
|
|
INC_DIR += $(BASE_DIR)/sys
|
|
|
|
#
|
|
# Files from string library that are not included in libc-raw_string because
|
|
# they depend on the locale library.
|
|
#
|
|
SRC_C += strcoll.c strxfrm.c wcscoll.c wcsxfrm.c
|
|
|
|
include $(REP_DIR)/lib/mk/libc-common.inc
|
|
|
|
vpath % $(REP_DIR)/src/lib/libc
|
|
vpath % $(LIBC_DIR)/lib/libc/string
|
|
|
|
#
|
|
# Shared library, for libc we need symbol versioning
|
|
#
|
|
SHARED_LIB = yes
|
|
LD_OPT += --version-script=$(LIBC_DIR)/lib/libc/Versions.def
|