|
Archives
D Programming
digitalmars.Ddigitalmars.D.bugs digitalmars.D.dtl digitalmars.D.ide digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger D.gnu D C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript electronics |
D.gnu - Where to post bug report for Ubuntu GDC package
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
Steve Teale wrote:The following produces a segfault with GDC - works OK with DMD on same machine. Where do I report it? Jan 18 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? Jan 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." Jan 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? Jan 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. Jan 19 2010
The following produces a segfault with GDC - works OK with DMD on same machine. Where do I report it? Jan 20 2010
Anders F Bj�rklund Wrote:The following produces a segfault with GDC - works OK with DMD on same machine. Where do I report it? Jan 21 2010
Anders F Bj�rklund Wrote:The following produces a segfault with GDC - works OK with DMD on same machine. Where do I report it? Jan 21 2010
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. Jan 21 2010
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. Jan 21 2010
Steve Teale wrote:The following produces a segfault with GDC - works OK with DMD on same machine. Where do I report it? Jan 19 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? Jan 20 2010
Steve Teale wrote:Oh! So you are goshawk. I have some questions about building GDC2, is Jan 20 2010
|