Commit d17b2327 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

Use gcc's -pipe option to reduce compile time.

parent a457ee0a
...@@ -12203,7 +12203,7 @@ EXTRACFLAGS="" ...@@ -12203,7 +12203,7 @@ EXTRACFLAGS=""
if test "x${GCC}" = "xyes" if test "x${GCC}" = "xyes"
then then
EXTRACFLAGS=-Wall EXTRACFLAGS="-Wall -pipe"
echo "$as_me:$LINENO: checking for gcc strength-reduce bug" >&5 echo "$as_me:$LINENO: checking for gcc strength-reduce bug" >&5
echo $ECHO_N "checking for gcc strength-reduce bug... $ECHO_C" >&6 echo $ECHO_N "checking for gcc strength-reduce bug... $ECHO_C" >&6
......
...@@ -706,7 +706,7 @@ dnl **** Check for gcc specific options **** ...@@ -706,7 +706,7 @@ dnl **** Check for gcc specific options ****
AC_SUBST(EXTRACFLAGS,"") AC_SUBST(EXTRACFLAGS,"")
if test "x${GCC}" = "xyes" if test "x${GCC}" = "xyes"
then then
EXTRACFLAGS=-Wall EXTRACFLAGS="-Wall -pipe"
dnl Check for strength-reduce bug dnl Check for strength-reduce bug
AC_CACHE_CHECK( [for gcc strength-reduce bug], ac_cv_c_gcc_strength_bug, AC_CACHE_CHECK( [for gcc strength-reduce bug], ac_cv_c_gcc_strength_bug,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment