scripts/showSamples.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Feb 17 23:47:47 2010 +0100 (2010-02-17)
changeset 1808 a1370757e6a1
parent 1804 da584d1d6ab8
child 1845 085683652f7e
permissions -rwxr-xr-x
complibs: split-up selection for individual libs
     1 #!/bin/sh
     2 # Yes, this is supposed to be a POSIX-compliant shell script.
     3 
     4 # Parses all samples on the command line, and for each of them, prints
     5 # the versions of the main tools
     6 
     7 # Use tools discovered by ./configure
     8 . "${CT_LIB_DIR}/paths.mk"
     9 
    10 [ "$1" = "-v" ] && opt="$1" && shift
    11 [ "$1" = "-w" ] && opt="$1" && shift
    12 
    13 # GREP_OPTIONS screws things up.
    14 export GREP_OPTIONS=
    15 
    16 # Dump a single sample
    17 dump_single_sample() {
    18     local verbose=0
    19     local complibs
    20     [ "$1" = "-v" ] && verbose=1 && shift
    21     [ "$1" = "-w" ] && wiki=1 && shift
    22     local width="$1"
    23     local sample="$2"
    24     case "${sample}" in
    25         current)
    26             sample_type="l"
    27             sample="${current_tuple}"
    28             width="${#sample}"
    29             . $(pwd)/.config
    30             ;;
    31         *)  if [ -f "${CT_TOP_DIR}/samples/${sample}/crosstool.config" ]; then
    32                 sample_top="${CT_TOP_DIR}"
    33                 sample_type="l"
    34             else
    35                 sample_top="${CT_LIB_DIR}"
    36                 sample_type="g"
    37             fi
    38             . "${sample_top}/samples/${sample}/crosstool.config"
    39             ;;
    40     esac
    41     if [ -z "${wiki}" ]; then
    42         t_width=14
    43         printf "%-*s  [%s" ${width} "${sample}" "${sample_type}"
    44         [ -f "${sample_top}/samples/${sample}/broken" ] && printf "B" || printf " "
    45         [ "${CT_EXPERIMENTAL}" = "y" ] && printf "X" || printf " "
    46         echo "]"
    47         if [ ${verbose} -ne 0 ]; then
    48             case "${CT_TOOLCHAIN_TYPE}" in
    49                 cross)  ;;
    50                 canadian)
    51                     printf "    %-*s : %s\n" ${t_width} "Host" "${CT_HOST}"
    52                     ;;
    53             esac
    54             printf "    %-*s : %s\n" ${t_width} "OS" "${CT_KERNEL}${CT_KERNEL_VERSION:+-}${CT_KERNEL_VERSION}"
    55             if [    -n "${CT_GMP}" -o -n "${CT_MPFR}"                       \
    56                  -o -n "${CT_PPL}" -o -n "${CT_CLOOG}" -o -n "${CT_MPC}"    \
    57                ]; then
    58                 printf "    %-*s :" ${t_width} "Companion libs"
    59                 complibs=1
    60             fi
    61             [ -z "${CT_GMP}"    ] || printf " gmp-%s"       "${CT_GMP_VERSION}"
    62             [ -z "${CT_MPFR}"   ] || printf " mpfr-%s"      "${CT_MPFR_VERSION}"
    63             [ -z "${CT_PPL}"    ] || printf " ppl-%s"       "${CT_PPL_VERSION}"
    64             [ -z "${CT_CLOOG}"  ] || printf " cloog-ppl-%s" "${CT_CLOOG_VERSION}"
    65             [ -z "${CT_MPC}"    ] || printf " mpc-%s"       "${CT_MPC_VERSION}"
    66             [ -z "${complibs}"  ] || printf "\n"
    67             printf  "    %-*s : %s\n" ${t_width} "binutils" "binutils-${CT_BINUTILS_VERSION}"
    68             printf  "    %-*s : %s" ${t_width} "C compiler" "${CT_CC}-${CT_CC_VERSION} (C"
    69             [ "${CT_CC_LANG_CXX}" = "y"     ] && printf ",C++"
    70             [ "${CT_CC_LANG_FORTRAN}" = "y" ] && printf ",Fortran"
    71             [ "${CT_CC_LANG_JAVA}" = "y"    ] && printf ",Java"
    72             [ "${CT_CC_LANG_ADA}" = "y"     ] && printf ",ADA"
    73             [ "${CT_CC_LANG_OBJC}" = "y"    ] && printf ",Objective-C"
    74             [ "${CT_CC_LANG_OBJCXX}" = "y"  ] && printf ",Objective-C++"
    75             [ -n "${CT_CC_LANG_OTHERS}"     ] && printf ",${CT_CC_LANG_OTHERS}"
    76             printf ")\n"
    77             printf  "    %-*s : %s\n" ${t_width} "C library" "${CT_LIBC}${CT_LIBC_VERSION:+-}${CT_LIBC_VERSION}"
    78             printf  "    %-*s :" ${t_width} "Tools"
    79             [ "${CT_TOOL_libelf}"   ] && printf " libelf-${CT_LIBELF_VERSION}"
    80             [ "${CT_TOOL_sstrip}"   ] && printf " sstrip"
    81             [ "${CT_DEBUG_dmalloc}" ] && printf " dmalloc-${CT_DMALLOC_VERSION}"
    82             [ "${CT_DEBUG_duma}"    ] && printf " duma-${CT_DUMA_VERSION}"
    83             [ "${CT_DEBUG_gdb}"     ] && printf " gdb-${CT_GDB_VERSION}"
    84             [ "${CT_DEBUG_ltrace}"  ] && printf " ltrace-${CT_LTRACE_VERSION}"
    85             [ "${CT_DEBUG_strace}"  ] && printf " strace-${CT_STRACE_VERSION}"
    86             printf "\n"
    87         fi
    88     else
    89         case "${CT_TOOLCHAIN_TYPE}" in
    90             cross)
    91                 printf "| ''${sample}''  | "
    92                 ;;
    93             canadian)
    94                 printf "| ''"
    95                 printf "${sample}" |sed -r -e 's/.*,//'
    96                 printf "''  | ${CT_HOST}  "
    97                 ;;
    98             *)          ;;
    99         esac
   100         printf "|  "
   101         [ "${CT_EXPERIMENTAL}" = "y" ] && printf "**X**"
   102         [ -f "${sample_top}/samples/${sample}/broken" ] && printf "**B**"
   103         printf "  |  ''${CT_KERNEL}''  |"
   104         if [ "${CT_KERNEL}" != "bare-metal" ];then
   105             if [ "${CT_KERNEL_LINUX_HEADERS_USE_CUSTOM_DIR}" = "y" ]; then
   106                 printf "  //custom//  "
   107             else
   108                 printf "  ${CT_KERNEL_VERSION}  "
   109             fi
   110         fi
   111         printf "|  ${CT_BINUTILS_VERSION}  "
   112         printf "|  ''${CT_CC}''  "
   113         printf "|  ${CT_CC_VERSION}  "
   114         printf "|  ''${CT_LIBC}''  |"
   115         if [ "${CT_LIBC}" != "none" ]; then
   116             printf "  ${CT_LIBC_VERSION}  "
   117         fi
   118         printf "|  ${CT_THREADS:-none}  "
   119         printf "|  ${CT_ARCH_FLOAT_HW:+hard}${CT_ARCH_FLOAT_SW:+soft} float  "
   120         printf "|  C"
   121         [ "${CT_CC_LANG_CXX}" = "y"     ] && printf ", C++"
   122         [ "${CT_CC_LANG_FORTRAN}" = "y" ] && printf ", Fortran"
   123         [ "${CT_CC_LANG_JAVA}" = "y"    ] && printf ", Java"
   124         [ "${CT_CC_LANG_ADA}" = "y"     ] && printf ", ADA"
   125         [ "${CT_CC_LANG_OBJC}" = "y"    ] && printf ", Objective-C"
   126         [ "${CT_CC_LANG_OBJCXX}" = "y"  ] && printf ", Objective-C++"
   127         [ -n "${CT_CC_LANG_OTHERS}"     ] && printf "\\\\\\\\ Others: ${CT_CC_LANG_OTHERS}"
   128         printf "  "
   129         ( . "${sample_top}/samples/${sample}/reported.by"
   130           if [ -n "${reporter_name}" ]; then
   131               if [ -n "${reporter_url}" ]; then
   132                   printf "|  [[${reporter_url}|${reporter_name}]]  "
   133               else
   134                   printf "|  ${reporter_name}  "
   135               fi
   136           else
   137               printf "|  [[http://ymorin.is-a-geek.org/|YEM]]  "
   138           fi
   139         )
   140         sample_updated="$( hg log -l 1 --template '{date|shortdate}' "${sample_top}/samples/${sample}" )"
   141         printf "|  ${sample_updated}  "
   142         echo "|"
   143     fi
   144 }
   145 
   146 # Get largest sample width
   147 width=0
   148 for sample in "${@}"; do
   149     [ ${#sample} -gt ${width} ] && width=${#sample}
   150 done
   151 
   152 if [ "${opt}" = -w ]; then
   153     printf "^ %s  |||||||||||||||\n" "$( date "+%Y%m%d.%H%M %z" )"
   154     printf "^ Target  "
   155     printf "^ Host  "
   156     printf "^  Status  "
   157     printf "^  Kernel headers\\\\\\\\ version  ^"
   158     printf "^  binutils\\\\\\\\ version  "
   159     printf "^  C compiler\\\\\\\\ version  ^"
   160     printf "^  C library\\\\\\\\ version  ^"
   161     printf "^  Threading\\\\\\\\ model  "
   162     printf "^  Floating point\\\\\\\\ support  "
   163     printf "^  Languages  "
   164     printf "^  Initially\\\\\\\\ reported by  "
   165     printf "^  Last\\\\\\\\ updated  "
   166     echo   "^"
   167 fi
   168 
   169 for sample in "${@}"; do
   170     ( dump_single_sample ${opt} ${width} "${sample}" )
   171 done
   172 
   173 if [ "${opt}" = -w ]; then
   174     printf "^ Total: ${#@} samples  || **X**: sample uses features marked as being EXPERIMENTAL.\\\\\\\\ **B**: sample is curently BROKEN. |||||||||||||"
   175     echo   ""
   176 elif [ -z "${opt}" ]; then
   177     echo '      l (local)       : sample was found in current directory'
   178     echo '      g (global)      : sample was installed with crosstool-NG'
   179     echo '      X (EXPERIMENTAL): sample may use EXPERIMENTAL features'
   180     echo '      B (BROKEN)      : sample is currently broken'
   181 fi