www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.announce - D 2.067.1

reply Martin Nowak <code+news.digitalmars dawg.eu> writes:
We're glad to announce dmd 2.067.1 which includes several regression and
bug fixes over 2.067.0.



Please report any bug you encounter at https://issues.dlang.org/.
Apr 26 2015
next sibling parent reply "Dicebot" <public dicebot.lv> writes:
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 ;)
Apr 26 2015
parent reply "Martin Nowak" <code dawg.eu> writes:
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.
Apr 27 2015
parent "Dicebot" <public dicebot.lv> writes:
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.
Apr 27 2015
prev sibling next sibling parent "Robert burner Schadek" <rburners gmail.com> writes:
awesome job
Apr 27 2015
prev sibling parent "extrawurst" <stephan extrawurst.org> writes:
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.



 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 ?
May 03 2015