4349e29287
2008-01-16 Steven Bosscher <steven@gcc.gnu.org> PR libfortran/34669 * mk-kinds-h.sh: Compile with -S to avoid calling the assembler, to avoid piping the -fdump-parse-tree output to the assembler when configuring with -pipe. * mk-sik-inc.sh: Likewise. * mk-srk-inc.sh: Likewise. From-SVN: r131567
34 lines
603 B
Bash
Executable File
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 -S 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
|