Re: D/Objective-C 64bit

2014-11-17 Thread Jacob Carlborg via Digitalmars-d-announce
On 2014-11-16 12:16, Christian Schneider wrote: I am just stumbling over adding class objects to an array: I get an error when trying to add class objects to an NSArray because e.g. NSString.class does not conform to ObjcObject. There is some functions in the API that require arrays of class

Re: Blog Post - Reducing vibe.d turnaround time (Part 1 Faster Linking)

2014-11-17 Thread Martin Nowak via Digitalmars-d-announce
On 11/01/2014 10:02 PM, Nordlöw wrote: Could you add a reference on how to DUB-build a library as dynamic instead of static library to easy the process for newcomers? Not really, as I said in the article. Shared libraries are still a bit cumbersome to use with dub though. Basically I just

Blog Post - Reducing vibe.d turnaround time (Part 2 Less Compiling)

2014-11-17 Thread Martin Nowak via Digitalmars-d-announce
Second part on my series to reduce vibe.d turnaround time. In this part we'll reduce compilation time by 60%. https://code.dawg.eu/reducing-vibed-turnaround-time-part-2-less-compiling.html -Martin

Re: Blog Post - Reducing vibe.d turnaround time (Part 2 Less Compiling)

2014-11-17 Thread Vladimir Panteleev via Digitalmars-d-announce
On Tuesday, 18 November 2014 at 00:41:42 UTC, Martin Nowak wrote: Second part on my series to reduce vibe.d turnaround time. In this part we'll reduce compilation time by 60%. https://code.dawg.eu/reducing-vibed-turnaround-time-part-2-less-compiling.html From the post: I converted the

Re: Blog Post - Reducing vibe.d turnaround time (Part 2 Less Compiling)

2014-11-17 Thread Martin Nowak via Digitalmars-d-announce
On Tuesday, 18 November 2014 at 00:55:31 UTC, Vladimir Panteleev wrote: On Tuesday, 18 November 2014 at 00:41:42 UTC, Martin Nowak wrote: Second part on my series to reduce vibe.d turnaround time. In this part we'll reduce compilation time by 60%.