Fix compiler warnings

pull/1/head
Behdad Esfahbod 12 years ago
parent 167b625d98
commit e3320ecc1b
  1. 12
      configure.ac

@ -66,12 +66,18 @@ if test "x$GCC" = "xyes"; then
# Make sure we don't link to libstdc++
CXXFLAGS="$CXXFLAGS -fno-rtti -fno-exceptions"
# Hide inline methods
CXXFLAGS="$CXXFLAGS -fvisibility-inlines-hidden"
# Assorted warnings
CXXFLAGS="$CXXFLAGS -Wcast-align"
case "$host" in
*-mingw*)
;;
*)
# Hide inline methods
CXXFLAGS="$CXXFLAGS -fvisibility-inlines-hidden"
;;
esac
case "$host" in
arm-*-*)
# Request byte alignment on arm

Loading…
Cancel
Save