Re: How to setup GDC with Visual D?

2015-07-06 Thread Guy Gervais via Digitalmars-d-learn
On Sunday, 5 July 2015 at 19:50:41 UTC, Johannes Pfau wrote: GDC uses a slightly older phobos version. It seems quite some imports changed in the last phobos version. You need to import std.algorithm and your code should work with gdc: http://goo.gl/l4zKki Thanks. Turns out my imports are

Re: How to setup GDC with Visual D?

2015-07-05 Thread Johannes Pfau via Digitalmars-d-learn
Am Sat, 04 Jul 2015 11:15:57 + schrieb Guy Gervais ggerv...@videotron.ca: On Saturday, 4 July 2015 at 08:34:00 UTC, Johannes Pfau wrote: It's kinda fascinating that GDC/MinGW seems to work for some real world applications. I haven't really tried a real world application as of yet;

Re: How to setup GDC with Visual D?

2015-07-04 Thread Johannes Pfau via Digitalmars-d-learn
Am Sat, 04 Jul 2015 06:30:31 + schrieb Marko Grdinic mra...@gmail.com: On Friday, 3 July 2015 at 23:45:15 UTC, Guy Gervais wrote: On Friday, 3 July 2015 at 19:17:28 UTC, Marko Grdinic wrote: Any advice regarding how I can get this to work? Thanks. I got GDC to work with VS2013 +

Re: How to setup GDC with Visual D?

2015-07-04 Thread Marko Grdinic via Digitalmars-d-learn
On Friday, 3 July 2015 at 23:45:15 UTC, Guy Gervais wrote: On Friday, 3 July 2015 at 19:17:28 UTC, Marko Grdinic wrote: Any advice regarding how I can get this to work? Thanks. I got GDC to work with VS2013 + VisualD by going into Tools-Options (The VS menu, not the one under Visual D) and

Re: How to setup GDC with Visual D?

2015-07-04 Thread Guy Gervais via Digitalmars-d-learn
On Saturday, 4 July 2015 at 08:34:00 UTC, Johannes Pfau wrote: It's kinda fascinating that GDC/MinGW seems to work for some real world applications. I haven't really tried a real world application as of yet; mostly small puzzle-type problems to get a feel for D. I did run into a problem

Re: How to setup GDC with Visual D?

2015-07-03 Thread Nicholas Wilson via Digitalmars-d-learn
On Friday, 3 July 2015 at 23:45:15 UTC, Guy Gervais wrote: On Friday, 3 July 2015 at 19:17:28 UTC, Marko Grdinic wrote: Any advice regarding how I can get this to work? Thanks. I got GDC to work with VS2013 + VisualD by going into Tools-Options (The VS menu, not the one under Visual D) and

Re: How to setup GDC with Visual D?

2015-07-03 Thread Guy Gervais via Digitalmars-d-learn
On Friday, 3 July 2015 at 19:17:28 UTC, Marko Grdinic wrote: Any advice regarding how I can get this to work? Thanks. I got GDC to work with VS2013 + VisualD by going into Tools-Options (The VS menu, not the one under Visual D) and adding the paths under Projects and Solutions - Visual D

How to setup GDC with Visual D?

2015-07-03 Thread Marko Grdinic via Digitalmars-d-learn
DMC works fine, but when I try to compile using GDC it seems it can't find the compiler: Building Release GDC x64\ConsoleApp1.exe... failed launching gdc -m64 -O3 -frelease -fXf=Release GDC x64\ConsoleApp1.json -fdeps=Release GDC x64\ConsoleApp1.dep -o Release GDC x64\ConsoleApp1.exe main.d

Re: How to setup GDC with Visual D?

2015-07-03 Thread rsw0x via Digitalmars-d-learn
On Friday, 3 July 2015 at 19:17:28 UTC, Marko Grdinic wrote: [...] Have you tried using LDC? I'm unsure of GDC's support on Windows. LDC is D's LLVM compiler, and GDC/LDC generally produce binaries with similar performance. You can find a download link here: