This is an automated email from the git hooks/post-receive script.
unknown user pushed a commit to branch hjl/iamcu/improve
in repository gcc.
commit 58c2737e1f9711c9b687adfa68cf519d4a8090b3
Author: H.J. Lu <hjl.tools(a)gmail.com>
Date: Wed Jul 15 08:07:04 2015 -0700
Also check configure.ac in binutils source tree
The configure.in files in binutils source tree have been renamed to
configure.ac. This patch checks both configure.in and configure.ac in
binutils source tree.
* acinclude.m4 (_gcc_COMPUTE_GAS_VERSION): Also check
$gcc_cv_as_gas_srcdir/configure.ac.
* configure.ac (gcc_cv_as_gas_configure): New. Set if
configure.in or configure.ac exist.
(gcc_cv_ld_gld_configure): Likewise.
(gcc_cv_binutils_configure): Likewise.
(gcc_cv_as): Check $gcc_cv_as_gas_configure instead of
$gcc_cv_as_gas_srcdir/configure.in.
(gcc_cv_ld): Check $gcc_cv_ld_gld_configure instead of
$gcc_cv_ld_gld_srcdir/configure.in.
(gcc_cv_nm): Check $gcc_cv_binutils_configure instead of
$gcc_cv_binutils_srcdir/configure.in.
(gcc_cv_objdump): Likewise.
(gcc_cv_readelf): Likewise.
* configure: Regenerated.
_gcc_COMPUTE_GAS_VERSION
---
gcc/acinclude.m4 | 1 +
gcc/configure | 31 +++++++++++++++++++++++++------
gcc/configure.ac | 30 ++++++++++++++++++++++++------
3 files changed, 50 insertions(+), 12 deletions(-)
diff --git a/gcc/acinclude.m4 b/gcc/acinclude.m4
index 94da88e..3d30b0f 100644
--- a/gcc/acinclude.m4
+++ b/gcc/acinclude.m4
@@ -390,6 +390,7 @@ AC_DEFUN([_gcc_COMPUTE_GAS_VERSION],
[gcc_cv_as_bfd_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/bfd
for f in $gcc_cv_as_bfd_srcdir/configure \
$gcc_cv_as_gas_srcdir/configure \
+ $gcc_cv_as_gas_srcdir/configure.ac \
$gcc_cv_as_gas_srcdir/configure.in \
$gcc_cv_as_gas_srcdir/Makefile.in ; do
gcc_cv_gas_version=`sed -n -e 's/^[[ ]]*VERSION=[[^0-9A-Za-z_]]*\([[0-9]]*\.[[0 [...]
diff --git a/gcc/configure b/gcc/configure
index 08bce32..22f7230 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -21674,6 +21674,12 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
gcc_cv_gas_major_version=
gcc_cv_gas_minor_version=
gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas
+gcc_cv_as_gas_configure=
+if test -f $gcc_cv_as_gas_srcdir/configure.in; then
+ gcc_cv_as_gas_configure=$gcc_cv_as_gas_srcdir/configure.in;
+elif test -f $gcc_cv_as_gas_srcdir/configure.ac; then
+ gcc_cv_as_gas_configure=$gcc_cv_as_gas_srcdir/configure.ac
+fi
if test "${gcc_cv_as+set}" = set; then :
@@ -21681,7 +21687,7 @@ else
if test -x "$DEFAULT_ASSEMBLER"; then
gcc_cv_as="$DEFAULT_ASSEMBLER"
-elif test -f $gcc_cv_as_gas_srcdir/configure.in \
+elif test -n "$gcc_cv_as_gas_configure" \
&& test -f ../gas/Makefile \
&& test x$build = x$host; then
gcc_cv_as=../gas/as-new$build_exeext
@@ -21754,6 +21760,7 @@ $as_echo "newly built gas" >&6; }
gcc_cv_as_bfd_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/bfd
for f in $gcc_cv_as_bfd_srcdir/configure \
$gcc_cv_as_gas_srcdir/configure \
+ $gcc_cv_as_gas_srcdir/configure.ac \
$gcc_cv_as_gas_srcdir/configure.in \
$gcc_cv_as_gas_srcdir/Makefile.in ; do
gcc_cv_gas_version=`sed -n -e 's/^[ ]*VERSION=[^0-9A-Za-z_]*\([0-9]*\.[0-9]*.*\ [...]
@@ -21832,6 +21839,12 @@ gcc_cv_gld_minor_version=
gcc_cv_ld_gld_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/ld
gcc_cv_ld_gold_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gold
gcc_cv_ld_bfd_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/bfd
+gcc_cv_ld_gld_configure=
+if test -f $gcc_cv_ld_gld_srcdir/configure.in; then
+ gcc_cv_ld_gld_configure=gcc_cv_ld_gld_srcdir/configure.in
+elif test -f $gcc_cv_ld_gld_srcdir/configure.ac; then
+ gcc_cv_ld_gld_configure=gcc_cv_ld_gld_srcdir/configure.ac
+fi
if test "${gcc_cv_ld+set}" = set; then :
@@ -21844,7 +21857,7 @@ elif test $install_gold_as_default = yes \
&& test -f ../gold/Makefile \
&& test x$build = x$host; then
gcc_cv_ld=../gold/ld-new$build_exeext
-elif test -f $gcc_cv_ld_gld_srcdir/configure.in \
+elif test -n "$gcc_cv_ld_gld_configure" \
&& test -f ../ld/Makefile \
&& test x$build = x$host; then
gcc_cv_ld=../ld/ld-new$build_exeext
@@ -21960,7 +21973,7 @@ $as_echo "newly built ld" >&6; }
elif test "$ld_is_gold" = yes; then
in_tree_ld_is_elf=yes
fi
- for f in $gcc_cv_ld_bfd_srcdir/configure $gcc_cv_ld_gld_srcdir/configure $gcc_cv_ [...]
+ for f in $gcc_cv_ld_bfd_srcdir/configure $gcc_cv_ld_gld_srcdir/configure $gcc_cv_ [...]
do
gcc_cv_gld_version=`sed -n -e 's/^[ ]*VERSION=[^0-9A-Za-z_]*\([0-9]*\.[0-9]*.*\ [...]
if test x$gcc_cv_gld_version != x; then
@@ -21989,11 +22002,17 @@ fi
# Figure out what nm we will be using.
gcc_cv_binutils_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/binutils
+gcc_cv_binutils_configure=
+if test -f $gcc_cv_binutils_srcdir/configure.in; then
+ gcc_cv_binutils_configure=$gcc_cv_binutils_srcdir/configure.in
+elif test -f $gcc_cv_binutils_srcdir/configure.ac; then
+ gcc_cv_binutils_configure=$gcc_cv_binutils_srcdir/configure.ac
+fi
if test "${gcc_cv_nm+set}" = set; then :
else
-if test -f $gcc_cv_binutils_srcdir/configure.in \
+if test -n "$gcc_cv_binutils_configure" \
&& test -f ../binutils/Makefile \
&& test x$build = x$host; then
gcc_cv_nm=../binutils/nm-new$build_exeext
@@ -22072,7 +22091,7 @@ if test "${gcc_cv_objdump+set}" = set; then :
else
-if test -f $gcc_cv_binutils_srcdir/configure.in \
+if test -n "$gcc_cv_binutils_configure" \
&& test -f ../binutils/Makefile \
&& test x$build = x$host; then
# Single tree build which includes binutils.
@@ -22144,7 +22163,7 @@ if test "${gcc_cv_readelf+set}" = set; then :
else
-if test -f $gcc_cv_binutils_srcdir/configure.in \
+if test -n "$gcc_cv_binutils_configure" \
&& test -f ../binutils/Makefile \
&& test x$build = x$host; then
# Single tree build which includes binutils.
diff --git a/gcc/configure.ac b/gcc/configure.ac
index 326bb59..9da8331 100644
--- a/gcc/configure.ac
+++ b/gcc/configure.ac
@@ -2086,12 +2086,18 @@ AC_SUBST(enable_fast_install)
gcc_cv_gas_major_version=
gcc_cv_gas_minor_version=
gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas
+gcc_cv_as_gas_configure=
+if test -f $gcc_cv_as_gas_srcdir/configure.in; then
+ gcc_cv_as_gas_configure=$gcc_cv_as_gas_srcdir/configure.in;
+elif test -f $gcc_cv_as_gas_srcdir/configure.ac; then
+ gcc_cv_as_gas_configure=$gcc_cv_as_gas_srcdir/configure.ac
+fi
m4_pattern_allow([AS_FOR_TARGET])dnl
AS_VAR_SET_IF(gcc_cv_as,, [
if test -x "$DEFAULT_ASSEMBLER"; then
gcc_cv_as="$DEFAULT_ASSEMBLER"
-elif test -f $gcc_cv_as_gas_srcdir/configure.in \
+elif test -n "$gcc_cv_as_gas_configure" \
&& test -f ../gas/Makefile \
&& test x$build = x$host; then
gcc_cv_as=../gas/as-new$build_exeext
@@ -2171,6 +2177,12 @@ gcc_cv_gld_minor_version=
gcc_cv_ld_gld_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/ld
gcc_cv_ld_gold_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gold
gcc_cv_ld_bfd_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/bfd
+gcc_cv_ld_gld_configure=
+if test -f $gcc_cv_ld_gld_srcdir/configure.in; then
+ gcc_cv_ld_gld_configure=gcc_cv_ld_gld_srcdir/configure.in
+elif test -f $gcc_cv_ld_gld_srcdir/configure.ac; then
+ gcc_cv_ld_gld_configure=gcc_cv_ld_gld_srcdir/configure.ac
+fi
AS_VAR_SET_IF(gcc_cv_ld,, [
if test -x "$DEFAULT_LINKER"; then
@@ -2180,7 +2192,7 @@ elif test $install_gold_as_default = yes \
&& test -f ../gold/Makefile \
&& test x$build = x$host; then
gcc_cv_ld=../gold/ld-new$build_exeext
-elif test -f $gcc_cv_ld_gld_srcdir/configure.in \
+elif test -n "$gcc_cv_ld_gld_configure" \
&& test -f ../ld/Makefile \
&& test x$build = x$host; then
gcc_cv_ld=../ld/ld-new$build_exeext
@@ -2244,7 +2256,7 @@ if test "$gcc_cv_ld" = ../ld/ld-new$build_exeext \
elif test "$ld_is_gold" = yes; then
in_tree_ld_is_elf=yes
fi
- for f in $gcc_cv_ld_bfd_srcdir/configure $gcc_cv_ld_gld_srcdir/configure $gcc_cv_ [...]
+ for f in $gcc_cv_ld_bfd_srcdir/configure $gcc_cv_ld_gld_srcdir/configure $gcc_cv_ [...]
do
changequote(,)dnl
gcc_cv_gld_version=`sed -n -e 's/^[ ]*VERSION=[^0-9A-Za-z_]*\([0-9]*\.[0-9]*.*\ [...]
@@ -2276,8 +2288,14 @@ AC_SUBST(ORIGINAL_LD_GOLD_FOR_TARGET)
# Figure out what nm we will be using.
gcc_cv_binutils_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/binutils
+gcc_cv_binutils_configure=
+if test -f $gcc_cv_binutils_srcdir/configure.in; then
+ gcc_cv_binutils_configure=$gcc_cv_binutils_srcdir/configure.in
+elif test -f $gcc_cv_binutils_srcdir/configure.ac; then
+ gcc_cv_binutils_configure=$gcc_cv_binutils_srcdir/configure.ac
+fi
AS_VAR_SET_IF(gcc_cv_nm,, [
-if test -f $gcc_cv_binutils_srcdir/configure.in \
+if test -n "$gcc_cv_binutils_configure" \
&& test -f ../binutils/Makefile \
&& test x$build = x$host; then
gcc_cv_nm=../binutils/nm-new$build_exeext
@@ -2309,7 +2327,7 @@ esac
# Figure out what objdump we will be using.
AS_VAR_SET_IF(gcc_cv_objdump,, [
-if test -f $gcc_cv_binutils_srcdir/configure.in \
+if test -n "$gcc_cv_binutils_configure" \
&& test -f ../binutils/Makefile \
&& test x$build = x$host; then
# Single tree build which includes binutils.
@@ -2334,7 +2352,7 @@ fi
# Figure out what readelf we will be using.
AS_VAR_SET_IF(gcc_cv_readelf,, [
-if test -f $gcc_cv_binutils_srcdir/configure.in \
+if test -n "$gcc_cv_binutils_configure" \
&& test -f ../binutils/Makefile \
&& test x$build = x$host; then
# Single tree build which includes binutils.
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a commit to branch hjl/iamcu/improve
in repository gcc.
commit 6eee3bee6c18f9a847cb0039e9bde651c1b52987
Author: H.J. Lu <hjl.tools(a)gmail.com>
Date: Wed Jul 8 19:46:43 2015 -0700
IA MCU run-time doesn't support TLS
Return 0 in check_effective_target_tls_native and
check_effective_target_tls_emulated for IA MCU target.
---
gcc/testsuite/lib/target-supports.exp | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp
index 1988301..c97fa08 100644
--- a/gcc/testsuite/lib/target-supports.exp
+++ b/gcc/testsuite/lib/target-supports.exp
@@ -701,8 +701,9 @@ proc check_effective_target_tls {} {
proc check_effective_target_tls_native {} {
# VxWorks uses emulated TLS machinery, but with non-standard helper
- # functions, so we fail to automatically detect it.
- if { [istarget *-*-vxworks*] } {
+ # functions, so we fail to automatically detect it. IA MCU run-time
+ # doesn't support TLS.
+ if { [istarget *-*-vxworks*] || [istarget *-*-elfiamcu] } {
return 0
}
@@ -716,6 +717,11 @@ proc check_effective_target_tls_native {} {
# Return 1 if *emulated* thread local storage (TLS) is supported, 0 otherwise.
proc check_effective_target_tls_emulated {} {
+ # IA MCU run-time doesn't support TLS.
+ if { [istarget *-*-elfiamcu] } {
+ return 0
+ }
+
# VxWorks uses emulated TLS machinery, but with non-standard helper
# functions, so we fail to automatically detect it.
if { [istarget *-*-vxworks*] } {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch trunk
in repository gcc.
from d009152 /cp 2015-07-21 Paolo Carlini <paolo.carlini(a)oracle.com>
new da3f7d6 Daily bump.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/DATESTAMP | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
ryan.arnold pushed a commit to branch master
in repository toolchain/release-notes.
The following commit(s) were added to refs/heads/master by this push:
new 1463c4f Update with new information on binary toolchain release notes.
1463c4f is described below
commit 1463c4f95ddf87c7cc91ee212f06e1e3a4acb7df
Author: Ryan S. Arnold <ryan.arnold(a)linaro.org>
Date: Tue Jul 21 19:15:10 2015 -0500
Update with new information on binary toolchain release notes.
---
components/toolchain/binaries/README.textile | 126 ++++++++++++++++++---------
1 file changed, 84 insertions(+), 42 deletions(-)
diff --git a/components/toolchain/binaries/README.textile b/components/toolchain/bi [...]
index accd40a..bd49258 100644
--- a/components/toolchain/binaries/README.textile
+++ b/components/toolchain/binaries/README.textile
@@ -1,90 +1,132 @@
-p. The Linaro Toolchain Working Group is pleased to announce this quarter's releas [...]
+h1. Linaro *Stable* Binary Toolchain Release
-p. Beginning 2014.11, Linaro is changing the layout and structure of its prebuilt [...]
+p. The Linaro Toolchain Working Group is pleased to announce this quarter's releas [...]
-p. The folder names above describe the target triplets, i.e. the system on which y [...]
+p. These archives provide cross-toolchain executables (compiler, debugger, linker, [...]
-p. Inside each folder is also a @manifest.txt@ file further describing the target [...]
+p. Beginning with the Linaro 4.9-2014.11 release, Linaro has changed the layout an [...]
-p. Essentially, the main folder contents are as follows:
+p. The folders above describe the ARM and Aarch64 target triplets, i.e., the syste [...]
-aarch64-linux-gnu
-* gcc-linaro-*x86_64_aarch64-linux-gnu.tar.xz
+p. Each folder contains a @manifest.txt@ file further describing the target and ho [...]
+
+h2. Supported Targets
+
+p. Linaro binary toolchains are provided for the following ARM and Aarch64 targets:
+
+h3. aarch64-linux-gnu
+
+p. _Toolchains for little-endian, 64-bit ARMv8 for GNU/Linux systems_
+
+* @gcc-linaro-*x86_64_aarch64-linux-gnu.tar.xz@
** Linux 64-bit binaries for the Aarch64 Linux cross-toolchain
-* gcc-linaro-*i686-mingw32_aarch64-linux-gnu.tar.xz
+* @gcc-linaro-*i686-mingw32_aarch64-linux-gnu.tar.xz@
** Windows 32-bit binaries for the Aarch64 Linux cross-toolchain
-aarch64-none-elf
-* gcc-linaro-*x86_64_aarch64-elf.tar.xz
+h3. armv8l-linux-gnueabihf
+
+p. _Toolchains for little-endian, 32-bit ARMv8 for GNU/Linux systems_
+
+* _Not yet available_
+
+h3. aarch64-none-elf
+
+p. _Toolchains for little-endian, 64-bit ARMv8 for bare-metal systems_
+
+* @gcc-linaro-*x86_64_aarch64-elf.tar.xz@
** Linux 64-bit binaries for the Aarch64 bare-metal cross-toolchain
-* gcc-linaro-*i686-mingw32_aarch64-elf.tar.xz
+* @gcc-linaro-*i686-mingw32_aarch64-elf.tar.xz@
** Windows 32-bit binaries for the Aarch64 bare-metal cross-toolchain
-aarch64_be-linux-gnu
-* gcc-linaro-*x86_64_aarch64_be-linux-gnu.tar.xz
+h3. aarch64_be-linux-gnu
+
+p. _Toolchains for big-endian, 64-bit ARMv8 for GNU/Linux systems_
+
+* @gcc-linaro-*x86_64_aarch64_be-linux-gnu.tar.xz@
** Linux 64-bit binaries for the Aarch64 Linux Big Endian cross-toolchain
-* gcc-linaro-*i686-mingw32_aarch64_be-linux-gnu.tar.xz
+* @gcc-linaro-*i686-mingw32_aarch64_be-linux-gnu.tar.xz@
** Windows 32-bit binaries for the Aarch64 Linux Big Endian cross-toolchain
-aarch64_be-none-elf
-* gcc-linaro-*x86_64_aarch64_be-elf.tar.xz
+h3. aarch64_be-none-elf
+
+p. _Toolchains for big-endian, 64-bit ARMv8 for bare-metal systems_
+
+* @gcc-linaro-*x86_64_aarch64_be-elf.tar.xz@
** Linux 64-bit binaries for the Aarch64 bare-metal Big Endian cross-toolchain
-* gcc-linaro-*i686-mingw32_aarch64_be-elf.tar.xz
+* @gcc-linaro-*i686-mingw32_aarch64_be-elf.tar.xz@
** Windows 32-bit binaries for the Aarch64 bare-metal Big Endian cross-toolchain
-arm-linux-gnueabi
-* gcc-linaro-*x86_64_arm-linux-gnueabi.tar.xz
+h3. arm-linux-gnueabi
+
+p. _Toolchains for little-endian, soft-float, 32-bit ARMv7 (and earlier) for GNU/L [...]
+
+* @gcc-linaro-*x86_64_arm-linux-gnueabi.tar.xz@
** Linux 64-bit binaries for the ARMv7 Linux soft float cross-toolchain
-* gcc-linaro-*i686-mingw32_arm-linux-gnueabi.tar.xz
+* @gcc-linaro-*i686-mingw32_arm-linux-gnueabi.tar.xz@
** Windows 32-bit binaries for the ARMv7 Linux soft float cross-toolchain
-arm-linux-gnueabihf
-* gcc-linaro-*x86_64_arm-linux-gnueabihf.tar.xz
+h3. arm-linux-gnueabihf
+
+p. _Toolchains for little-endian, hard-float, 32-bit ARMv7 (and earlier) for GNU/L [...]
+
+* @gcc-linaro-*x86_arm-linux-gnueabihf.tar.xz@
+** _Not yet available- Linux 32-bit binaries for the ARMv7 Linux hard float cross- [...]
+* @gcc-linaro-*x86_64_arm-linux-gnueabihf.tar.xz@
** Linux 64-bit binaries for the ARMv7 Linux hard float cross-toolchain
-* gcc-linaro-*i686-mingw32_arm-linux-gnueabihf.tar.xz
+* @gcc-linaro-*i686-mingw32_arm-linux-gnueabihf.tar.xz@
** Windows 32-bit binaries for the ARMv7 Linux hard float cross-toolchain
-arm-none-eabi
-* gcc-linaro-*x86_64_arm-eabi.tar.xz
+h3. arm-none-eabi
+
+p. _Toolchains for little-endian, soft-float, 32-bit ARMv7 (and earlier) for bare- [...]
+
+* @gcc-linaro-*x86_64_arm-eabi.tar.xz@
** Linux 64-bit binaries for the ARMv7 bare-metal cross-toolchain
-* gcc-linaro-*i686-mingw32_arm-eabi.tar.xz
+* @gcc-linaro-*i686-mingw32_arm-eabi.tar.xz@
** Windows 32-bit binaries for the ARMv7 bare-metal cross-toolchain
-armeb-linux-gnueabihf
-* gcc-linaro-*x86_64_armeb-linux-gnueabihf.tar.xz
+h3. armeb-linux-gnueabihf
+
+p. _Toolchains for big-endian, hard-float, 32-bit ARMv7 (and earlier) for GNU/Linu [...]
+
+* @gcc-linaro-*x86_64_armeb-linux-gnueabihf.tar.xz@
** Linux 64-bit binaries for the ARMv7 Linux Big Endian hard float cross-toolchain
-* gcc-linaro-*i686-mingw32_armeb-linux-gnueabihf.tar.xz
+* @gcc-linaro-*i686-mingw32_armeb-linux-gnueabihf.tar.xz@
** Windows 32-bit binaries for the ARMv7 Linux Big Endian hard float cross-toolchain
-armeb-none-eabi
-* gcc-linaro-*x86_64_armeb-eabi.tar.xz
+h3. armeb-none-eabi
+
+p. _Toolchains for big-endian, soft-float, 32-bit ARMv7 (and earlier) for bare-met [...]
+
+* @gcc-linaro-*x86_64_armeb-eabi.tar.xz@
** Linux 64-bit binaries for the ARMv7 bare-metal Big Endian cross-toolchain
-* gcc-linaro-*i686-mingw32_armeb-eabi.tar.xz
+* @gcc-linaro-*i686-mingw32_armeb-eabi.tar.xz@
** Windows 32-bit binaries for the ARMv7 bare-metal Big Endian cross-toolchain
-h4. NOTE
+h2. NOTE
-* The binary source package is no longer distributed as the components are now arc [...]
+* The toolchain component source release archives for the individual components ar [...]
-* The source package releases for the individual components are still at http://re [...]
+* The binary tarball has been split into 3 parts. As a result, you can install onl [...]
+** @gcc-linaro-*.tar.xz@ - the compiler and tools
+** @runtime-linaro-*.tar.xz@ - runtime libraries needed on the target
+** @sysroot-linaro-*.tar.xz@ - sysroot (a set of libraries and headers to develop [...]
-* The binary tarball has been splitted into 3 parts. As a result, you can install [...]
-** gcc-linaro-*.tar.xz - the compiler and tools
-** runtime-linaro-*.tar.xz - runtime libraries needed on the target
-** sysroot-linaro-*.tar.xz - sysroot (a set of libraries and headers to develop against)
+* Presently, only the bare-metal toolchains are multilib enabled. There is a plan [...]
-* Beginning 2014.11, sysroots will use the latest glibc release provided by Linaro [...]
+* Beginning 2014.11, sysroots will provide newer glibc versions (as chose by Linar [...]
-* Eglibc 2.15 compatible sysroots will no longer be released. Users that require E [...]
+* Eglibc 2.15 compatible sysroots will no longer be released. Users that require E [...]
* x86 (32-bit) Linux host toolchains are no longer provided. x86_64 (64-bit) Linux [...]
-* Soft-float targeted linux toolchains are no longer supported.
+* The arm-linux-gnueabihf targeted toolchain no longer supports soft-float. The a [...]
h3. Feedback and Support
Subscribe to the important Linaro mailing lists and join our IRC channels to stay [...]
+** Linaro Bugzilla "bug tracker for Linaro Linux Binary Toolchains":https://bugs.l [...]
** Linaro Toolchain Development "mailing list":http://lists.linaro.org/mailman/lis [...]
** Linaro Toolchain IRC channel on irc.freenode.net at @#linaro-tcwg@
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.