Re: GDC 5.4.0 and 6.3.0 not available in Travis CI?

2017-03-19 Thread Jeremy DeHaan via D.gnu
On Sunday, 19 March 2017 at 12:55:15 UTC, Johannes Pfau wrote: Am Sun, 19 Mar 2017 06:04:35 + schrieb Jeremy DeHaan : I've updated a Travis CI script to test my project against the new 2.068.2 GDC versions, but 5.4.0 and 6.3.0 don't seem to be available. When Travis runs, I get a `Failed to

GDC 5.4.0 and 6.3.0 not available in Travis CI?

2017-03-18 Thread Jeremy DeHaan via D.gnu
I've updated a Travis CI script to test my project against the new 2.068.2 GDC versions, but 5.4.0 and 6.3.0 don't seem to be available. When Travis runs, I get a `Failed to download 'http://gdcproject.org/downloads/binaries/x86_64-linux-gnu/gdc-5.4.0.tar.xz'` error (or similar). Any idea what

Re: Crash when iterating over files with foreach and std.file.dirEntries on Windows?

2015-11-17 Thread Jeremy DeHaan via D.gnu
Just to reiterate, this happens with 32 bit gdc only. The 64 bit gdc works correctly for this.

Re: Crash when iterating over files with foreach and std.file.dirEntries on Windows?

2015-11-17 Thread Jeremy DeHaan via D.gnu
On Tuesday, 17 November 2015 at 05:25:27 UTC, Jeremy DeHaan wrote: On Monday, 16 November 2015 at 22:47:27 UTC, Vincent R wrote: On Monday, 16 November 2015 at 15:34:13 UTC, Jeremy DeHaan wrote: Should I file an issue in the bugzilla just in case? And if it makes you feel better, this is the fi

Re: Crash when iterating over files with foreach and std.file.dirEntries on Windows?

2015-11-16 Thread Jeremy DeHaan via D.gnu
On Monday, 16 November 2015 at 22:47:27 UTC, Vincent R wrote: On Monday, 16 November 2015 at 15:34:13 UTC, Jeremy DeHaan wrote: Should I file an issue in the bugzilla just in case? And if it makes you feel better, this is the first issue I've encountered with the MinGW builds. yes you should

Re: Crash when iterating over files with foreach and std.file.dirEntries on Windows?

2015-11-16 Thread Jeremy DeHaan via D.gnu
On Monday, 16 November 2015 at 09:31:22 UTC, Johannes Pfau wrote: Am Mon, 16 Nov 2015 03:08:39 + schrieb Jeremy DeHaan : I'm wondering if anyone has experienced a crash when using dirEntries to iterate over files. This is for the Windows 32 bits build of gdc from the gdc downloads page and

Crash when iterating over files with foreach and std.file.dirEntries on Windows?

2015-11-15 Thread Jeremy DeHaan via D.gnu
I'm wondering if anyone has experienced a crash when using dirEntries to iterate over files. This is for the Windows 32 bits build of gdc from the gdc downloads page and it happens for both the 5.2.0 and 4.9.3 gcc versions (I haven't tried any others). It works correctly for the 64 bit builds t

Re: Which version to use?

2015-09-27 Thread Jeremy DeHaan via D.gnu
On Sunday, 27 September 2015 at 06:03:00 UTC, Iain Buclaw wrote: The more 'common' thing to do nowadays is to hook your library into dub. No need to provide binaries of the library. Oh, I do both. This is just for the people that don't use dub.

Re: Which version to use?

2015-09-26 Thread Jeremy DeHaan via D.gnu
On Thursday, 24 September 2015 at 10:21:03 UTC, Johannes Pfau wrote: Am Thu, 24 Sep 2015 03:07:53 + schrieb Jeremy DeHaan : Thanks for the info. That was pretty much what I thought. BTW: Shipping prebuilt D libraries is uncommon. The main compilers (gdc/dmd/ldc) do not produce compatible

Which version to use?

2015-09-23 Thread Jeremy DeHaan via D.gnu
On (my version of) Linux, gdc has an official apt repository, but there also exists a download page with what appears to be a much more recent version of gdc. So..which one should I use? I'd like to have pre-built binaries for my library ready to go for users, but I'm not sure which one I shoul

Re: DMD and GDC static libraries are incompatible on Linux?

2015-02-18 Thread Jeremy DeHaan via D.gnu
On Monday, 9 February 2015 at 19:24:22 UTC, Iain Buclaw wrote: GDC and DMD are not ABI compatible. There are many reasons why this is so, but the one that is likely affecting you is because DMD emits references to symbols that do not exist in GDC's runtime library. Iain. I was thinking abo

Re: DMD and GDC static libraries are incompatible on Linux?

2015-02-09 Thread Jeremy DeHaan via D.gnu
On Monday, 9 February 2015 at 18:56:44 UTC, ketmar wrote: DMD is not using GCC, only 'ld' from binutils. so yes, this is normal. Oh, interesting. I didn't realize this. Thanks for the info, guys. I thought as much.

DMD and GDC static libraries are incompatible on Linux?

2015-02-09 Thread Jeremy DeHaan via D.gnu
I'm pretty sure I already know the answer to this, however I just wanted to ask to make sure. I was talking with someone the other day. They were using Linux and tried to link static libraries built with DMD during a build with GDC. I thought this would work due to both DMD and GDC using GCC