From 54a97c4dc41a9baa097b503ac6ff01992c1c8899 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 19 May 2013 01:09:07 -0400 Subject: i386: punt all config options that just control -march You can set these yourself in your CFLAGS, and our list is incomplete and pointless (we agreed some time ago to stop doing this). We keep around CONFIG_[3456]86 because it is used to select between different optimized subdirs of handcoded assembly. Also take this opportunity to up the default to i686. If you're using an older cpu, then you can handle changing this yourself. Signed-off-by: Mike Frysinger --- extra/Configs/Config.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'extra/Configs/Config.in') diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in index 3737d854c..e1120ac28 100644 --- a/extra/Configs/Config.in +++ b/extra/Configs/Config.in @@ -239,10 +239,10 @@ config TARGET_SUBARCH default "e500" if CONFIG_E500 default "classic" if CONFIG_CLASSIC default "sh4" if CONFIG_SH4 - default "" if CONFIG_GENERIC_386 || CONFIG_386 + default "" if CONFIG_386 default "i486" if CONFIG_486 - default "i586" if CONFIG_586 || CONFIG_586MMX - default "i686" if TARGET_ARCH = "i386" + default "i586" if CONFIG_586 + default "i686" if CONFIG_686 default "" source "extra/Configs/Config.in.arch" -- cgit v1.2.3