aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornick.j.sanders <nick.j.sanders@gmail.com>2014-04-11 23:28:56 +0000
committernick.j.sanders <nick.j.sanders@gmail.com>2014-04-11 23:28:56 +0000
commit7285135d5fa16b631395da282276b4861a714c35 (patch)
tree37f88a0c510b793ef554a4a581ed2239734a3fb9
parent318caafc7428de957318a82ca778d93bda1d2638 (diff)
downloadstressapptest-7285135d5fa16b631395da282276b4861a714c35.tar.gz
Remove -Wno-psabi
* This breaks some compiles, so let's remove. * Originally suppressed some annoying warnings regarding va_list
-rwxr-xr-xconfigure2
-rw-r--r--configure.ac2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index c3a78d8..4b95cdd 100755
--- a/configure
+++ b/configure
@@ -4411,7 +4411,7 @@ if test x"$enable_default_optimizations" != xno; then :
#Default cxxflags
CXXFLAGS="$CXXFLAGS -DCHECKOPTS"
- CXXFLAGS="$CXXFLAGS -Wreturn-type -Wunused -Wuninitialized -Wall -Wno-psabi"
+ CXXFLAGS="$CXXFLAGS -Wreturn-type -Wunused -Wuninitialized -Wall"
CXXFLAGS="$CXXFLAGS -O3 -funroll-all-loops -funroll-loops -DNDEBUG"
fi
diff --git a/configure.ac b/configure.ac
index 8a0eb26..78c412e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -93,7 +93,7 @@ AC_ARG_ENABLE([default-optimizations],
AS_IF([test x"$enable_default_optimizations" != xno], [
#Default cxxflags
CXXFLAGS="$CXXFLAGS -DCHECKOPTS"
- CXXFLAGS="$CXXFLAGS -Wreturn-type -Wunused -Wuninitialized -Wall -Wno-psabi"
+ CXXFLAGS="$CXXFLAGS -Wreturn-type -Wunused -Wuninitialized -Wall"
CXXFLAGS="$CXXFLAGS -O3 -funroll-all-loops -funroll-loops -DNDEBUG"
])