chiark / gitweb /
[PATCH] sync with latest version of klibc (0.107)
[elogind.git] / klibc / klibc / README
1 This is klibc, what is intended to be a minimalistic libc subset for
2 use with initramfs.  It is deliberately written for small size,
3 minimal entaglement and portability, not speed.  It is definitely a
4 work in progress, and a lot of things are still missing.
5
6
7 The build procedure is not very polished yet, but it should work like
8 this:
9
10 a) In the source root directory (the directory above the one in which
11    this file is found) create a symlink called "linux" pointing to a
12    reasonably recent Linux kernel tree (2.4 or 2.6 should be OK.)
13    This tree must have the include/asm symlink set up for the
14    architecture you're compiling for, and include/linux/autoconf.h
15    must exist.  The easiest way to make sure of all of these is to do
16    a "make config" or any of its variants on the kernel tree is
17    question, followed by a "make dep" (2.4) or "make prepare" (2.6).
18
19 b) If you're cross-compiling, change ARCH in the main MCONFIG file to
20    the appropriate architecture, and set CROSS to your toolchain
21    prefix.
22
23    IMPORTANT: if you're on a 64-bit machine with a 32-bit userland
24    (ia64, mips64, ppc64 sparc64, s390x or x86_64), and you want to
25    build the 32-bit version: you need to set ARCH to the 32-bit
26    architecture as well as set up the linux/include/asm symlink to
27    point to the 32-bit architecture.  Building the 32-bit architecture
28    usually (but not always) produces smaller binaries, and is likely
29    to be better tested.
30
31    If you are on ARM, and want to build a thumb version of the library
32    (this is supported), change OPTFLAGS in arch/arm/MCONFIG to build
33    thumb code.
34
35    The following is the last known status of various architectures:
36
37    Known to work:              alpha arm ia64 i386 ppc s390 s390x sparc
38                                sparc64 x86_64*
39    Works static, not shared:   mips* arm-thumb sh*
40    Might work:                 ppc64
41    Need porting work:          cris m68k mips64 parisc
42
43    x86_64:   requires a kernel header patch (to be created)
44    mips, sh: linker problem; might work with fixed linker
45
46    Shared library support requires binutils 2.13.90.0.4 or later on
47    many architectures.
48
49    Note that even the "known to work" ones likely have bugs.  Please
50    report them if you run into them.
51
52 c) Type "make" and pray...
53
54 d) Try the test programs in the tests/ directory.  They should run...
55
56 Contact the klibc mailing list:
57
58         http://www.zytor.com/mailman/listinfo/klibc
59
60 ... for more info.
61
62         -hpa