gcc/libgfortran/mk-srk-inc.sh
Eric Botcazou 130abd1728 mk-sik-inc.sh: Use a temporary string instead of 'echo -n'.
* mk-sik-inc.sh: Use a temporary string instead of 'echo -n'.
	* mk-srk-inc.sh: Likewise.

From-SVN: r86919
2004-09-01 17:51:42 +00:00

34 lines
603 B
Bash
Executable File

#!/bin/sh
compile="$1"
kinds=""
possible_kinds="4 8 10 16"
c=0
for k in $possible_kinds; do
echo " real (kind=$k) :: x" > tmp$$.f90
echo " end" >> tmp$$.f90
if $compile -c tmp$$.f90 > /dev/null 2>&1; then
kinds="$kinds $k"
c=`expr $c + 1`
fi
rm -f tmp$$.*
done
echo " integer, parameter :: c = $c"
echo " type (real_info), parameter :: real_infos(c) = (/ &"
i=0
for k in $kinds; do
# echo -n is not portable
str=" real_info ($k, precision(0.0_$k), range(0.0_$k))"
i=`expr $i + 1`
if [ $i -lt $c ]; then
echo "$str, &"
else
echo "$str /)"
fi
done
exit 0