5 possible_kinds
="1 2 4 8 16"
8 for k
in $possible_kinds; do
9 echo " integer (kind=$k) :: x" > tmp$$.f90
10 echo " x = 1_$k" >> tmp$$.f90
11 echo " end" >> tmp$$.f90
12 if $compile -S tmp$$.f90
> /dev
/null
2>&1; then
19 echo " integer, parameter :: c = $c"
20 echo " type (int_info), parameter :: int_infos(c) = (/ &"
24 # echo -n is not portable
25 str
=" int_info ($k, range(0_$k))"
27 if [ $i -lt $c ]; then