Thread overview
D 2.067.1
Apr 26, 2015
Martin Nowak
Apr 26, 2015
Dicebot
Apr 27, 2015
Martin Nowak
Apr 27, 2015
Dicebot
May 03, 2015
extrawurst
April 26, 2015
We're glad to announce dmd 2.067.1 which includes several regression and bug fixes over 2.067.0.

http://dlang.org/changelog.html#2.067.1

Please report any bug you encounter at https://issues.dlang.org/.
April 26, 2015
Side note : when updating Arch package to 2.067.1 I decided to add `-L-lcurl` option to default `dmd.conf` in context of recent discussion on topic. Please report if that causes any issues with link order bugs - I couldn't trigger any but there are wild talse running around that those exist ;)
April 27, 2015
On Sunday, 26 April 2015 at 22:05:36 UTC, Dicebot wrote:
> Side note : when updating Arch package to 2.067.1 I decided to add `-L-lcurl` option to default `dmd.conf` in context of recent discussion on topic. Please report if that causes any issues with link order bugs - I couldn't trigger any but there are wild talse running around that those exist ;)

Yes, that doesn't work reliably because -lcurl is inserted before -lphobos on the link command, but phobos depends on curl, not your application which can lead to link errors if your applications doesn't drag in the relevant symbols from curl itself.

http://stackoverflow.com/questions/10095150/std-net-curl-linker-errors-in-linux

I have a pending pull to dynamically load curl, needs a bit more work though.
https://github.com/D-Programming-Language/phobos/pull/3009.
April 27, 2015
awesome job

April 27, 2015
On Monday, 27 April 2015 at 07:38:52 UTC, Martin Nowak wrote:
> On Sunday, 26 April 2015 at 22:05:36 UTC, Dicebot wrote:
>> Side note : when updating Arch package to 2.067.1 I decided to add `-L-lcurl` option to default `dmd.conf` in context of recent discussion on topic. Please report if that causes any issues with link order bugs - I couldn't trigger any but there are wild talse running around that those exist ;)
>
> Yes, that doesn't work reliably because -lcurl is inserted before -lphobos on the link command, but phobos depends on curl, not your application which can lead to link errors if your applications doesn't drag in the relevant symbols from curl itself.
>
> http://stackoverflow.com/questions/10095150/std-net-curl-linker-errors-in-linux
>
> I have a pending pull to dynamically load curl, needs a bit more work though.
> https://github.com/D-Programming-Language/phobos/pull/3009.

Ok, I wasn't able to trigger it on my system but reverted the change anyway :) Better be safe.
May 03, 2015
On Sunday, 26 April 2015 at 17:53:07 UTC, Martin Nowak wrote:
> We're glad to announce dmd 2.067.1 which includes several regression and
> bug fixes over 2.067.0.
>
> http://dlang.org/changelog.html#2.067.1
>
> Please report any bug you encounter at https://issues.dlang.org/.

travis-ci still uses "DMD64 D Compiler v2.067.0" on default and not the latest. where can one submit a PR for this ?