aboutsummaryrefslogtreecommitdiff
path: root/config/gcc.conf
diff options
context:
space:
mode:
authorRob Savoye <rob.savoye@linaro.org>2014-09-10 17:29:41 -0600
committerRob Savoye <rob.savoye@linaro.org>2014-09-10 17:29:41 -0600
commit1eab489c2aef8fa196ba2fc1cb43da4dda0ce153 (patch)
tree5fdaf47bc83b6ff8418bf662598f29f5a56495fd /config/gcc.conf
parent14836bcd4936d13831d2f507b4c5b0cdf24833c0 (diff)
for binary tarballs, don't build all the front ends we normally do.
Diffstat (limited to 'config/gcc.conf')
-rw-r--r--config/gcc.conf9
1 files changed, 7 insertions, 2 deletions
diff --git a/config/gcc.conf b/config/gcc.conf
index 1f8fa4bb..886b82a6 100644
--- a/config/gcc.conf
+++ b/config/gcc.conf
@@ -53,8 +53,13 @@ if test `echo ${target} | grep -c aarch64` -eq 1 -a `echo ${gcc_version} | grep
exit 1
fi
-# Default set of languages to build
-languages="c,c++,go,fortran,lto"
+# Default set of languages to build. If building binary tarballs, we don't build all the
+# front ends.
+if test x"${tarbin}" != xyes; then
+ languages="c,c++,go,fortran,lto"
+else
+ languages="c,c++,lto"
+fi
default_makeflags="MAKEINFOFLAGS=--force"