From patchwork Wed Jul 18 14:10:22 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [05/11] configure: -march=i486 belongs in QEMU_CFLAGS, not CFLAGS Date: Wed, 18 Jul 2012 04:10:22 -0000 From: Peter Maydell X-Patchwork-Id: 171706 Message-Id: <1342620628-12751-6-git-send-email-peter.maydell@linaro.org> To: qemu-devel@nongnu.org Cc: Stefan Weil , patches@linaro.org The distinction between QEMU_CFLAGS and CFLAGS is that the former is for flags without which QEMU can't compile, whereas the latter is for flags like "-g -O2" which the user can safely override. "-march=i486" is in the former category, and so belongs in QEMU_CFLAGS. Signed-off-by: Peter Maydell --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/configure index f54415d..3de4ea7 100755 --- a/configure +++ b/configure @@ -2810,7 +2810,7 @@ int main(int argc, char **argv) } EOF if ! compile_prog "" "" ; then - CFLAGS="-march=i486 $CFLAGS" + QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS" fi fi