Commit a3db0c0e authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Work around for gcc <= 3.3

parent 3df44d63
...@@ -1165,6 +1165,19 @@ else ...@@ -1165,6 +1165,19 @@ else
elif test "${target_cpu}" = "powerpc"; then elif test "${target_cpu}" = "powerpc"; then
CFLAGS_TUNING="-mtune=750"; CFLAGS_TUNING="-mtune=750";
fi fi
dnl NOTE: this can't be cached cleanly
AS_IF([test "${CFLAGS_TUNING}"],
[CFLAGS_save="${CFLAGS}"
CFLAGS="${CFLAGS} ${CFLAGS_TUNING}"
AC_MSG_CHECKING([whether $CC accepts ${CFLAGS_TUNING}])
AC_COMPILE_IFELSE([ ], [tuning="yes"],
[CFLAGS_TUNING=""; tuning="no"])
AC_MSG_RESULT([$tuning])
CFLAGS="${CFLAGS_save}"
])
fi fi
dnl dnl
......
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