summaryrefslogtreecommitdiff
path: root/docs/customize-libc-config.txt
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-03-16 22:14:34 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-03-16 22:14:34 +0100
commit732db5d2473cb5bf2c7d3e28b67e47cecf6008a8 (patch)
treef6df5d74b1f9ed8dbaa4742779f4ab2bf942622d /docs/customize-libc-config.txt
parent1133719749afb61faf8974c87e41c14384b03444 (diff)
parentaaa312e56871e89b97704e5ac8c686fe7966c122 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'docs/customize-libc-config.txt')
-rw-r--r--docs/customize-libc-config.txt33
1 files changed, 33 insertions, 0 deletions
diff --git a/docs/customize-libc-config.txt b/docs/customize-libc-config.txt
new file mode 100644
index 000000000..075a272a0
--- /dev/null
+++ b/docs/customize-libc-config.txt
@@ -0,0 +1,33 @@
+// -*- mode:doc; -*-
+// vim: set syntax=asciidoc:
+
+[[libc-custom]]
+Customizing the libc configuration
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Just like xref:busybox-custom[BusyBox], http://www.uclibc.org/[uClibc]
+offers a lot of configuration options. They allow you to select
+various functionalities depending on your needs and limitations.
+OpenADK chooses automatically the best configuration regarding
+resulting code size, standard conformance, portability and GNU
+libc compatibility.
+
+If you still have the requirements to change the default, regenerate
+a new uClibc config from the existing one:
+
+----------------
+ $ tar xvf dl/uClibc-x.y.z.tar.bz2
+ $ cd uClibc-x.y.z && patch -p1 <../toolchain/uClibc/patches/uclibc-git*.patch
+ $ cp ../target/<arch>/uclibc.config .config
+ $ make menuconfig
+----------------
+
+Make all required changes. Then copy the newly created uClibc configuration back
+and rebuild your targetsystem, including the toolchain components:
+
+----------------
+ $ cp .config ../target/<arch>/uclibc.config
+ $ cd .. && make cleantarget && make
+----------------
+
+There are no customization options for GNU libc or musl available.