mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
26713d4210
- ./configure --prefix=/some/place - make - make install - export PATH="${PATH}:/some/place/bin" - ct-ng <action>
34 lines
823 B
Bash
Executable File
34 lines
823 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Parses all samples on the command line, and for each of them, prints
|
|
# the versions of the main tools
|
|
|
|
# GREP_OPTIONS screws things up.
|
|
export GREP_OPTIONS=
|
|
|
|
# Dump a single sample
|
|
dump_single_sample() {
|
|
local width="$1"
|
|
local sample="$2"
|
|
if [ -f "${CT_TOP_DIR}/samples/${sample}/crosstool.config" ]; then
|
|
sample_top="${CT_TOP_DIR}"
|
|
sample_type="local"
|
|
else
|
|
sample_top="${CT_LIB_DIR}"
|
|
sample_type="global"
|
|
fi
|
|
printf " %-*s (%s" ${width} "${sample}" "${sample_type}"
|
|
[ -f "${sample_top}/samples/${sample}/broken" ] && printf ",broken"
|
|
echo ")"
|
|
}
|
|
|
|
# Get largest sample width
|
|
width=0
|
|
for sample in "${@}"; do
|
|
[ ${#sample} -gt ${width} ] && width=${#sample}
|
|
done
|
|
|
|
for sample in "${@}"; do
|
|
( dump_single_sample ${width} "${sample}" )
|
|
done
|