mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-25 20:03:58 +08:00
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
583 B
Bash
Executable File
34 lines
583 B
Bash
Executable File
#!/bin/sh
|
|
|
|
compile="$1"
|
|
kinds=""
|
|
possible_kinds="1 2 4 8 16"
|
|
c=0
|
|
|
|
for k in $possible_kinds; do
|
|
echo " integer (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 (int_info), parameter :: int_infos(c) = (/ &"
|
|
|
|
i=0
|
|
for k in $kinds; do
|
|
# echo -n is not portable
|
|
str=" int_info ($k, range(0_$k))"
|
|
i=`expr $i + 1`
|
|
if [ $i -lt $c ]; then
|
|
echo "$str, &"
|
|
else
|
|
echo "$str /)"
|
|
fi
|
|
done
|
|
|
|
exit 0
|