Re: D runtime in os x dylib

2012-06-28 Thread John Colvin
On Wednesday, 27 June 2012 at 10:15:37 UTC, Jacob Carlborg wrote: On 2012-06-27 02:35, John Colvin wrote: On Tuesday, 26 June 2012 at 18:31:34 UTC, John Colvin wrote: On Monday, 25 June 2012 at 18:55:22 UTC, Jacob Carlborg wrote: Are you using the latest sources of DMD? Yes I am. sorry, m

Re: D runtime in os x dylib

2012-06-27 Thread Jacob Carlborg
On 2012-06-27 02:35, John Colvin wrote: On Tuesday, 26 June 2012 at 18:31:34 UTC, John Colvin wrote: On Monday, 25 June 2012 at 18:55:22 UTC, Jacob Carlborg wrote: Are you using the latest sources of DMD? Yes I am. sorry, my mistake, i replaced the wrong dmd file. It compiles fine with the

Re: D runtime in os x dylib

2012-06-26 Thread John Colvin
On Tuesday, 26 June 2012 at 18:31:34 UTC, John Colvin wrote: On Monday, 25 June 2012 at 18:55:22 UTC, Jacob Carlborg wrote: Are you using the latest sources of DMD? Yes I am. sorry, my mistake, i replaced the wrong dmd file. It compiles fine with the up to date dmd.

Re: D runtime in os x dylib

2012-06-26 Thread John Colvin
On Monday, 25 June 2012 at 18:55:22 UTC, Jacob Carlborg wrote: Are you using the latest sources of DMD? Yes I am.

Re: D runtime in os x dylib

2012-06-25 Thread Martin Nowak
On Mon, 25 Jun 2012 14:17:01 +0200, Jacob Carlborg wrote: On 2012-06-24 16:39, John Colvin wrote: Hmm, nothing in the last 3 months. Looks like i may have to abandon os x for development at least for the near future. I'm not entirely sure but maybe you're having this problem: http://d.purem

Re: D runtime in os x dylib

2012-06-25 Thread Jacob Carlborg
On 2012-06-25 18:26, John Colvin wrote: On Monday, 25 June 2012 at 12:17:03 UTC, Jacob Carlborg wrote: On 2012-06-24 16:39, John Colvin wrote: Hmm, nothing in the last 3 months. Looks like i may have to abandon os x for development at least for the near future. I'm not entirely sure but maybe

Re: D runtime in os x dylib

2012-06-25 Thread John Colvin
On Monday, 25 June 2012 at 12:17:03 UTC, Jacob Carlborg wrote: On 2012-06-24 16:39, John Colvin wrote: Hmm, nothing in the last 3 months. Looks like i may have to abandon os x for development at least for the near future. I'm not entirely sure but maybe you're having this problem: http://d.p

Re: D runtime in os x dylib

2012-06-25 Thread Jacob Carlborg
On 2012-06-24 16:39, John Colvin wrote: Hmm, nothing in the last 3 months. Looks like i may have to abandon os x for development at least for the near future. I'm not entirely sure but maybe you're having this problem: http://d.puremagic.com/issues/show_bug.cgi?id=7995 Pull the latest source

Re: D runtime in os x dylib

2012-06-24 Thread John Colvin
Hmm, nothing in the last 3 months. Looks like i may have to abandon os x for development at least for the near future. On Sunday, 24 June 2012 at 12:41:15 UTC, Jacob Carlborg wrote: On 2012-06-24 13:47, John Colvin wrote: I see that now, managed to dig up some old bug reports and threads. Is

Re: D runtime in os x dylib

2012-06-24 Thread Jacob Carlborg
On 2012-06-24 13:47, John Colvin wrote: I see that now, managed to dig up some old bug reports and threads. Is there any timeframe for this or is it on the back burner so to speak? I'm not sure of the time frame for this but Martin Nowak is working on this: https://github.com/dawgfoto/druntim

Re: D runtime in os x dylib

2012-06-24 Thread John Colvin
On Sunday, 24 June 2012 at 09:59:18 UTC, Jacob Carlborg wrote: On 2012-06-23 22:54, John Colvin wrote: There seems to be a problem with starting the d runtime in a d dylib loaded in a c program. Whenever I call Runtime.initialize() i get a segfault. Dynamic libraries aren't properly working

Re: D runtime in os x dylib

2012-06-24 Thread Jacob Carlborg
On 2012-06-23 22:54, John Colvin wrote: There seems to be a problem with starting the d runtime in a d dylib loaded in a c program. Whenever I call Runtime.initialize() i get a segfault. Dynamic libraries aren't properly working yet. It's being worked on. -- /Jacob Carlborg

D runtime in os x dylib

2012-06-23 Thread John Colvin
There seems to be a problem with starting the d runtime in a d dylib loaded in a c program. Whenever I call Runtime.initialize() i get a segfault. C code: #include #include int main() { void *library; int (*fptr)(); library = dlopen("testlib.dylib", RTLD_