diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-11-01 16:49:00 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-11-01 16:49:00 +0000 |
commit | 9c5fd0d3affd4d312d3deee4383b33268c41ad45 (patch) | |
tree | 2f70ba1bb02627301971ca31e0e50c72571191f5 /scripts/showSamples.sh | |
parent | ea9b9ea07b96f9b9df767dc2a38141327045dfc1 (diff) | |
download | crosstool-ng-9c5fd0d3affd4d312d3deee4383b33268c41ad45.tar.gz crosstool-ng-9c5fd0d3affd4d312d3deee4383b33268c41ad45.tar.bz2 crosstool-ng-9c5fd0d3affd4d312d3deee4383b33268c41ad45.zip |
Eyecandy in the WiKi table.
/trunk/scripts/showSamples.sh | 20 12 8 0 ++++++++++++--------
1 file changed, 12 insertions(+), 8 deletions(-)
Diffstat (limited to 'scripts/showSamples.sh')
-rwxr-xr-x | scripts/showSamples.sh | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/scripts/showSamples.sh b/scripts/showSamples.sh index 4503db51..6a847a16 100755 --- a/scripts/showSamples.sh +++ b/scripts/showSamples.sh @@ -61,18 +61,22 @@ dump_single_sample() { [ "${CT_EXPERIMENTAL}" = "y" ] && printf "X" [ -f "${sample_top}/samples/${sample}/broken" ] && printf "B" printf ' ' - printf "| ''${CT_KERNEL}'' " - if [ "${CT_KERNEL_LINUX_HEADERS_USE_CUSTOM_DIR}" = "y" ]; then - printf "| //custom// " - else - printf "| ${CT_KERNEL_VERSION} " + printf "| ''${CT_KERNEL}'' |" + if [ "${CT_KERNEL}" != "bare-metal" ];then + if [ "${CT_KERNEL_LINUX_HEADERS_USE_CUSTOM_DIR}" = "y" ]; then + printf " //custom// " + else + printf " ${CT_KERNEL_VERSION} " + fi fi printf "| ${CT_BINUTILS_VERSION} " printf "| ''${CT_CC}'' " printf "| ${CT_CC_VERSION} " - printf "| ''${CT_LIBC}'' " - printf "| ${CT_LIBC_VERSION} " - printf "| ${CT_THREADS_NPTL:+NPTL}${CT_THREADS_LINUXTHREADS:+linuxthreads}${CT_THREADS_NONE:+none} " + printf "| ''${CT_LIBC}'' |" + if [ "${CT_LIBC}" != "none" ]; then + printf " ${CT_LIBC_VERSION} " + fi + printf "| ${CT_THREADS:-none} " printf "| ${CT_ARCH_FLOAT_HW:+hard}${CT_ARCH_FLOAT_SW:+soft} float " printf "| C" [ "${CT_CC_LANG_CXX}" = "y" ] && printf ", C++" |