www.digitalmars.com         C & C++   DMDScript  

D.gnu - Where to post bug report for Ubuntu GDC package

reply Steve Teale <steve.teale britseyeview.com> writes:
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");
}
Jan 18 2010
next sibling parent reply =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= <afb algonet.se> writes:
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
Jan 18 2010
next sibling parent reply Brad Roberts <braddr puremagic.com> writes:
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.
Jan 19 2010
parent =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= <afb algonet.se> writes:
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
Jan 19 2010
prev sibling next sibling parent reply Steve Teale <steve.teale britseyeview.com> writes:
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 ;=(
Jan 19 2010
parent =?UTF-8?B?QW5kZXJzIEYgQmrDtnJrbHVuZA==?= <afb algonet.se> writes:
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
Jan 19 2010
prev sibling parent reply =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= <afb algonet.se> writes:
 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
Jan 20 2010
next sibling parent Steve Teale <steve.teale britseyeview.com> writes:
Anders F Bj�rklund Wrote:

 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
Yup, so I've backtracked to make progress on what I was doing - thanks!
Jan 21 2010
prev sibling parent reply Steve Teale <steve.teale britseyeview.com> writes:
Anders F Bj�rklund Wrote:

 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
BTW, what character set do you have selected on your browser - I've tried various on mine, but I can't get your name to render correctly.
Jan 21 2010
parent reply =?UTF-8?B?QW5kZXJzIEYgQmrDtsKacmtsdW5k?= <afb algonet.se> writes:
Steve Teale wrote:
 BTW, what character set do you have selected on your browser - I've tried
various on mine, but I can't get your name to render correctly.
Either ISO-8859-1 (Latin-1) or UTF-8 (Unicode)... Or when using HTML, one can use the &ouml; entity. And sometimes I just give up and use Bjorklund... (easier than getting your flight/purchase delayed) --anders
Jan 21 2010
parent Steve Teale <steve.teale britseyeview.com> writes:
Anders F Bjöšrklund Wrote:

 Steve Teale wrote:
 BTW, what character set do you have selected on your browser - I've tried
various on mine, but I can't get your name to render correctly.
Either ISO-8859-1 (Latin-1) or UTF-8 (Unicode)... Or when using HTML, one can use the &ouml; entity. And sometimes I just give up and use Bjorklund... (easier than getting your flight/purchase delayed) --anders
Seems like you are doomed - your name on this last post was even worse! Sorry, not getting at you - let it be. Steve
Jan 21 2010
prev sibling parent reply Vincenzo Ampolo <vincenzo.ampolo gmail.com> writes:
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
Jan 19 2010
parent reply Steve Teale <steve.teale britseyeview.com> writes:
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
Jan 20 2010
parent Vincenzo Ampolo <vincenzo.ampolo gmail.com> writes:
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
Jan 20 2010