From: Peter Maydell Date: Wed, 18 Jul 2012 14:10:22 +0000 (+0100) Subject: configure: -march=i486 belongs in QEMU_CFLAGS, not CFLAGS X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~3830 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=caa50971f2e14b4c2c67bf2c40edd50be15679c2;p=sdk%2Femulator%2Fqemu.git configure: -march=i486 belongs in QEMU_CFLAGS, not CFLAGS 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 Signed-off-by: Blue Swirl --- diff --git a/configure b/configure index f74bf0f..ab17b40 100755 --- a/configure +++ b/configure @@ -2812,7 +2812,7 @@ int main(int argc, char **argv) } EOF if ! compile_prog "" "" ; then - CFLAGS="-march=i486 $CFLAGS" + QEMU_CFLAGS="-march=i486 $QEMU_CFLAGS" fi fi