Re: GCC 4.7.0 as a AVR cross compiler

2012-04-02 Thread Andrew Haley
On 03/30/2012 05:46 PM, stuart wrote: > I can not seem to get gcc 4.7.0 to compile; it will not complete the > configuration stage complaining about missing packages (GMP, MPFR and > MPC). Go into the top-level source directory in the unpacked gcc sources and run this script: ./contrib/download_

Re: GCC 4.7.0 as a AVR cross compiler

2012-03-30 Thread Ian Lance Taylor
stuart writes: > I am not sure this is the right place to ask this It's not. The right place is gcc-h...@gcc.gnu.org. Please take any followups there. Thanks. > I can not seem to get gcc 4.7.0 to compile; it will not complete the > configuration stage complaining about missing packages (GMP

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-12 Thread NightStrike
On Mon, Mar 12, 2012 at 8:25 AM, Richard Guenther wrote: > On Mon, 12 Mar 2012, NightStrike wrote: > >> On Mon, Mar 12, 2012 at 5:59 AM, Richard Guenther wrote: >> > On Wed, 7 Mar 2012, NightStrike wrote: >> > >> >> On Fri, Mar 2, 2012 at 8:44 AM, Richard Guenther >> >> wrote: >> >> > >> >> > G

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-12 Thread NightStrike
On Mon, Mar 12, 2012 at 8:05 AM, Dennis Clarke wrote: > >> On Mon, Mar 12, 2012 at 5:59 AM, Richard Guenther wrote: >>> On Wed, 7 Mar 2012, NightStrike wrote: >>> On Fri, Mar 2, 2012 at 8:44 AM, Richard Guenther wrote: > > GCC 4.7.0 Release Candidate available from gcc.gnu.org >>>

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-12 Thread Richard Guenther
On Mon, 12 Mar 2012, NightStrike wrote: > On Mon, Mar 12, 2012 at 5:59 AM, Richard Guenther wrote: > > On Wed, 7 Mar 2012, NightStrike wrote: > > > >> On Fri, Mar 2, 2012 at 8:44 AM, Richard Guenther wrote: > >> > > >> > GCC 4.7.0 Release Candidate available from gcc.gnu.org > >> > > >> > The fi

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-12 Thread Dennis Clarke
> On Mon, Mar 12, 2012 at 5:59 AM, Richard Guenther wrote: >> On Wed, 7 Mar 2012, NightStrike wrote: >> >>> On Fri, Mar 2, 2012 at 8:44 AM, Richard Guenther wrote: >>> > >>> > GCC 4.7.0 Release Candidate available from gcc.gnu.org >>> > >>> > The first release candidate for GCC 4.7.0 is availabl

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-12 Thread NightStrike
On Mon, Mar 12, 2012 at 5:59 AM, Richard Guenther wrote: > On Wed, 7 Mar 2012, NightStrike wrote: > >> On Fri, Mar 2, 2012 at 8:44 AM, Richard Guenther wrote: >> > >> > GCC 4.7.0 Release Candidate available from gcc.gnu.org >> > >> > The first release candidate for GCC 4.7.0 is available from >>

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-12 Thread Richard Guenther
On Wed, 7 Mar 2012, NightStrike wrote: > On Fri, Mar 2, 2012 at 8:44 AM, Richard Guenther wrote: > > > > GCC 4.7.0 Release Candidate available from gcc.gnu.org > > > > The first release candidate for GCC 4.7.0 is available from > > > >  ftp://gcc.gnu.org/pub/gcc/snapshots/4.7.0-RC-20120302 > > >

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-08 Thread Marc Glisse
On Thu, 8 Mar 2012, NightStrike wrote: On Wed, Mar 7, 2012 at 10:12 AM, Marc Glisse wrote: On Wed, 7 Mar 2012, NightStrike wrote: Building gmp/mpfr/mpc in tree fails in the configure-stage1-mpc step with the current version of mpfr version 3.1.0, out since last October, and mpc, version 0.9,

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-08 Thread NightStrike
On Wed, Mar 7, 2012 at 10:12 AM, Marc Glisse wrote: > On Wed, 7 Mar 2012, NightStrike wrote: > >> Building gmp/mpfr/mpc in tree fails in the configure-stage1-mpc step >> with the current version of mpfr version 3.1.0, out since last >> October, and mpc, version 0.9, out since Feb of 2011.  I'm gue

Re: GCC 4.7.0 and C++ atomics

2012-03-08 Thread Joel Sherrill
On 03/08/2012 11:47 AM, Richard Henderson wrote: On 03/08/12 00:17, Sebastian Huber wrote: thanks for the hints. Thus if we want to use the C++ atomic operations on 32-bit ARM in RTEMS we have to implement everything in libgcc/config/arm/linux-atomic.c and place it in e.g. libgcc/config/arm

Re: GCC 4.7.0 and C++ atomics

2012-03-08 Thread Richard Henderson
On 03/08/12 00:17, Sebastian Huber wrote: > thanks for the hints. Thus if we want to use the C++ atomic operations on > 32-bit ARM in RTEMS we have to implement everything in > > libgcc/config/arm/linux-atomic.c > > and place it in e.g. > > libgcc/config/arm/rtems-atomic.c Possibly. It reall

Re: GCC 4.7.0 and C++ atomics

2012-03-08 Thread Sebastian Huber
Hello Andrew and Richard, On 03/07/2012 08:38 PM, Richard Henderson wrote: On 03/07/12 10:44, Andrew MacLeod wrote: > rth, you are familiar with how this part is suppose to hook up properly... > > I traced the code in expand_mem_thread_fence, and the sync_synchronize is being emiited by: > >

Re: GCC 4.7.0 and C++ atomics

2012-03-07 Thread Richard Henderson
On 03/07/12 10:44, Andrew MacLeod wrote: > rth, you are familiar with how this part is suppose to hook up properly... > > I traced the code in expand_mem_thread_fence, and the sync_synchronize is > being emiited by: > > else if (synchronize_libfunc != NULL_RTX) > emit_library_call (synch

Re: GCC 4.7.0 and C++ atomics

2012-03-07 Thread Joel Sherrill
On 03/07/2012 12:44 PM, Andrew MacLeod wrote: On 03/07/2012 10:11 AM, Sebastian Huber wrote: Hello, I run the GCC testsuite for GCC 4.7.0 20120307 http://gcc.gnu.org/ml/gcc-testresults/2012-03/msg00782.html I got a lot of errors like this: FAIL: g++.dg/simulate-thread/atomics-1.C -O0 -g (t

Re: GCC 4.7.0 and C++ atomics

2012-03-07 Thread Andrew MacLeod
On 03/07/2012 10:11 AM, Sebastian Huber wrote: Hello, I run the GCC testsuite for GCC 4.7.0 20120307 http://gcc.gnu.org/ml/gcc-testresults/2012-03/msg00782.html I got a lot of errors like this: FAIL: g++.dg/simulate-thread/atomics-1.C -O0 -g (test for excess errors) 148796 Excess errors:

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-07 Thread Marc Glisse
On Wed, 7 Mar 2012, NightStrike wrote: Building gmp/mpfr/mpc in tree fails in the configure-stage1-mpc step with the current version of mpfr version 3.1.0, out since last October, and mpc, version 0.9, out since Feb of 2011. I'm guessing the sources moved or something. http://gcc.gnu.org/bugz

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-07 Thread NightStrike
On Fri, Mar 2, 2012 at 8:44 AM, Richard Guenther wrote: > > GCC 4.7.0 Release Candidate available from gcc.gnu.org > > The first release candidate for GCC 4.7.0 is available from > >  ftp://gcc.gnu.org/pub/gcc/snapshots/4.7.0-RC-20120302 > > and shortly its mirrors.  It has been generated from SVN

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-06 Thread Kyle Markley
On 03/02/12 05:44, Richard Guenther wrote: GCC 4.7.0 Release Candidate available from gcc.gnu.org The first release candidate for GCC 4.7.0 is available from ftp://gcc.gnu.org/pub/gcc/snapshots/4.7.0-RC-20120302 and shortly its mirrors. It has been generated from SVN revision 184777. I ha

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-05 Thread Michael Hope
On Sat, Mar 3, 2012 at 2:44 AM, Richard Guenther wrote: > > GCC 4.7.0 Release Candidate available from gcc.gnu.org > > The first release candidate for GCC 4.7.0 is available from > >  ftp://gcc.gnu.org/pub/gcc/snapshots/4.7.0-RC-20120302 > > and shortly its mirrors.  It has been generated from SVN

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-05 Thread Ralf Corsepius
On 03/05/2012 10:12 AM, Richard Guenther wrote: On Sat, 3 Mar 2012, Ralf Corsepius wrote: On 03/03/2012 02:58 PM, Richard Guenther wrote: On Sat, Mar 3, 2012 at 11:17 AM, Ralf Corsepius wrote: On 03/02/2012 02:44 PM, Richard Guenther wrote: GCC 4.7.0 Release Candidate available from gcc.

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-05 Thread Richard Guenther
On Sat, 3 Mar 2012, Ralf Corsepius wrote: > On 03/03/2012 02:58 PM, Richard Guenther wrote: > > On Sat, Mar 3, 2012 at 11:17 AM, Ralf Corsepius > > wrote: > > > On 03/02/2012 02:44 PM, Richard Guenther wrote: > > > > > > > > > > > > GCC 4.7.0 Release Candidate available from gcc.gnu.org > > >

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-03 Thread Dennis Clarke
> On 03/02/2012 08:40 PM, Dennis Clarke wrote: > If all goes well, I'd like to release 4.7.0 in about three weeks. I'll drop it on Solaris. Give it a push. Do we realy really need that ppl/cloog stuff? I have never seen it build and pass any tests, ever, even once, on Solar

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-03 Thread Tobias Grosser
On 03/02/2012 08:40 PM, Dennis Clarke wrote: If all goes well, I'd like to release 4.7.0 in about three weeks. I'll drop it on Solaris. Give it a push. Do we realy really need that ppl/cloog stuff? I have never seen it build and pass any tests, ever, even once, on Solaris with or without Sun St

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-03 Thread Jakub Jelinek
On Sat, Mar 03, 2012 at 02:04:49PM +, Jonathan Wakely wrote: > > it would be nice to see a fixincl update for 4.6/4.7 to support > > header as a workaround for PR50916. > > That bug's not even open, pointing it out after the RC has been made > isn't going to help get it looked at for 4.7.0 T

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-03 Thread Ralf Corsepius
On 03/03/2012 02:58 PM, Richard Guenther wrote: On Sat, Mar 3, 2012 at 11:17 AM, Ralf Corsepius wrote: On 03/02/2012 02:44 PM, Richard Guenther wrote: GCC 4.7.0 Release Candidate available from gcc.gnu.org The first release candidate for GCC 4.7.0 is available from ftp://gcc.gnu.org/pub

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-03 Thread Jonathan Wakely
2012/3/3 Paweł Sikora: > On Friday 02 of March 2012 14:44:45 Richard Guenther wrote: >> >> GCC 4.7.0 Release Candidate available from gcc.gnu.org >> >> The first release candidate for GCC 4.7.0 is available from >> >>  ftp://gcc.gnu.org/pub/gcc/snapshots/4.7.0-RC-20120302 >> >> and shortly its mirr

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-03 Thread Richard Guenther
On Sat, Mar 3, 2012 at 11:17 AM, Ralf Corsepius wrote: > On 03/02/2012 02:44 PM, Richard Guenther wrote: >> >> >> GCC 4.7.0 Release Candidate available from gcc.gnu.org >> >> The first release candidate for GCC 4.7.0 is available from >> >>  ftp://gcc.gnu.org/pub/gcc/snapshots/4.7.0-RC-20120302 >>

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-03 Thread Ralf Corsepius
On 03/02/2012 02:44 PM, Richard Guenther wrote: GCC 4.7.0 Release Candidate available from gcc.gnu.org The first release candidate for GCC 4.7.0 is available from ftp://gcc.gnu.org/pub/gcc/snapshots/4.7.0-RC-20120302 and shortly its mirrors. It has been generated from SVN revision 184777.

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-03 Thread Paweł Sikora
On Friday 02 of March 2012 14:44:45 Richard Guenther wrote: > > GCC 4.7.0 Release Candidate available from gcc.gnu.org > > The first release candidate for GCC 4.7.0 is available from > > ftp://gcc.gnu.org/pub/gcc/snapshots/4.7.0-RC-20120302 > > and shortly its mirrors. It has been generated f

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-02 Thread Dennis Clarke
> Dennis Clarke writes: > >>> GCC 4.7.0 Release Candidate available from gcc.gnu.org >>> >>> The first release candidate for GCC 4.7.0 is available from >>> >>> ftp://gcc.gnu.org/pub/gcc/snapshots/4.7.0-RC-20120302 >>> >>> and shortly its mirrors. It has been generated from SVN revision 184777.

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-02 Thread Dennis Clarke
>>> If all goes well, I'd like to release 4.7.0 in about three weeks. >> >> I'll drop it on Solaris. Give it a push. Do we realy really need that >> ppl/cloog stuff? I have never seen it build and pass any tests, ever, >> even once, on Solaris with or without Sun Studio compilers or GCC or >> praye

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-02 Thread Rainer Orth
Dennis Clarke writes: >> GCC 4.7.0 Release Candidate available from gcc.gnu.org >> >> The first release candidate for GCC 4.7.0 is available from >> >> ftp://gcc.gnu.org/pub/gcc/snapshots/4.7.0-RC-20120302 >> >> and shortly its mirrors. It has been generated from SVN revision 184777. >> >> I ha

Re: GCC 4.7.0 Release Candidate available from gcc.gnu.org

2012-03-02 Thread Dennis Clarke
> > GCC 4.7.0 Release Candidate available from gcc.gnu.org > > The first release candidate for GCC 4.7.0 is available from > > ftp://gcc.gnu.org/pub/gcc/snapshots/4.7.0-RC-20120302 > > and shortly its mirrors. It has been generated from SVN revision 184777. > > I have so far bootstrapped and tes

Re: GCC 4.7.0

2012-03-02 Thread Jakub Jelinek
On Fri, Mar 02, 2012 at 02:35:52PM +0100, Mioljub Ivanovic wrote: > GCC 4.7.0 listed, but there isn't link for download! 4.7.0 hasn't been released yet, just a release candidate - 4.7.0-rc1. The actual release will happen in a few weeks. If you want to try the release candidate, the link for it ha

Re: GCC 4.7.0 Status Report (2012-03-02)

2012-03-02 Thread Paolo Carlini
On 03/02/2012 12:15 PM, Richard Guenther wrote: The GCC 4.7 branch has been created and a first release candidate is being prepared right now. The branch is closed for now. Just be clear (I think the information could be useful in general): mainline can be already considered open for Stage 1 co

Re: GCC 4.7.0 Status Report (2011-12-06)

2011-12-22 Thread Joseph S. Myers
On Thu, 22 Dec 2011, Gary Funck wrote: > On 12/06/11 01:18:28, Joseph S. Myers wrote: > > [...] It still seems reasonable to aim for > > entering Stage 4 (regression fixes and documentation changes only) in > > early January and the 4.7.0 release in March or April. > > At what point in time would

Re: GCC 4.7.0 Status Report (2011-12-06)

2011-12-22 Thread Gary Funck
On 12/06/11 01:18:28, Joseph S. Myers wrote: > [...] It still seems reasonable to aim for > entering Stage 4 (regression fixes and documentation changes only) in > early January and the 4.7.0 release in March or April. At what point in time would the GCC 4.7 branch be created, and the trunk would

Re: GCC 4.7.0 Status Report (2011-10-27), Stage 1 will end Nov 7th

2011-11-15 Thread Michael Zolotukhin
Hello! x86-specific part of this patch was committed to the trunk recently. There is also target-independent part, which covers memset/memcopy for the smallest sizes (from 1 to ~256 bytes). In contrast to existing implementation, it has a cost model to choose the fastest move-mode (which could be

Re: GCC 4.7.0 Status Report (2011-11-08), Stage 1 is over, Stage 3 in effect immediately

2011-11-09 Thread Joseph S. Myers
On Tue, 8 Nov 2011, Jakub Jelinek wrote: > during the last minute, patches submitted during stage1 > may be still accepted, if they don't need significant rewrites, > but please try to get them in soon. Otherwise only bugfixes > and documentation fixes are allowed for the trunk. To be clear sinc

Re: GCC 4.7.0 Status Report (2011-10-27), Stage 1 will end Nov 7th

2011-10-27 Thread Uros Bizjak
Hello! > The GCC trunk is still in stage1. Stage1 will last until > Nov 7th (including, use your timezone to your advantage) after > which we will have been in stage1 for nearth 8 months. > In stage3 the trunk will be open for general bugfixing, no > new features will be accepted. There is a pat

RE: GCC 4.7.0 Status Report (2011-09-09)

2011-10-19 Thread Iyer, Balaji V
-Original Message- From: Gary Funck [mailto:g...@intrepid.com] Sent: Thursday, September 22, 2011 5:00 PM To: Jakub Jelinek Cc: gcc@gcc.gnu.org; Joseph S. Myers Subject: Re: GCC 4.7.0 Status Report (2011-09-09) On 09/09/11 09:09:30, Jakub Jelinek wrote: > [...] What is the status

Re: GCC 4.7.0 Status Report (2011-10-11)

2011-10-11 Thread Gerald Pfeifer
Website updated as follows. Gerald Index: index.html === RCS file: /cvs/gcc/wwwdocs/htdocs/index.html,v retrieving revision 1.813 diff -u -r1.813 index.html --- index.html 12 Sep 2011 00:04:45 - 1.813 +++ index.html 12 Oct

Re: GCC 4.7.0 Status Report (2011-09-09)

2011-10-08 Thread Torvald Riegel
On Mon, 2011-09-12 at 08:51 -0500, Aldy Hernandez wrote: > Jakub Jelinek writes: > > > In particular, is transactional-memory branch mergeable within > > a month and half, at least some parts of cxx-mem-model branch, > > bitfield lowering? What is the status of lra, reload-2a, pph, > > Torvald

Re: GCC 4.7.0 Status Report (2011-09-09)

2011-09-22 Thread Gary Funck
On 09/09/11 09:09:30, Jakub Jelinek wrote: > [...] What is the status of lra, reload-2a, pph, > cilkplus, gupc (I assume at least some of these are 4.8+ material)? For GUPC, we are targeting GCC 4.8. thanks, - Gary

Re: GCC 4.7.0 Status Report (2011-09-09)

2011-09-13 Thread Jan Hubicka
> On 09/09/2011 03:09 AM, Jakub Jelinek wrote: >> Status >> == >> >> The trunk is in Stage 1, which, if we follow roughly the 4.6 >> release schedule, should end around end of October. >> At this point I'd like to gather the status of the various >> development branches that haven't been merged

Re: GCC 4.7.0 Status Report (2011-09-09)

2011-09-12 Thread Jeff Law
On 09/09/2011 01:09 AM, Jakub Jelinek wrote: bitfield lowering? What is the status of lra, reload-2a, pph, cilkplus, gupc (I assume at least some of these are 4.8+ material)? The bits on reload-v2a provide range splitting and a second chance at assigning a hard reg for unallocated allocnos. Th

Re: GCC 4.7.0 Status Report (2011-09-09)

2011-09-12 Thread Aldy Hernandez
Jakub Jelinek writes: > In particular, is transactional-memory branch mergeable within > a month and half, at least some parts of cxx-mem-model branch, > bitfield lowering? What is the status of lra, reload-2a, pph, Torvald and I are looking into getting things merge read, but... The main prob

Re: GCC 4.7.0 Status Report (2011-09-09)

2011-09-09 Thread Vladimir Makarov
On 09/09/2011 03:09 AM, Jakub Jelinek wrote: Status == The trunk is in Stage 1, which, if we follow roughly the 4.6 release schedule, should end around end of October. At this point I'd like to gather the status of the various development branches that haven't been merged into trunk yet and

Re: GCC 4.7.0 Status Report (2011-09-09)

2011-09-09 Thread Andrew MacLeod
On 09/09/2011 03:09 AM, Jakub Jelinek wrote: In particular, is transactional-memory branch mergeable within a month and half, at least some parts of cxx-mem-model branch, There will certainly be some parts of the branch which would be appropriate for merging with mainline in october. We ough

Re: GCC 4.7.0 Status Report (2011-09-09)

2011-09-09 Thread Richard Guenther
On Fri, Sep 9, 2011 at 9:09 AM, Jakub Jelinek wrote: > Status > == > > The trunk is in Stage 1, which, if we follow roughly the 4.6 > release schedule, should end around end of October. > At this point I'd like to gather the status of the various > development branches that haven't been merged