<feed xmlns='http://www.w3.org/2005/Atom'>
<title>buildroot/toolchain, branch 2018.02</title>
<subtitle>OpenPOWER buildroot sources</subtitle>
<id>https://git.raptorcs.com/git/buildroot/atom?h=2018.02</id>
<link rel='self' href='https://git.raptorcs.com/git/buildroot/atom?h=2018.02'/>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/'/>
<updated>2018-01-28T22:48:21+00:00</updated>
<entry>
<title>toolchain: add 4.15.x choice for headers</title>
<updated>2018-01-28T22:48:21+00:00</updated>
<author>
<name>Fabio Estevam</name>
<email>festevam@gmail.com</email>
</author>
<published>2018-01-28T22:34:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=ea0f6e8f06be4e405b1610b0e2dbde70c1d5d80a'/>
<id>urn:sha1:ea0f6e8f06be4e405b1610b0e2dbde70c1d5d80a</id>
<content type='text'>
Signed-off-by: Fabio Estevam &lt;festevam@gmail.com&gt;
Signed-off-by: Peter Korsgaard &lt;peter@korsgaard.com&gt;
</content>
</entry>
<entry>
<title>toolchain/toolchain-external: libatomic should also be copied for musl toolchains</title>
<updated>2018-01-17T21:37:59+00:00</updated>
<author>
<name>Thomas Petazzoni</name>
<email>thomas.petazzoni@free-electrons.com</email>
</author>
<published>2018-01-16T22:48:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=ece9385523351d20e314bddc1f277aef8de7fb40'/>
<id>urn:sha1:ece9385523351d20e314bddc1f277aef8de7fb40</id>
<content type='text'>
libatomic, like libgcc_s, is provided by gcc, so there is no reason to
copy it over only for the glibc and uclibc cases, it should also be
copied for the musl case. Without this, a program linked with
libatomic on a musl system will fail to run due to the missing
library.

Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
Reviewed-by: "Yann E. MORIN" &lt;yann.morin.1998@free.fr&gt;
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>toolchain: bump ARC prebuild toolchain to arc-2017.09</title>
<updated>2018-01-09T09:07:14+00:00</updated>
<author>
<name>Evgeniy Didin</name>
<email>Evgeniy.Didin@synopsys.com</email>
</author>
<published>2017-12-18T10:36:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=c208203618cfaf3e9dcbcc8c987f9927999c53ff'/>
<id>urn:sha1:c208203618cfaf3e9dcbcc8c987f9927999c53ff</id>
<content type='text'>
There might be subtle differences between uClibc configuration
compared to Buildroot's one.

Native RPC now is disabled because uClinc-ng has removed it.

Signed-off-by: Evgeniy Didin &lt;didin@synopsys.com&gt;
Cc: Alexey Brodkin &lt;abrodkin@synopsys.com&gt;
Cc: arc-buildroot@synopsys.com
Cc: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>toolchain: m68k coldfire is also affected by gcc bug 64735</title>
<updated>2018-01-07T20:56:59+00:00</updated>
<author>
<name>Jan Heylen</name>
<email>jan.heylen@nokia.com</email>
</author>
<published>2018-01-04T12:28:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=98b3b83fb54323cd1be0f38084a51c4e0c939e65'/>
<id>urn:sha1:98b3b83fb54323cd1be0f38084a51c4e0c939e65</id>
<content type='text'>
Verified experimentally by using exception_ptr with m68k_cf5208 and
looking at the value of ATOMIC_INT_LOCK_FREE. ATOMIC_INT_LOCK_FREE=1,
so the issue is present. Also verified that gcc 7.x fixed it also for
cf5208.

Signed-off-by: Jan Heylen &lt;jan.heylen@nokia.com&gt;
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>toolchain: post-pone evaluation of TOOLCHAIN_EXTERNAL_BIN</title>
<updated>2017-12-31T17:24:17+00:00</updated>
<author>
<name>Thomas Petazzoni</name>
<email>thomas.petazzoni@free-electrons.com</email>
</author>
<published>2017-12-01T20:53:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=1a69e33d57b344cfaee52c4cf995a1c3bdf0f40f'/>
<id>urn:sha1:1a69e33d57b344cfaee52c4cf995a1c3bdf0f40f</id>
<content type='text'>
The upcoming per-package SDK functionality is heavily based on the
fact that HOST_DIR, STAGING_DIR and TARGET_DIR are evaluated during
the configure/build/install steps of the packages. Therefore, any
evaluation-during-assignment using := is going to cause problems, and
need to be turned into evaluation-during-use using =.

This patch fix up one such instance in the external toolchain code.

This change is independent from the per-package SDK functionality, and
could be applied separately.

Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) &lt;arnout@mind.be&gt;
Reviewed-by: "Yann E. MORIN" &lt;yann.morin.1998@free.fr&gt;
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>toolchain-external: bump version of Linaro AArch64 toolchain to 7.2-2017.11</title>
<updated>2017-12-29T22:28:58+00:00</updated>
<author>
<name>Romain Naour</name>
<email>romain.naour@gmail.com</email>
</author>
<published>2017-12-21T18:21:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=0c374a057f395501c51444d0caf3e7e7e0c57997'/>
<id>urn:sha1:0c374a057f395501c51444d0caf3e7e7e0c57997</id>
<content type='text'>
https://releases.linaro.org/components/toolchain/binaries/7.2-2017.11

Tested with qemu_aarch64_virt_defconfig.

Signed-off-by: Romain Naour &lt;romain.naour@gmail.com&gt;
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>toolchain-external: bump version of Linaro ARMeb toolchain to 7.2-2017.11</title>
<updated>2017-12-29T22:28:56+00:00</updated>
<author>
<name>Romain Naour</name>
<email>romain.naour@gmail.com</email>
</author>
<published>2017-12-21T18:21:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=5963c8d3a16d63b1aa4056fdf6230aea2634d0e5'/>
<id>urn:sha1:5963c8d3a16d63b1aa4056fdf6230aea2634d0e5</id>
<content type='text'>
https://releases.linaro.org/components/toolchain/binaries/7.2-2017.11

Signed-off-by: Romain Naour &lt;romain.naour@gmail.com&gt;
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>toolchain-external: bump version of Linaro ARM toolchain to 7.2-2017.11</title>
<updated>2017-12-29T22:28:53+00:00</updated>
<author>
<name>Romain Naour</name>
<email>romain.naour@gmail.com</email>
</author>
<published>2017-12-21T18:21:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=4d582e349a1d5e09cacc908abe39139ef769bba5'/>
<id>urn:sha1:4d582e349a1d5e09cacc908abe39139ef769bba5</id>
<content type='text'>
https://releases.linaro.org/components/toolchain/binaries/7.2-2017.11

Tested with qemu_arm_vexpress_defconfig.

Signed-off-by: Romain Naour &lt;romain.naour@gmail.com&gt;
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>toolchain-external: bump version of Linaro AArch64 toolchain to 2017.11</title>
<updated>2017-12-15T07:58:07+00:00</updated>
<author>
<name>Romain Naour</name>
<email>romain.naour@gmail.com</email>
</author>
<published>2017-12-14T22:54:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=2729ab792e81ef703fc95569cc8d9f5ea85a8338'/>
<id>urn:sha1:2729ab792e81ef703fc95569cc8d9f5ea85a8338</id>
<content type='text'>
https://releases.linaro.org/components/toolchain/binaries/6.4-2017.11

Tested with qemu_aarch64_virt_defconfig.

Signed-off-by: Romain Naour &lt;romain.naour@gmail.com&gt;
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>toolchain-external: bump version of Linaro ARMeb toolchain to 2017.11</title>
<updated>2017-12-15T07:58:07+00:00</updated>
<author>
<name>Romain Naour</name>
<email>romain.naour@gmail.com</email>
</author>
<published>2017-12-14T22:54:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/buildroot/commit/?id=0372d5f7983af407a996c78572ffea5a1502edf3'/>
<id>urn:sha1:0372d5f7983af407a996c78572ffea5a1502edf3</id>
<content type='text'>
https://releases.linaro.org/components/toolchain/binaries/6.4-2017.11

Signed-off-by: Romain Naour &lt;romain.naour@gmail.com&gt;
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
</feed>
