Commit ce278618 authored by Peter Maydell's avatar Peter Maydell
Browse files

configure: Don't disable optimization for non-fortify builds



Commit b553a042 inadvertently disabled optimization
for all non-fortify builds. Fix this bug so we only do an
unoptimized build if we want debug.

Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
Message-id: 1447082049-25099-1-git-send-email-peter.maydell@linaro.org
parent d17008bc
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -4451,6 +4451,8 @@ if test "$gcov" = "yes" ; then
  LDFLAGS="-fprofile-arcs -ftest-coverage $LDFLAGS"
elif test "$fortify_source" = "yes" ; then
  CFLAGS="-O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $CFLAGS"
elif test "$debug" = "no"; then
  CFLAGS="-O2 $CFLAGS"
fi

##########################################