Thread overview
Re: dmd 1.050 and 2.035 release
Oct 26, 2009
Pablo Ripolles
Oct 27, 2009
Walter Bright
Oct 27, 2009
Pablo Ripolles
Oct 27, 2009
Walter Bright
Oct 27, 2009
Pablo Ripolles
October 26, 2009
Walter Bright Wrote:

> The main purpose of this is to correct a couple of regressions that were blocking QtD and Tango.
> 
> http://www.digitalmars.com/d/1.0/changelog.html http://ftp.digitalmars.com/dmd.1.050.zip
> 
> 
> http://www.digitalmars.com/d/2.0/changelog.html http://ftp.digitalmars.com/dmd.2.035.zip
> 
> Many thanks to the numerous people who contributed to this update.

Can we expect this to work on Mac OS X version 10.5 still?

Thanks!

October 27, 2009
Pablo Ripolles wrote:
> Can we expect this to work on Mac OS X version 10.5 still?

Yes.
October 27, 2009
Walter Bright Wrote:

> Pablo Ripolles wrote:
> > Can we expect this to work on Mac OS X version 10.5 still?
> 
> Yes.

All right! however in MacOSX 1.5 I've observed the following which doesn't happens in linux:

I have a module named file.d and I have a main program named main.d. The module is being imported and it's functions used in the main program. I compile file.d and main.d separately (no linking). For the linking I do this:

dmd file.o main.o -ofmain

No problem in link time, however in run time it prompts "Bus error". It doesn't happen when I do:

dmd main.o file.o -ofmain

Is this expected for the OSX in general or only 10.5?

October 27, 2009
Pablo Ripolles wrote:
> Is this expected for the OSX in general or only 10.5?


It's not expected and I've never seen it. Please post a reproducible example to bugzilla.
October 27, 2009
Walter Bright Wrote:

> Pablo Ripolles wrote:
> > Is this expected for the OSX in general or only 10.5?
> 
> 
> It's not expected and I've never seen it. Please post a reproducible example to bugzilla.

I'll do that.

(BTW, sorry for my orthographical mistakes, I was quite tired...)