Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [git commit] arch/Config.in.x86: drop BR2_x86_generic
@ 2014-11-07 18:51 Peter Korsgaard
  2014-11-08 10:01 ` Thomas Petazzoni
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Korsgaard @ 2014-11-07 18:51 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=80e406090893ab5a7b5d78e4d243d12fca2b22fb
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

The fuzzy generic x86 variant doesn't make much sense in the context of
Buildroot, and the recent change to use -march instead of -mtune broke it.

From the GCC manual:

https://gcc.gnu.org/onlinedocs/gcc-4.9.2/gcc/i386-and-x86-64-Options.html#i386-and-x86-64-Options:

-mtune=cpu-type
    Tune to cpu-type everything applicable about the generated code,
    except for the ABI and the set of available instructions. While
    picking a specific cpu-type schedules things appropriately for that
    particular chip, the compiler does not generate any code that cannot
    run on the default machine type unless you use a -march=cpu-type
    option. For example, if GCC is configured for i686-pc-linux-gnu then
    -mtune=pentium4 generates code that is tuned for Pentium 4 but still
    runs on i686 machines.

    The choices for cpu-type are the same as for -march. In addition,
    -mtune supports 2 extra choices for cpu-type:

    ???generic???
        Produce code optimized for the most common IA32/AMD64/EM64T
        processors. If you know the CPU on which your code will run,
        then you should use the corresponding -mtune or -march option
        instead of -mtune=generic. But, if you do not know exactly what
        CPU users of your application will have, then you should use
        this option.

        As new processors are deployed in the marketplace, the behavior
        of this option will change. Therefore, if you upgrade to a newer
        version of GCC, code generation controlled by this option will
        change to reflect the processors that are most common at the
        time that version of GCC is released.

        There is no -march=generic option because -march indicates the
        instruction set the compiler can use, and there is no generic
        instruction set applicable to all processors. In contrast,
        -mtune indicates the processor (or, in this case, collection of
        processors) for which the code is optimized.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 arch/Config.in.x86 |    5 -----
 1 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/arch/Config.in.x86 b/arch/Config.in.x86
index 0b7919b..8a844db 100644
--- a/arch/Config.in.x86
+++ b/arch/Config.in.x86
@@ -18,12 +18,9 @@ choice
 	prompt "Target Architecture Variant"
 	depends on BR2_i386 || BR2_x86_64
 	default BR2_x86_i586 if BR2_i386
-	default BR2_x86_generic if BR2_x86_64
 	help
 	  Specific CPU variant to use
 
-config BR2_x86_generic
-	bool "generic"
 config BR2_x86_i386
 	bool "i386"
 	depends on !BR2_x86_64
@@ -197,7 +194,6 @@ config BR2_ARCH
 	default "i686"		if BR2_x86_athlon
 	default "i686"		if BR2_x86_athlon_4
 	default "x86_64"	if BR2_x86_64
-	default "i386"		if BR2_x86_generic
 
 config BR2_ENDIAN
 	default "LITTLE"
@@ -234,4 +230,3 @@ config BR2_GCC_TARGET_ARCH
 	default "c3"		if BR2_x86_c3
 	default "c3-2"		if BR2_x86_c32
 	default "geode"		if BR2_x86_geode
-	default "generic"	if BR2_x86_generic

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [git commit] arch/Config.in.x86: drop BR2_x86_generic
  2014-11-07 18:51 [Buildroot] [git commit] arch/Config.in.x86: drop BR2_x86_generic Peter Korsgaard
@ 2014-11-08 10:01 ` Thomas Petazzoni
  2014-11-08 11:26   ` Peter Korsgaard
  0 siblings, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2014-11-08 10:01 UTC (permalink / raw)
  To: buildroot

Dear Peter Korsgaard,

On Fri, 7 Nov 2014 19:51:06 +0100, Peter Korsgaard wrote:
> commit: http://git.buildroot.net/buildroot/commit/?id=80e406090893ab5a7b5d78e4d243d12fca2b22fb
> branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
> 
> The fuzzy generic x86 variant doesn't make much sense in the context of
> Buildroot, and the recent change to use -march instead of -mtune broke it.

No Config.in.legacy handling?

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [git commit] arch/Config.in.x86: drop BR2_x86_generic
  2014-11-08 10:01 ` Thomas Petazzoni
@ 2014-11-08 11:26   ` Peter Korsgaard
  2014-11-08 17:35     ` Thomas Petazzoni
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Korsgaard @ 2014-11-08 11:26 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 > Dear Peter Korsgaard,
 > On Fri, 7 Nov 2014 19:51:06 +0100, Peter Korsgaard wrote:
 >> commit: http://git.buildroot.net/buildroot/commit/?id=80e406090893ab5a7b5d78e4d243d12fca2b22fb
 >> branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
 >> 
 >> The fuzzy generic x86 variant doesn't make much sense in the context of
 >> Buildroot, and the recent change to use -march instead of -mtune broke it.

 > No Config.in.legacy handling?

It is only used in the variant choice, so kconfig will automatically
change to the default value (586 for i386, nocona for x86-64) and as
"generic" is not really well defined (see the description in the GCC
manual) I think that is good enough - But yeah, we should inform the
user about it using the legacy support.

I'll add it now, thanks.

-- 
Venlig hilsen,
Peter Korsgaard 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [git commit] arch/Config.in.x86: drop BR2_x86_generic
  2014-11-08 11:26   ` Peter Korsgaard
@ 2014-11-08 17:35     ` Thomas Petazzoni
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2014-11-08 17:35 UTC (permalink / raw)
  To: buildroot

Dear Peter Korsgaard,

On Sat, 08 Nov 2014 12:26:28 +0100, Peter Korsgaard wrote:
> >>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
> 
>  > Dear Peter Korsgaard,
>  > On Fri, 7 Nov 2014 19:51:06 +0100, Peter Korsgaard wrote:
>  >> commit: http://git.buildroot.net/buildroot/commit/?id=80e406090893ab5a7b5d78e4d243d12fca2b22fb
>  >> branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
>  >> 
>  >> The fuzzy generic x86 variant doesn't make much sense in the context of
>  >> Buildroot, and the recent change to use -march instead of -mtune broke it.
> 
>  > No Config.in.legacy handling?
> 
> It is only used in the variant choice, so kconfig will automatically
> change to the default value (586 for i386, nocona for x86-64) and as
> "generic" is not really well defined (see the description in the GCC
> manual) I think that is good enough - But yeah, we should inform the
> user about it using the legacy support.

I agree that the default behavior after the removal of BR2_x86_generic
is sane, but I believe it still makes sense to have Config.in.legacy
handling to warn users about this.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-11-08 17:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-07 18:51 [Buildroot] [git commit] arch/Config.in.x86: drop BR2_x86_generic Peter Korsgaard
2014-11-08 10:01 ` Thomas Petazzoni
2014-11-08 11:26   ` Peter Korsgaard
2014-11-08 17:35     ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox