summaryrefslogtreecommitdiff
path: root/scripts/build/cc/gcc.sh
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2011-11-15 21:06:21 (GMT)
committerMichael Hope <michael.hope@linaro.org>2011-11-15 21:06:21 (GMT)
commit74d555b2c37f796e5912858ab16968587c691b22 (patch)
treeecad8e1b5b3a0a7b1f0ada7c1bdb836e3ad95713 /scripts/build/cc/gcc.sh
parent81e06b9e15c588c27ed4c31787781eed95250722 (diff)
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 'scripts/build/cc/gcc.sh')
-rw-r--r--scripts/build/cc/gcc.sh19
1 files changed, 17 insertions, 2 deletions
diff --git a/scripts/build/cc/gcc.sh b/scripts/build/cc/gcc.sh
index 05df729..aebaa9f 100644
--- a/scripts/build/cc/gcc.sh
+++ b/scripts/build/cc/gcc.sh
@@ -79,9 +79,9 @@ do_cc_core_pass_2() {
case "${CT_BARE_METAL},${CT_CANADIAN},${CT_THREADS}" in
y,*,*)
if [ "${CT_STATIC_TOOLCHAIN}" = "y" ]; then
- do_cc_core mode=baremetal build_libgcc=yes build_libstdcxx=yes build_staticlinked=yes
+ do_cc_core mode=baremetal build_libgcc=yes build_libstdcxx=yes build_staticlinked=yes build_manuals=yes
else
- do_cc_core mode=baremetal build_libgcc=yes build_libstdcxx=yes
+ do_cc_core mode=baremetal build_libgcc=yes build_libstdcxx=yes build_manuals=yes
fi
;;
,y,*) ;;
@@ -114,6 +114,7 @@ do_cc_core() {
local build_libgcc=no
local build_libstdcxx=no
local build_staticlinked=no
+ local build_manuals=no
local core_prefix_dir
local lang_opt
local tmp
@@ -381,6 +382,13 @@ do_cc_core() {
CT_DoLog EXTRA "Installing ${mode} core C compiler"
CT_DoExecLog ALL make ${JOBSFLAGS} "${core_targets[@]/#/install-}"
+ if [ "${CT_BUILD_MANUALS}" = "y" -a "${build_manuals}" = "yes" ]; then
+ CT_DoLog EXTRA "Building the GCC manuals"
+ CT_DoExecLog ALL make pdf html
+ CT_DoLog EXTRA "Installing the GCC manuals"
+ CT_DoExecLog ALL make install-{pdf,html}-gcc
+ fi
+
# Create a symlink ${CT_TARGET}-cc to ${CT_TARGET}-gcc to always be able
# to call the C compiler with the same, somewhat canonical name.
# check whether compiler has an extension
@@ -625,6 +633,13 @@ do_cc() {
CT_DoLog EXTRA "Installing final compiler"
CT_DoExecLog ALL make ${JOBSFLAGS} install
+ if [ "${CT_BUILD_MANUALS}" = "y" ]; then
+ CT_DoLog EXTRA "Building the GCC manuals"
+ CT_DoExecLog ALL make ${JOBSFLAGS} pdf html
+ CT_DoLog EXTRA "Installing the GCC manuals"
+ CT_DoExecLog ALL make install-{pdf,html}-gcc
+ fi
+
# Create a symlink ${CT_TARGET}-cc to ${CT_TARGET}-gcc to always be able
# to call the C compiler with the same, somewhat canonical name.
# check whether compiler has an extension