Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Korsgaard <jacmet@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCHv2 13/14] toolchain: update Linaro ARM external toolchains
Date: Sun, 15 Sep 2013 23:32:10 +0200	[thread overview]
Message-ID: <87bo3tixet.fsf@dell.be.48ers.dk> (raw)
In-Reply-To: <1378138000-12739-14-git-send-email-thomas.petazzoni@free-electrons.com> (Thomas Petazzoni's message of "Mon, 2 Sep 2013 18:06:39 +0200")

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

 Thomas> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
 Thomas> ---
 Thomas>  toolchain/toolchain-external/Config.in   | 49 +++++++++++++++++---------------
 Thomas>  toolchain/toolchain-external/ext-tool.mk | 12 ++++----
 Thomas>  2 files changed, 32 insertions(+), 29 deletions(-)

 Thomas> diff --git a/toolchain/toolchain-external/Config.in b/toolchain/toolchain-external/Config.in
 Thomas> index 11edc98..9c5d93c 100644
 Thomas> --- a/toolchain/toolchain-external/Config.in
 Thomas> +++ b/toolchain/toolchain-external/Config.in
 Thomas> @@ -3,8 +3,8 @@ if BR2_TOOLCHAIN_EXTERNAL
 Thomas>  choice
 Thomas>  	prompt "Toolchain"
 
 Thomas> -config BR2_TOOLCHAIN_EXTERNAL_LINARO_2013_06
 Thomas> -	bool "Linaro 2013.06"
 Thomas> +config BR2_TOOLCHAIN_EXTERNAL_LINARO_2013_08
 Thomas> +	bool "Linaro 2013.08"
 Thomas>  	depends on BR2_arm
 Thomas>  	depends on BR2_GCC_TARGET_ARCH = "armv7-a"
 Thomas>  	depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
 Thomas> @@ -15,16 +15,17 @@ config BR2_TOOLCHAIN_EXTERNAL_LINARO_2013_06
 Thomas>  	select BR2_HOSTARCH_NEEDS_IA32_LIBS
 Thomas>  	help
 Thomas>  	  Linaro toolchain for the ARM architecture. It uses Linaro
 Thomas> -	  GCC 2013.06 (based on gcc 4.8), Linaro GDB 2013.06 (based on
 Thomas> -	  GDB 7.6), eglibc 2.15. It generates code that runs on all
 Thomas> -	  Cortex-A profile devices, but tuned for the Cortex-A9. The
 Thomas> -	  code generated is Thumb 2, with the hard floating point
 Thomas> -	  calling convention, and uses the VFPv3-D16 FPU instructions.
 Thomas> +	  GCC 2013.08 (based on gcc 4.8), Linaro GDB 2013.05 (based on
 Thomas> +	  GDB 7.6), eglibc 2.17, Binutils 2013.06 (based on 2.23). It
 Thomas> +	  generates code that runs on all Cortex-A profile devices,
 Thomas> +	  but tuned for the Cortex-A9. The code generated is Thumb 2,
 Thomas> +	  with the hard floating point calling convention, and uses
 Thomas> +	  the VFPv3-D16 FPU instructions.

Not a problem with this change - But hmm, did 2013.06 reall use a newer
gdb version than 2013.08? Not as far as I can see on:

http://www.linaro.org/downloads/1306

Committed, thanks.

-- 
Bye, Peter Korsgaard

  reply	other threads:[~2013-09-15 21:32 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-09-02 16:06 [Buildroot] [PATCHv2 00/14] Toolchain updates and improvements Thomas Petazzoni
2013-09-02 16:06 ` [Buildroot] [PATCHv2 01/14] package/Makefile.in: fix incorrect comment Thomas Petazzoni
2013-09-02 16:06 ` [Buildroot] [PATCHv2 02/14] eglibc: libstdc++ is not part of the C library Thomas Petazzoni
2013-09-15 21:05   ` Peter Korsgaard
2013-09-02 16:06 ` [Buildroot] [PATCHv2 03/14] toolchain-internal: skip gcc-intermediate when possible Thomas Petazzoni
2013-09-15 21:05   ` Peter Korsgaard
2013-09-02 16:06 ` [Buildroot] [PATCHv2 04/14] gcc: fix Fortran support Thomas Petazzoni
2013-09-15 21:07   ` Peter Korsgaard
2013-09-16 15:38     ` Thomas Petazzoni
2013-09-16 15:53       ` Samuel Martin
2013-09-16 16:02         ` Thomas Petazzoni
2013-09-16 16:21           ` Samuel Martin
2013-09-02 16:06 ` [Buildroot] [PATCHv2 05/14] gcc: fix Objective-C support Thomas Petazzoni
2013-09-15 21:07   ` Peter Korsgaard
2013-09-02 16:06 ` [Buildroot] [PATCHv2 06/14] gcc: move C++ support option next to Fortran/Objective-C Thomas Petazzoni
2013-09-15 21:07   ` Peter Korsgaard
2013-09-02 16:06 ` [Buildroot] [PATCHv2 07/14] toolchain: add support for glibc Thomas Petazzoni
2013-09-15 21:07   ` Peter Korsgaard
2013-09-02 16:06 ` [Buildroot] [PATCHv2 08/14] gcc/gcc-final: use the common HOST_GCC_CONFIGURE_SYMLINK macro Thomas Petazzoni
2013-09-15 21:08   ` Peter Korsgaard
2013-09-02 16:06 ` [Buildroot] [PATCHv2 09/14] gcc: force symlink creation Thomas Petazzoni
2013-09-15 21:08   ` Peter Korsgaard
2013-09-02 16:06 ` [Buildroot] [PATCHv2 10/14] toolchain: refactor Stack Smashing Protection support Thomas Petazzoni
2013-09-15 21:25   ` Peter Korsgaard
2013-09-02 16:06 ` [Buildroot] [PATCHv2 11/14] toolchain: move elf2flt option inclusion to toolchain-buildroot/Config.in Thomas Petazzoni
2013-09-15 21:25   ` Peter Korsgaard
2013-09-02 16:06 ` [Buildroot] [PATCHv2 12/14] gcc: provide option to enable mudflap support Thomas Petazzoni
2013-09-15 21:28   ` Peter Korsgaard
2013-09-02 16:06 ` [Buildroot] [PATCHv2 13/14] toolchain: update Linaro ARM external toolchains Thomas Petazzoni
2013-09-15 21:32   ` Peter Korsgaard [this message]
2013-09-02 16:06 ` [Buildroot] [PATCHv2 14/14] toolchain: update Linaro AArch64 " Thomas Petazzoni
2013-09-15 21:32   ` Peter Korsgaard
2013-09-15 19:20 ` [Buildroot] [PATCHv2 00/14] Toolchain updates and improvements Thomas Petazzoni

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87bo3tixet.fsf@dell.be.48ers.dk \
    --to=jacmet@uclibc.org \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox