Use gcc's -pipe option to reduce compile time.
This commit is contained in:
parent
a457ee0a3d
commit
d17b232741
|
@ -12203,7 +12203,7 @@ EXTRACFLAGS=""
|
|||
|
||||
if test "x${GCC}" = "xyes"
|
||||
then
|
||||
EXTRACFLAGS=-Wall
|
||||
EXTRACFLAGS="-Wall -pipe"
|
||||
|
||||
echo "$as_me:$LINENO: checking for gcc strength-reduce bug" >&5
|
||||
echo $ECHO_N "checking for gcc strength-reduce bug... $ECHO_C" >&6
|
||||
|
|
|
@ -706,7 +706,7 @@ dnl **** Check for gcc specific options ****
|
|||
AC_SUBST(EXTRACFLAGS,"")
|
||||
if test "x${GCC}" = "xyes"
|
||||
then
|
||||
EXTRACFLAGS=-Wall
|
||||
EXTRACFLAGS="-Wall -pipe"
|
||||
|
||||
dnl Check for strength-reduce bug
|
||||
AC_CACHE_CHECK( [for gcc strength-reduce bug], ac_cv_c_gcc_strength_bug,
|
||||
|
|
Loading…
Reference in New Issue