]>
git.ipfire.org Git - thirdparty/gcc.git/blob - libgfortran/mk-srk-inc.sh
3 if test "$#" -ne 2; then
4 echo "Usage $0 real_kinds compile"
8 # Possible kinds must be listed in ascending order
9 possible_real_kinds
="$1"
15 for k
in $possible_real_kinds; do
16 echo " real (kind=$k) :: x" > tmp$$.f90
17 echo " x = 1.0_$k" >> tmp$$.f90
18 echo " end" >> tmp$$.f90
19 if $compile -S tmp$$.f90
> /dev
/null
2>&1; then
26 echo " integer, parameter :: c = $c"
27 echo " type (real_info), parameter :: real_infos(c) = (/ &"
31 # echo -n is not portable
32 str
=" real_info ($k, precision(0.0_$k), range(0.0_$k), radix(0.0_$k))"
34 if [ $i -lt $c ]; then