diff options
author | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-01-16 09:13:39 +0000 |
---|---|---|
committer | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-01-16 09:13:39 +0000 |
commit | bd978a47e06b48783c0af438cd5d2d1daa80da6d (patch) | |
tree | c4467c7e4b18f729dff13d6304c4d28c4be7c2c0 /libgfortran/mk-srk-inc.sh | |
parent | d9c7bfaa8e2827e699ac0336d875dfa6d5a1c04d (diff) | |
download | gcc-bd978a47e06b48783c0af438cd5d2d1daa80da6d.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@131567 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/mk-srk-inc.sh')
-rwxr-xr-x | libgfortran/mk-srk-inc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgfortran/mk-srk-inc.sh b/libgfortran/mk-srk-inc.sh index d036d682679..076c24bb5b7 100755 --- a/libgfortran/mk-srk-inc.sh +++ b/libgfortran/mk-srk-inc.sh @@ -8,7 +8,7 @@ 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 + if $compile -S tmp$$.f90 > /dev/null 2>&1; then kinds="$kinds $k" c=`expr $c + 1` fi |