mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 22:23:16 +00:00
874ba409ca
Implement the passwd database subroutines with single-user database. This database is populated with a <passwd/> sub-node of the libc configuration node. All fields of the "passwd" struct may be specified with reasonable defaults provided for a "root" user. This allows a libc-based component to spoof user information for the sake of porting existing Unix software. A test is provided at run/libc_getpwent. Fix #2919
48 lines
1.4 KiB
Makefile
48 lines
1.4 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 \
|
|
|
|
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 nanosleep.cc \
|
|
pread_pwrite.cc readv_writev.cc poll.cc \
|
|
libc_pdbg.cc vfs_plugin.cc rtc.cc dynamic_linker.cc signal.cc \
|
|
socket_operations.cc task.cc socket_fs_plugin.cc syscall.cc \
|
|
getpwent.cc
|
|
|
|
CC_OPT_sysctl += -Wno-write-strings
|
|
|
|
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
|
|
|
|
#
|
|
# 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=$(REP_DIR)/src/lib/libc/Version.def
|
|
|
|
CC_CXX_WARN_STRICT =
|