diff options
author | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-04-01 19:07:11 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-04-01 19:07:11 +0200 |
commit | 6471f1598c949b4ce8af441aeedd61273ca5df3a (patch) | |
tree | 76224ae3a4fe6e61d553f2058b68fc219d061c66 | |
parent | 7b360e7a2284054b9e1701660bf1f0ca545fbba6 (diff) | |
download | crosstool-ng-6471f1598c949b4ce8af441aeedd61273ca5df3a.tar.gz crosstool-ng-6471f1598c949b4ce8af441aeedd61273ca5df3a.tar.bz2 crosstool-ng-6471f1598c949b4ce8af441aeedd61273ca5df3a.zip |
cc/gcc: frontends are responsible for selecting the list of languages
Do for the final step the same as for the core step: compute the list
of selected langauages from the frontend, not in the backend.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
-rw-r--r-- | scripts/build/cc/gcc.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/build/cc/gcc.sh b/scripts/build/cc/gcc.sh index 11bb9377..ac217d68 100644 --- a/scripts/build/cc/gcc.sh +++ b/scripts/build/cc/gcc.sh @@ -490,6 +490,7 @@ do_cc() { final_opts+=( "prefix=${CT_PREFIX_DIR}" ) final_opts+=( "complibs=${CT_HOST_COMPLIBS_DIR}" ) final_opts+=( "cflags=${CT_CFLAGS_FOR_HOST}" ) + final_opts+=( "lang_list=$( cc_gcc_lang_list )" ) if [ "${CT_BUILD_MANUALS}" = "y" ]; then final_opts+=( "build_manuals=yes" ) fi @@ -497,7 +498,6 @@ do_cc() { final_opts+=( "mode=baremetal" ) final_opts+=( "build_libgcc=yes" ) final_opts+=( "build_libstdcxx=yes" ) - final_opts+=( "lang_list=$( cc_gcc_lang_list )" ) if [ "${CT_STATIC_TOOLCHAIN}" = "y" ]; then final_opts+=( "build_staticlinked=yes" ) fi @@ -523,12 +523,14 @@ do_cc() { # prefix : the runtime prefix : dir : (none) # complibs : the companion libraries prefix : dir : (none) # cflags : the host CFLAGS : string : (empty) +# lang_list : the list of languages to build : string : (empty) # build_manuals : whether to build manuals or not : bool : no do_cc_backend() { local host local prefix local complibs local cflags + local lang_list local build_manuals local -a host_libstdcxx_flags local -a extra_config @@ -543,7 +545,7 @@ do_cc_backend() { CT_DoLog EXTRA "Configuring final compiler" # Enable selected languages - extra_config+=("--enable-languages=$( cc_gcc_lang_list )") + extra_config+=("--enable-languages=${lang_list}") for tmp in ARCH ABI CPU TUNE FPU FLOAT; do eval tmp="\${CT_ARCH_WITH_${tmp}}" |