Re: build gcc with distcc

2006-11-23 Thread Richard Sandiford
Weidong Cui <[EMAIL PROTECTED]> writes: > Hi, Everyone: > I am trying to build gcc with distcc on 3 linux > boxes. But when I build gcc with option '--enable-bootstrap', > the 'distcc' doesn't work. So I disabled bootstrap , then 'distcc' > worked effective. > > My question is: how to build

Re: Help for warning: type attributes are honored only at type definition

2006-11-23 Thread Lucas (a.k.a T-Bird or bsdfan3)
You're right, this isn't the correct list for this question, try posting it to gcc-help Francesco Montorsi wrote: Maybe this is not the right list for such question? Should I directly use gcc bugzilla? Thanks, Francesco Francesco Montorsi ha scritto: Hi all, I'm getting a lot of warnin

[Re: build gcc with distcc]

2006-11-23 Thread Weidong Cui
On Thu, Nov 23, 2006 at 11:36:43AM +, Richard Sandiford wrote: > Weidong Cui <[EMAIL PROTECTED]> writes: > > Hi, Everyone: > > I am trying to build gcc with distcc on 3 linux > > boxes. But when I build gcc with option '--enable-bootstrap', > > the 'distcc' doesn't work. So I disabled bo

Re: how to load a cfg from a file by tree-ssa

2006-11-23 Thread Rob Quill
I haven't looked into this yet, but as I think I may need to be able to do something similar, is it possible to parse the cfg file that is given out, and build a C structure like that? Thanks Rob On 21/11/06, Paolo Bonzini <[EMAIL PROTECTED]> wrote: > but i don't know how to load that file in

Re: Help for warning: type attributes are honored only at type definition

2006-11-23 Thread Andrew Haley
Francesco Montorsi writes: > > Looking around for a solution (e.g. suppress that specific warning) I've > found: > > http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20345 > > and I wonder if the patch referenced there > (http://gcc.gnu.org/ml/gcc-patches/2006-06/msg01511.html) does fix my

Is this really the right error message?

2006-11-23 Thread Roberto Bagnara
$ cat p.cc char c[2] = "a"; char d[2] = c; $ g++ -c p.cc p.cc:2: error: cannot convert ‘char [2]’ to ‘char [2]’ in initialization -- Prof. Roberto Bagnara Computer Science Group Department of Mathematics, University of Parma, Italy http://www.cs.unipr.it/~bagnara/ mailto:[EMAIL PROTECTED]

gcc-4.0-20061123 is now available

2006-11-23 Thread gccadmin
Snapshot gcc-4.0-20061123 is now available on ftp://gcc.gnu.org/pub/gcc/snapshots/4.0-20061123/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 4.0 SVN branch with the following options: svn://gcc.gnu.org/svn/gcc/branches

Re: [gomp] distributing libgomp/libgomp.info ?

2006-11-23 Thread Daniel Franke
On Thursday 23 November 2006 05:11, you wrote: > On Wed, 2006-11-22 at 22:52 +0100, Daniel Franke wrote: > > The tarball of 4.1.1 includes fastjar/fastjar.info, but not > > libiberty/libiberty.info. The config file fastjar/configure.ac has the > > enable-...-srcdir flag, libiberty/configure.ac does

Re: Is this really the right error message?

2006-11-23 Thread Gabriel Dos Reis
Roberto Bagnara <[EMAIL PROTECTED]> writes: | $ cat p.cc | char c[2] = "a"; | char d[2] = c; | $ g++ -c p.cc | p.cc:2: error: cannot convert ‘char [2]’ to ‘char [2]’ in initialization A good diagnostic would speak of assignment, but I lost that battle some time ago. -- Gaby

Re: how to load a cfg from a file by tree-ssa

2006-11-23 Thread Paolo Bonzini
Rob Quill wrote: I haven't looked into this yet, but as I think I may need to be able to do something similar, is it possible to parse the cfg file that is given out, and build a C structure like that? It seems to me that the answer had been already given in the message you fully quoted: we ca