diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-09-07 19:03:09 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-09-07 19:03:09 +0200 |
commit | ea352a96a3ed308c87351b9ced72b27848546765 (patch) | |
tree | 86d28153b51ecc722d30fbe6a880ba1851110a4c /scripts/showSamples.sh | |
parent | 565378d2b9eb33224b7acca314007f9bcdc284e6 (diff) | |
download | crosstool-ng-ea352a96a3ed308c87351b9ced72b27848546765.tar.gz crosstool-ng-ea352a96a3ed308c87351b9ced72b27848546765.tar.bz2 crosstool-ng-ea352a96a3ed308c87351b9ced72b27848546765.zip |
samples: show the PPL, GLoog/ppl and MPC versions
When displaying a sample, do show the PPL, CLoog/ppl and MPC versions
Diffstat (limited to 'scripts/showSamples.sh')
-rwxr-xr-x | scripts/showSamples.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/showSamples.sh b/scripts/showSamples.sh index 3c44bd76..13e5a3f2 100755 --- a/scripts/showSamples.sh +++ b/scripts/showSamples.sh @@ -29,7 +29,7 @@ dump_single_sample() { fi . "${sample_top}/samples/${sample}/crosstool.config" if [ -z "${wiki}" ]; then - t_width=10 + t_width=13 printf " %-*s [%s" ${width} "${sample}" "${sample_type}" [ -f "${sample_top}/samples/${sample}/broken" ] && printf "B" || printf " " [ "${CT_EXPERIMENTAL}" = "y" ] && printf "X" || printf " " @@ -45,6 +45,9 @@ dump_single_sample() { if [ "${CT_GMP_MPFR}" = "y" ]; then printf " %-*s : %s\n" ${t_width} "GMP/MPFR" "gmp-${CT_GMP_VERSION} / mpfr-${CT_MPFR_VERSION}" fi + if [ "${CT_PPL_CLOOG_MPC}" = "y" ]; then + printf " %-*s : %s\n" ${t_width} "PPL/CLOOG/MPC" "ppl-${CT_PPL_VERSION} / cloog-${CT_CLOOG_VERSION} / mpc-${CT_MPC_VERSION}" + fi printf " %-*s : %s\n" ${t_width} "binutils" "binutils-${CT_BINUTILS_VERSION}" printf " %-*s : %s" ${t_width} "C compiler" "${CT_CC}-${CT_CC_VERSION} (C" [ "${CT_CC_LANG_CXX}" = "y" ] && printf ",C++" |