diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-11-16 10:06:21 +1300 |
---|---|---|
committer | Michael Hope <michael.hope@linaro.org> | 2011-11-16 10:06:21 +1300 |
commit | 74d555b2c37f796e5912858ab16968587c691b22 (patch) | |
tree | ecad8e1b5b3a0a7b1f0ada7c1bdb836e3ad95713 /config/global | |
parent | 81e06b9e15c588c27ed4c31787781eed95250722 (diff) | |
download | crosstool-ng-74d555b2c37f796e5912858ab16968587c691b22.tar.gz crosstool-ng-74d555b2c37f796e5912858ab16968587c691b22.tar.bz2 crosstool-ng-74d555b2c37f796e5912858ab16968587c691b22.zip |
scripts: add support for building manuals
Add support for building the HTML and PDF manuals for the major
components. Implement for binutils, GCC, GDB, and GLIBC.
Always build all manuals and install a subset. Be explicit about the
subset to reduce the clutter and to avoid getting copies of common
manuals like bfd from all of the sourceware based components. Downside of
being explicit is that you need to update it when a new component
comes along.
Build the manuals as part of the last GCC build, namely 'cc' for glibc
based ones and cc_core_pass_2 for baremetal.
An example of the output is at:
http://people.linaro.org/~michaelh/incoming/crosstool-NG/
Signed-off-by: Michael Hope <michael.hope@linaro.org>
[yann.morin.1998@anciens.enib.fr: depends on ! remove docs; gold manual install]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'config/global')
-rw-r--r-- | config/global/paths.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/global/paths.in b/config/global/paths.in index f7766da9..ed26dfc8 100644 --- a/config/global/paths.in +++ b/config/global/paths.in @@ -90,6 +90,14 @@ config REMOVE_DOCS Remove the installed documentation (man and info pages). Gains around 8MiB for a uClibc-based, C and C++ compiler. +config BUILD_MANUALS + bool + prompt "Build the manuals" + depends on ! REMOVE_DOCS + help + Build the PDF and HTML manuals for the main components such as + binutils, GCC, GDB, and the C library. + config INSTALL_DIR_RO bool prompt "Render the toolchain read-only" |