From a7c3e292bc48e5faee5731bad0722e037bcc98b0 Mon Sep 17 00:00:00 2001
From: Rob Landley
The C library is part of a "toolchain", which is an integrated suite +The C library is part of a "toolchain", which is an integrated suite of compiler, assembler, and linker, plus the standard headers and libraries -necessary to build C programs.
+necessary to build C programs. - - Static linking (with the --static option) -copies the shared library contents into the program, resulting in -larger but more portable programs. Dynamically linked programs (the default) -Otherwise, the -"dynamically" linked programs require the -library to be present on the target system ("man ldd" and "man ld.so" for -details) statically linked programs do not. +Static linking (with the --static option) copies the shared library contents +into the program, resulting in larger but more portable programs, which +can run even if they'rr the only file in the filesystem. Otherwise, +the "dynamically" linked programs require the library files to be present on +the target system ("man ldd" and "man ld.so" for details). Toybox is not a kernel, it needs Linux to drive the hardware. -- cgit v1.2.3