Jump to page: 1 2
Thread overview
Where to post bug report for Ubuntu GDC package
Jan 19, 2010
Steve Teale
Jan 19, 2010
Brad Roberts
Jan 19, 2010
Steve Teale
Jan 21, 2010
Steve Teale
Jan 21, 2010
Steve Teale
Jan 21, 2010
Steve Teale
Jan 20, 2010
Vincenzo Ampolo
Jan 20, 2010
Steve Teale
Jan 21, 2010
Vincenzo Ampolo
January 19, 2010
The following produces a segfault with GDC - works OK with DMD on same machine. Where do I report it?

import std.stdio;

class Bar
{
    void bar(string s) {}
}

void foo(string s)
{
    Bar b = new Bar();
    writefln("%08x", cast(uint) b);
    void A(string as)
    {
        void B(string bs)
        {
            writefln("in B");
            writefln("%08x", cast(uint) b);
        }
        writefln("%08x", cast(uint) b);
        B(as);
    }
    writefln("%08x", cast(uint) b);
    A(s);
}

void main()
{
    foo("wobble");
}

January 19, 2010
Steve Teale wrote:
> The following produces a segfault with GDC - works OK with DMD on same machine. Where do I report it?

The official D Bugzilla does not accept GDC bugs any more: "Sorry, entering an issue into the product DGCC aka GDC has been disabled."

So most likely you report it to Ubuntu, or add it to the DGCC tracker
at http://sourceforge.net/tracker/?group_id=154306, or this newsgroup.

FWIW it "works" on Mac OS X. (trunk-r229)
00407ff0
00407ff0
00407ff0
in B
00407ff0

--anders
January 19, 2010
On 1/18/2010 11:59 PM, Anders F Björklund wrote:
> Steve Teale wrote:
>> The following produces a segfault with GDC - works OK with DMD on same machine. Where do I report it?
> 
> The official D Bugzilla does not accept GDC bugs any more: "Sorry, entering an issue into the product DGCC aka GDC has been disabled."
> 
> So most likely you report it to Ubuntu, or add it to the DGCC tracker at http://sourceforge.net/tracker/?group_id=154306, or this newsgroup.
> 
> FWIW it "works" on Mac OS X. (trunk-r229)
> 00407ff0
> 00407ff0
> 00407ff0
> in B
> 00407ff0
> 
> --anders

I disabled it due to the project going dead.  If you guys want to use the d bugzilla system for gdc bug tracking, I'll be happy to re-enable it.
January 19, 2010
Brad Roberts wrote:
>> The official D Bugzilla does not accept GDC bugs any more: "Sorry,
>> entering an issue into the product DGCC aka GDC has been disabled."
...
> I disabled it due to the project going dead.  If you guys want to use the d
> bugzilla system for gdc bug tracking, I'll be happy to re-enable it.

I'll leave that up to David Friedman, Arthur Loiret,
Vincenzo Ampolo or whoever takes over the GDC project.

And I could still help with building new binaries, if
there's a new release (like GDC 0.25) in the future...

--anders
January 19, 2010
Anders F Bj�rklund Wrote:

> Steve Teale wrote:
> > The following produces a segfault with GDC - works OK with DMD on same machine. Where do I report it?
> 
> The official D Bugzilla does not accept GDC bugs any more: "Sorry, entering an issue into the product DGCC aka GDC has been disabled."
> 
> So most likely you report it to Ubuntu, or add it to the DGCC tracker at http://sourceforge.net/tracker/?group_id=154306, or this newsgroup.
> 
> FWIW it "works" on Mac OS X. (trunk-r229)
> 00407ff0
> 00407ff0
> 00407ff0
> in B
> 00407ff0
> 
> --anders
Hmm. I'd got the impression that activity on GDC had picked up again lately, so it would be good if there was some recognized place to report bugs. Simply reinstating D Bugzilla probably doesn't help. There has to be someone who looks there ;=(
January 19, 2010
Steve Teale wrote:
>> So most likely you report it to Ubuntu, or add it to the DGCC tracker
>> at http://sourceforge.net/tracker/?group_id=154306, or this newsgroup.

> Hmm. I'd got the impression that activity on GDC had picked up again
> lately, so it would be good if there was some recognized place to
> report bugs. Simply reinstating D Bugzilla probably doesn't help.
> There has to be someone who looks there ;=(

Seems to be a tracker at http://bitbucket.org/goshawk/gdc/issues/

--anders
January 20, 2010
Steve Teale wrote:

> The following produces a segfault with GDC - works OK with DMD on same machine. Where do I report it?

Hi,

Poste it here please: http://bitbucket.org/goshawk/gdc/issues/

But i don't guarantee that i can work on it ATM.
-- 
Vincenzo Ampolo (goshawk)

http://goshawknest.wordpress.com
January 20, 2010
Vincenzo Ampolo Wrote:

> Steve Teale wrote:
> 
> > The following produces a segfault with GDC - works OK with DMD on same machine. Where do I report it?
> 
> Hi,
> 
> Poste it here please: http://bitbucket.org/goshawk/gdc/issues/
> 
Oh! So you are goshawk. I have some questions about building GDC2, is it OK if I email you?

Thanks
Steve
> But i don't guarantee that i can work on it ATM.
> -- 
> Vincenzo Ampolo (goshawk)
> 
> http://goshawknest.wordpress.com

January 21, 2010
Steve Teale wrote:

> Oh! So you are goshawk. I have some questions about building GDC2, is
it
> OK if I email you?

of course

-- 
Vincenzo Ampolo (goshawk)

http://goshawknest.wordpress.com
January 21, 2010
>> The following produces a segfault with GDC - works OK with DMD on same machine. Where do I report it?

> FWIW it "works" on Mac OS X. (trunk-r229)
> 00407ff0
> 00407ff0
> 00407ff0
> in B
> 00407ff0

It also works with gdc-4.1, so it seems specific to the GCC 4.2 port ?

http://packages.ubuntu.com/search?keywords=gdc-4.1

--anders
« First   ‹ Prev
1 2