summaryrefslogtreecommitdiff
path: root/libgfortran/mk-sik-inc.sh
diff options
context:
space:
mode:
authorSteven Bosscher <steven@gcc.gnu.org>2008-01-16 09:13:39 +0000
committerTobias Burnus <burnus@gcc.gnu.org>2008-01-16 10:13:39 +0100
commit4349e292879d8bc589a8a2b52defe5e754d75a16 (patch)
treec4467c7e4b18f729dff13d6304c4d28c4be7c2c0 /libgfortran/mk-sik-inc.sh
parent6da0839af39d0d319e12dec89c1668549220799b (diff)
downloadgcc-4349e292879d8bc589a8a2b52defe5e754d75a16.tar.gz
re PR libfortran/34669 (libgfortran doesn't build with -pipe)
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
Diffstat (limited to 'libgfortran/mk-sik-inc.sh')
-rwxr-xr-xlibgfortran/mk-sik-inc.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgfortran/mk-sik-inc.sh b/libgfortran/mk-sik-inc.sh
index a2f29e1e30a..83dcb16999e 100755
--- a/libgfortran/mk-sik-inc.sh
+++ b/libgfortran/mk-sik-inc.sh
@@ -8,7 +8,7 @@ c=0
for k in $possible_kinds; do
echo " integer (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