Add -pipe for C/C++.

Originally committed to SVN as r2732.
This commit is contained in:
Amar Takhar 2009-02-14 19:08:44 +00:00
parent 6495831ed0
commit 1f47e17d66
1 changed files with 2 additions and 0 deletions

View File

@ -219,6 +219,7 @@ if test "$enable_compiler_flags" != "no"; then
AC_C_FLAG([-Wextra],[AC_C_FLAG([-W])])
AC_C_FLAG([-Wno-unused-parameter])
AC_C_FLAG([-std=gnu99])
AC_C_FLAG([-pipe])
AC_CXX_FLAG([-Wall])
AC_CXX_FLAG([-Wextra],[AC_CXX_FLAG([-W])])
AC_CXX_FLAG([-Wno-unused-parameter])
@ -226,6 +227,7 @@ if test "$enable_compiler_flags" != "no"; then
AC_CXX_FLAG([-fpermissive])
AC_CXX_FLAG([-fno-strict-aliasing])
AC_CXX_FLAG([-std=c++98])
AC_CXX_FLAG([-pipe])
# -O* messes with debugging.
if test "$enable_debug" != "yes"; then