From ce278618b088afd10b91a05311eaeb6401bb5004 Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Mon, 9 Nov 2015 15:14:09 +0000 Subject: configure: Don't disable optimization for non-fortify builds Commit b553a0428014636bc 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: Peter Maydell Message-id: 1447082049-25099-1-git-send-email-peter.maydell@linaro.org --- configure | 2 ++ 1 file changed, 2 insertions(+) (limited to 'configure') diff --git a/configure b/configure index b68776435c..46fd8bdf8c 100755 --- a/configure +++ b/configure @@ -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 ########################################## -- cgit v1.2.3