digitalmars.D.announce - D 2.067.1
- Martin Nowak (4/4) Apr 26 2015 We're glad to announce dmd 2.067.1 which includes several regression and
- Dicebot (5/5) Apr 26 2015 Side note : when updating Arch package to 2.067.1 I decided to
- Martin Nowak (10/15) Apr 27 2015 Yes, that doesn't work reliably because -lcurl is inserted before
- Dicebot (3/18) Apr 27 2015 Ok, I wasn't able to trigger it on my system but reverted the
- Robert burner Schadek (1/1) Apr 27 2015 awesome job
- extrawurst (3/9) May 03 2015 travis-ci still uses "DMD64 D Compiler v2.067.0" on default and
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
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
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
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:Ok, I wasn't able to trigger it on my system but reverted the change anyway :) Better be safe.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
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