diff options
author | Mike Frysinger <vapier@gentoo.org> | 2013-05-19 01:09:07 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2013-05-19 01:09:07 -0400 |
commit | 54a97c4dc41a9baa097b503ac6ff01992c1c8899 (patch) | |
tree | befad2f5e4831c503c8c4f42226a0a77ead46009 /extra/Configs/Config.in | |
parent | 71c10c484e7dc113396cccb7e503befb759c6346 (diff) |
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 <vapier@gentoo.org>
Diffstat (limited to 'extra/Configs/Config.in')
-rw-r--r-- | extra/Configs/Config.in | 6 |
1 files changed, 3 insertions, 3 deletions
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" |