Minutes from the toolchain working group stand up call are at:
https://wiki.linaro.org/WorkingGroups/ToolChain/Meetings/2010-07-28
-- Michael
== Attendees ==
||Name ||Email ||IRC Nick ||
|| Andrew Stubbs || andrew.stu...@linaro.org || ams ||
|| Chung-Lin Tang || clt...@codesourcery.com || cl
On 29/07/10 17:23, Andrew Stubbs wrote:
> This patch was originally submitted, by RedHat, to gcc-patches here:
> http://gcc.gnu.org/ml/gcc-patches/2008-07/subjects.html#00982
Joseph points out, the patch we have in our tree is not actually the
same one posted in the link above. Our patch is a dif
As already discussed with Loic, CodeSourcery have a GCC patch that
implements a new optimization: -fremove-local-statics.
Essentially, it transforms code like this:
int foo (void) { static int a = 1; return a; }
into this:
int foo (void) { int a = 1; return a; }
Admittedly, if the c
Dnia środa, 28 lipca 2010 o 19:16:42 Hector Oron napisał(a):
> Hello Marcin,
>
> On Tue, Jul 27, 2010 at 01:06:15PM +0200, Marcin Juszkiewicz wrote:
> > To make it possible I also have to alter contents of *-source binary
> > packages from binutils/eglibc/gcc/linux to have a possibility to reuse
>