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
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
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
> 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
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.
> 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
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
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.
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
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
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
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.
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,
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
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
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
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
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
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
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
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
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
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
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
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
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
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
> > 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
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.
> >
> >
29 matches
Mail list logo