All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [git commit] gcc: switch to gcc 4.9 as the default version
@ 2015-06-22 22:19 Peter Korsgaard
  2015-06-23  7:46 ` Arnout Vandecappelle
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Korsgaard @ 2015-06-22 22:19 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=07536bbb3df3fb065b8c6a31cf4519c6a0054ad7
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Now that we have added gcc 5.1, it's time to make gcc 4.9 the default
version used in Buildroot.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 package/gcc/Config.in.host |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host
index 578e24f..51f04f5 100644
--- a/package/gcc/Config.in.host
+++ b/package/gcc/Config.in.host
@@ -9,8 +9,7 @@ config BR2_GCC_SUPPORTS_GRAPHITE
 choice
 	prompt "GCC compiler Version"
 	default BR2_GCC_VERSION_4_8_ARC if BR2_arc
-	default BR2_GCC_VERSION_4_9_X if BR2_microblaze || BR2_powerpc64le
-	default BR2_GCC_VERSION_4_8_X
+	default BR2_GCC_VERSION_4_9_X
 	help
 	  Select the version of gcc you wish to use.
 

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

* [Buildroot] [git commit] gcc: switch to gcc 4.9 as the default version
  2015-06-22 22:19 [Buildroot] [git commit] gcc: switch to gcc 4.9 as the default version Peter Korsgaard
@ 2015-06-23  7:46 ` Arnout Vandecappelle
  2015-06-23 16:02   ` Thomas Petazzoni
  0 siblings, 1 reply; 4+ messages in thread
From: Arnout Vandecappelle @ 2015-06-23  7:46 UTC (permalink / raw)
  To: buildroot

On 06/23/15 00:19, Peter Korsgaard wrote:
> commit: http://git.buildroot.net/buildroot/commit/?id=07536bbb3df3fb065b8c6a31cf4519c6a0054ad7
> branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
> 
> Now that we have added gcc 5.1, it's time to make gcc 4.9 the default
> version used in Buildroot.

 I think we should again update our autobuilder toolchains in this case, to make
sure we actually test the thing that we set as default.

[I have bad internet connection now so I didn't check if perhaps the autobuilder
toolchains have already been updated. If so, sorry for the noise.]

 Regards,
 Arnout

[snip]


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

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

* [Buildroot] [git commit] gcc: switch to gcc 4.9 as the default version
  2015-06-23  7:46 ` Arnout Vandecappelle
@ 2015-06-23 16:02   ` Thomas Petazzoni
  2015-06-23 19:28     ` Peter Korsgaard
  0 siblings, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2015-06-23 16:02 UTC (permalink / raw)
  To: buildroot

Dear Arnout Vandecappelle,

On Tue, 23 Jun 2015 09:46:10 +0200, Arnout Vandecappelle wrote:

>  I think we should again update our autobuilder toolchains in this case, to make
> sure we actually test the thing that we set as default.
> 
> [I have bad internet connection now so I didn't check if perhaps the autobuilder
> toolchains have already been updated. If so, sorry for the noise.]

We have a few internal toolchain configurations in the autobuilders:

  http://autobuild.buildroot.org/toolchains/configs/br-arc-full-internal.config
  http://autobuild.buildroot.org/toolchains/configs/br-arm-internal-full.config
  http://autobuild.buildroot.org/toolchains/configs/br-microblazeel-full-internal.config
  http://autobuild.buildroot.org/toolchains/configs/br-powerpc-internal-full.config
  http://autobuild.buildroot.org/toolchains/configs/br-xtensa-full-internal.config

These are always using the default gcc version. However, it is true
that all the other Buildroot toolchain configuration use pre-built
external toolchains, that are stuck to whatever was the default back
when 2015.05, except the following toolchains that already use gcc 4.9:

br-aarch64-glibc.config:BR2_GCC_VERSION_4_9_X=y
br-arm-cortex-a9-glibc.config:BR2_GCC_VERSION_4_9_X=y
br-arm-cortex-a9-musl.config:BR2_GCC_VERSION_4_9_X=y

But I can certainly trigger a rebuild of the toolchains with the most
recent Buildroot, using gcc 4.9 as the default, and having one
toolchain using gcc 5.1 to catch issues. Should I do this?

Thanks,

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] gcc: switch to gcc 4.9 as the default version
  2015-06-23 16:02   ` Thomas Petazzoni
@ 2015-06-23 19:28     ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2015-06-23 19:28 UTC (permalink / raw)
  To: buildroot

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

Hi,

 > These are always using the default gcc version. However, it is true
 > that all the other Buildroot toolchain configuration use pre-built
 > external toolchains, that are stuck to whatever was the default back
 > when 2015.05, except the following toolchains that already use gcc 4.9:

 > br-aarch64-glibc.config:BR2_GCC_VERSION_4_9_X=y
 > br-arm-cortex-a9-glibc.config:BR2_GCC_VERSION_4_9_X=y
 > br-arm-cortex-a9-musl.config:BR2_GCC_VERSION_4_9_X=y

 > But I can certainly trigger a rebuild of the toolchains with the most
 > recent Buildroot, using gcc 4.9 as the default, and having one
 > toolchain using gcc 5.1 to catch issues. Should I do this?

I think it would be interesting to do so, yes.

Thanks!

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2015-06-23 19:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-22 22:19 [Buildroot] [git commit] gcc: switch to gcc 4.9 as the default version Peter Korsgaard
2015-06-23  7:46 ` Arnout Vandecappelle
2015-06-23 16:02   ` Thomas Petazzoni
2015-06-23 19:28     ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.