]> Zhao Yanbai Git Server - minix.git/commit
Fine grained compatibility with _RENAMEd symbols
authorThomas Veerman <thomas@minix3.org>
Mon, 28 Nov 2011 10:12:44 +0000 (10:12 +0000)
committerThomas Veerman <thomas@minix3.org>
Mon, 28 Nov 2011 10:12:44 +0000 (10:12 +0000)
commitfb50da9dadfa3b146f7b8d340dc01a80f203ce4a
tree06ecb4097bbfc1a0c17ab49e956ddc573d19a650
parent92b61c816d143bb17882d0b708793f05f72b343c
Fine grained compatibility with _RENAMEd symbols

The NetBSD libc provides a mechanism to have versions of system calls.
By 'renaming' symbols to a new version, freshly compiled programs will
automatically use the new symbol iff they use the proper header files. The
old, not renamed, version of the symbol will still exist (after being moved
to the compat directory), so old programs can still link.

Since MINIX doesn't support dynamic linking, the whole rename mechanism
doesn't really work for us. However, removing it would create a huge diff
with the current NetBSD libc.

A lot of the compat code relies on things we don't (seem to) have, and
therefore does not get built and linked. This causes trouble for tools like
autoconf, which will fail to find the renamed symbols. For example,
currently select gets renamed to __select50 in libc. Autoconf looks for
'select' and doesn't find it and reports we don't have it. This is where
the compat.S stub comes into play: it generates the old symbols and jumps to
the new symbols. However, as this is done in one object file, all renamed
symbols get linked together, causing binaries to be huge. This patch fixes
that by generating an object file for each renamed symbol.

This patch also makes the MISSING_SYSCALLS more complete and marginally
reduces the diff with NetBSD.
lib/libutil/Makefile
lib/libutil/compat-minix/Makefile.inc [new file with mode: 0644]
lib/libutil/compat/Makefile.inc
lib/nbsd_libc/Makefile
lib/nbsd_libc/compat-minix/Makefile.inc [new file with mode: 0644]
lib/nbsd_libc/sys-minix/MISSING_SYSCALLS
lib/nbsd_libc/sys-minix/Makefile.inc
lib/nbsd_libc/sys-minix/compat.S [deleted file]
nbsd_include/time.h
nbsd_include/unistd.h