From: Felix Fietkau Date: Wed, 1 Feb 2017 07:29:06 +0000 (+0100) Subject: toolchain/gcc: reduce source directory size by about 420 MB X-Git-Tag: v17.01.5~295 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=90a43e508e7c4fb29080a0e2214ac49913ce7618 toolchain/gcc: reduce source directory size by about 420 MB Remove gcc testsuite, ada and libjava (if not selected) Signed-off-by: Felix Fietkau (cherry picked from commit f204e0fc4619c7c64d0d99b87b0ddd802338d78a) --- diff --git a/toolchain/gcc/common.mk b/toolchain/gcc/common.mk index fce8a5165c..c6e01b5758 100644 --- a/toolchain/gcc/common.mk +++ b/toolchain/gcc/common.mk @@ -71,6 +71,12 @@ HOST_STAMP_INSTALLED:=$(STAGING_DIR_HOST)/stamp/.gcc_$(GCC_VARIANT)_installed SEP:=, TARGET_LANGUAGES:="c,c++$(if $(CONFIG_INSTALL_LIBGCJ),$(SEP)java)$(if $(CONFIG_INSTALL_GFORTRAN),$(SEP)fortran)$(if $(CONFIG_INSTALL_GCCGO),$(SEP)go)" +TAR_OPTIONS += --exclude='gcc/testsuite/*' --exclude=gcc/ada/*.ad* + +ifndef CONFIG_INSTALL_LIBGCJ + TAR_OPTIONS += --exclude=libjava +endif + export libgcc_cv_fixed_point=no ifdef CONFIG_USE_UCLIBC export glibcxx_cv_c99_math_tr1=no