chiark / gitweb /
7d5751804f4ad7d5e6123e9771d6e0ceaf7d4d9e
[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.5 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".
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 i386 s390 s390x sparc sparc64 x86_64*
38    Works static, not shared:   mips* arm-thumb sh*
39    Need crt0.S updates:        ppc 
40    Missing setjmp:             ppc64
41    Need porting work:          cris ia64 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 for sparc/sparc64 requires binutils 2.13.90.0.4.
47
48    Note that even the "known to work" ones likely have bugs.  Please
49    report them if you run into them.
50
51 c) Type "make" and pray...
52
53 d) Try the test programs in the tests/ directory.  They should run...
54
55 Contact me at <hpa@zytor.com> for more info.
56
57         -hpa