New GCC mirror

2005-10-18 Thread Anton Titov
Hello, I've set up a new gcc mirror in Sofia, Bulgaria ftp://mirrors.host.bg/gnu/ftp/gnu/gcc/ http://mirrors.host.bg/gnu/ftp/gnu/gcc/ Regards, Anton Titov Host.bg

Re: Heads up: many recent Fortran SPEC regressions

2005-10-18 Thread Richard Henderson
On Tue, Oct 18, 2005 at 12:39:14AM +0200, Paul Thomas wrote: > Have you made any progress on fixing this? I would rather that the > debug information is not available than that equivalence is broken. My mind is going. After checking 4 or 5 different trees wondering where the patch is, I noticed

Re: RFC: weakref GCC attribute and .weakref assembly directive

2005-10-18 Thread Alexandre Oliva
On Oct 13, 2005, Daniel Jacobowitz <[EMAIL PROTECTED]> wrote: > On Thu, Oct 13, 2005 at 08:33:01AM -0500, Aaron W. LaFramboise wrote: >> Could you compare your novel weak references to PECOFF's notion of "weak >> externals"? >> >> .weak sym1 = sym2 # Analogous to: .weakref sym1, sym2 > The dif

Re: Question on i386 stack adjustment optimization

2005-10-18 Thread Jan Hubicka
> I modified the gcc i386 backend. Now my gcc optimizes function prologue > > movq%rbx, -16(%rsp) > movq%rbp, -8(%rsp) > subq$16, %rsp > > to > movq%rbx, -16(%rsp) > movq%rbp, -8(%rsp) > pushq %rax > pushq %rax > > The change was

Updating a subversion directory?

2005-10-18 Thread Steve Kargl
So, I finally get a copy of mainline, yesterday. As user [EMAIL PROTECTED], I did cd ~/gcc svn co svn+ssh://[EMAIL PROTECTED]/svn/gcc/trunk Now, I want to update this to the latest sources. The wiki says "svn update" works exactly like "cvs update". Well, this does not appear to be the case.

Re: Updating a subversion directory?

2005-10-18 Thread Daniel Berlin
> Now, I want to update this to the latest sources. The wiki > says "svn update" works exactly like "cvs update". Well, > this does not appear to be the case. > > cd trunk > svn update > Enter passphrase for key '/mnt1/sgk/.ssh/id_rsa': > At revision 105364. > > Inspecton of gcc/fortran/Chang

Re: Updating a subversion directory?

2005-10-18 Thread Paul Brook
On Tuesday 18 October 2005 18:44, Steve Kargl wrote: > So, I finally get a copy of mainline, yesterday. As user > [EMAIL PROTECTED], I did > > cd ~/gcc > svn co svn+ssh://[EMAIL PROTECTED]/svn/gcc/trunk > > Now, I want to update this to the latest sources. The wiki > says "svn update" works exact

Re: Updating a subversion directory?

2005-10-18 Thread Andrew Pinski
On Oct 18, 2005, at 1:44 PM, Steve Kargl wrote: So, I finally get a copy of mainline, yesterday. As user [EMAIL PROTECTED], I did The svn repro is not being updated with every commit to cvs. What you can do is checkout two copies and commit something to svn and then update the other copy.

Re: Updating a subversion directory?

2005-10-18 Thread Steve Kargl
On Tue, Oct 18, 2005 at 01:59:26PM -0400, Andrew Pinski wrote: > > On Oct 18, 2005, at 1:44 PM, Steve Kargl wrote: > > >So, I finally get a copy of mainline, yesterday. As user > >[EMAIL PROTECTED], I did > > The svn repro is not being updated with every commit to > cvs. What you can do is che

Re: Question on i386 stack adjustment optimization

2005-10-18 Thread H. J. Lu
On Tue, Oct 18, 2005 at 07:10:52PM +0200, Jan Hubicka wrote: > > I modified the gcc i386 backend. Now my gcc optimizes function prologue > > > > movq%rbx, -16(%rsp) > > movq%rbp, -8(%rsp) > > subq$16, %rsp > > > > to > > movq%rbx, -16(%rsp) > > movq%rbp, -8

Re: Updating a subversion directory?

2005-10-18 Thread Daniel Berlin
On Tue, 2005-10-18 at 11:18 -0700, Steve Kargl wrote: > On Tue, Oct 18, 2005 at 01:59:26PM -0400, Andrew Pinski wrote: > > > > On Oct 18, 2005, at 1:44 PM, Steve Kargl wrote: > > > > >So, I finally get a copy of mainline, yesterday. As user > > >[EMAIL PROTECTED], I did > > > > The svn repro is

Re: Heads up: many recent Fortran SPEC regressions

2005-10-18 Thread Jakub Jelinek
On Tue, Oct 18, 2005 at 01:47:33AM -0700, Richard Henderson wrote: > On Tue, Oct 18, 2005 at 12:39:14AM +0200, Paul Thomas wrote: > > Have you made any progress on fixing this? I would rather that the > > debug information is not available than that equivalence is broken. > > My mind is going.

Re: Updating a subversion directory?

2005-10-18 Thread Steve Kargl
On Tue, Oct 18, 2005 at 02:57:12PM -0400, Daniel Berlin wrote: > On Tue, 2005-10-18 at 11:18 -0700, Steve Kargl wrote: > > On Tue, Oct 18, 2005 at 01:59:26PM -0400, Andrew Pinski wrote: > > > > > > On Oct 18, 2005, at 1:44 PM, Steve Kargl wrote: > > > > > > >So, I finally get a copy of mainline,

Re: Updating a subversion directory?

2005-10-18 Thread Andrew Pinski
On Oct 18, 2005, at 3:05 PM, Steve Kargl wrote: We went over this yesterday. Until Tobi fixed the wiki it said to use svn co svn+ssh://gcc.gnu.org/svn/gcc/trunk Well it is correct for most people and to me it looks like a standard URI/URL so most people would just add username@ by themselves

Re: Updating a subversion directory?

2005-10-18 Thread Gabriel Dos Reis
Andrew Pinski <[EMAIL PROTECTED]> writes: | On Oct 18, 2005, at 3:05 PM, Steve Kargl wrote: | > We went over this yesterday. Until Tobi fixed the | > wiki it said to use | > | > svn co svn+ssh://gcc.gnu.org/svn/gcc/trunk | | Well it is correct for most people and to me it looks | like a standard

Re: Updating a subversion directory?

2005-10-18 Thread Steve Kargl
On Tue, Oct 18, 2005 at 03:11:08PM -0400, Andrew Pinski wrote: > > On Oct 18, 2005, at 3:05 PM, Steve Kargl wrote: > >We went over this yesterday. Until Tobi fixed the > >wiki it said to use > > > >svn co svn+ssh://gcc.gnu.org/svn/gcc/trunk > > Well it is correct for most people I have no data

Re: RFC: weakref GCC attribute and .weakref assembly directive

2005-10-18 Thread Aaron W. LaFramboise
Alexandre Oliva wrote: On Oct 13, 2005, Daniel Jacobowitz <[EMAIL PROTECTED]> wrote: > The difference is that ".weak sym1 = sym2" resolves to sym1 (if available) else sym2; but ".weakref sym1, sym2" resolves to sym2 (if available) else zero. Also sym1 does not become an external, only a local

Re: Updating a subversion directory?

2005-10-18 Thread Giovanni Bajo
Steve Kargl <[EMAIL PROTECTED]> wrote: > Perhaps. OTOH, the svn documentation, which contains > an explicit section on URL parsing, does not show a > username@ as a valid part of a svn flavor URL. In fact, I believe that using "username@" does not work when using SVN over http://. You have to us

Re: Heads up: many recent Fortran SPEC regressions

2005-10-18 Thread Paul Thomas
Jakub, Well, certainly the graphs on Diego's page returned ~ up to normal values when you committed the fix. I agree - it IS fixed. Thanks Paul

Re: Linking of object files from different compilers for ARM

2005-10-18 Thread Paul Brook
On Friday 14 October 2005 07:49, Yaroslav Karulin wrote: >Hello! > >I have two files: foo.c and main.c. foo.c is compiled with RVTC 2.2 > compiler. main.c is compiled with gcc compiler (configured with > --target=arm-elf). I cannot link them together using gcc linker. >But it's possible

Re: Updating a subversion directory?

2005-10-18 Thread Kean Johnston
In fact, I believe that using "username@" does not work when using SVN over http://. You have to use --username for that (and yes, it sucks). I long ago wrote a 'gccvs' script that simply reads: #! /bin/ksh export CVS_RSH=ssh cvs -d :ext:[EMAIL PROTECTED]/cvs/gcc $@ and I now reflexivly type 'g

Re: Updating a subversion directory?

2005-10-18 Thread Giovanni Bajo
Kean Johnston <[EMAIL PROTECTED]> wrote: > I fully anticiptae creating a similar 'gccsvn' and adding > and special args I need to get it working. This way you > aren't surprised by accidental environment variable changes > etc. Maybe you want to do that if you dont like using > --username all the

Subversion and firewalls question

2005-10-18 Thread Steve Ellcey
Anyone have advice on how to get subversion working through a corporate firewall. Currently I get: | /usr/local/bin/svn co svn+ssh://gcc.gnu.org:/svn/gcc/trunk | ssh: gcc.gnu.org:: no address associated with hostname. | svn: Connection closed unexpectedly I have cvs working, I ran socksify on c

Re: Subversion and firewalls question

2005-10-18 Thread Ian Lance Taylor
Steve Ellcey <[EMAIL PROTECTED]> writes: > Anyone have advice on how to get subversion working through a corporate > firewall. In case it helps, any connection to port 443 on sshproxy.sourceware.org is forwarded to port 22 on sourceware.org/gcc.gnu.org. This can help making SSH connections to gc

Re: Subversion and firewalls question

2005-10-18 Thread Daniel Berlin
On Tue, 2005-10-18 at 15:31 -0700, Steve Ellcey wrote: > Anyone have advice on how to get subversion working through a corporate > firewall. > > Currently I get: > > | /usr/local/bin/svn co svn+ssh://gcc.gnu.org:/svn/gcc/trunk > | ssh: gcc.gnu.org:: no address associated with hostname. > | svn: C

gcc-3.4-20051018 is now available

2005-10-18 Thread gccadmin
Snapshot gcc-3.4-20051018 is now available on ftp://gcc.gnu.org/pub/gcc/snapshots/3.4-20051018/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 3.4 CVS branch with the following options: -rgcc-ss-3_4-20051018 You'll

Re: Subversion and firewalls question

2005-10-18 Thread Paul Brook
On Tuesday 18 October 2005 23:34, Ian Lance Taylor wrote: > Steve Ellcey <[EMAIL PROTECTED]> writes: > > Anyone have advice on how to get subversion working through a corporate > > firewall. > > In case it helps, any connection to port 443 on > sshproxy.sourceware.org is forwarded to port 22 on > s

Re: Subversion and firewalls question

2005-10-18 Thread Steve Ellcey
> > Currently I get: > > > > | /usr/local/bin/svn co svn+ssh://gcc.gnu.org:/svn/gcc/trunk > > | ssh: gcc.gnu.org:: no address associated with hostname. > > | svn: Connection closed unexpectedly > > This one might easy. > > You added a : at the end of gcc.gnu.org :) Blush It worked. Steve

Re: Subversion and firewalls question

2005-10-18 Thread Daniel Berlin
On Tue, 2005-10-18 at 15:56 -0700, Steve Ellcey wrote: > > > Currently I get: > > > > > > | /usr/local/bin/svn co svn+ssh://gcc.gnu.org:/svn/gcc/trunk > > > | ssh: gcc.gnu.org:: no address associated with hostname. > > > | svn: Connection closed unexpectedly > > > > This one might easy. > > > >