summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-09-07 17:03:09 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-09-07 17:03:09 (GMT)
commitea352a96a3ed308c87351b9ced72b27848546765 (patch)
tree86d28153b51ecc722d30fbe6a880ba1851110a4c /scripts
parent565378d2b9eb33224b7acca314007f9bcdc284e6 (diff)
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')
-rwxr-xr-xscripts/showSamples.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/showSamples.sh b/scripts/showSamples.sh
index 3c44bd7..13e5a3f 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++"