Jump to page: 1 24  
Page
Thread overview
dmd 2.065 beta 3
Feb 03, 2014
Andrew Edwards
Feb 03, 2014
Andrew Edwards
Feb 03, 2014
Tiberiu Gal
Feb 03, 2014
evilrat
Feb 05, 2014
Rainer Schuetze
Feb 09, 2014
Kapps
Feb 04, 2014
Brad Anderson
Feb 03, 2014
Andrew Edwards
Feb 03, 2014
Tiberiu Gal
Feb 03, 2014
Rory McGuire
Feb 03, 2014
Andrew Edwards
Feb 03, 2014
Rory McGuire
Feb 08, 2014
deadalnix
Feb 03, 2014
Walter Bright
Feb 03, 2014
Meta
Feb 03, 2014
Andrew Edwards
Feb 04, 2014
Meta
Feb 04, 2014
Martin Nowak
Feb 04, 2014
evilrat
Feb 04, 2014
Kapps
Feb 04, 2014
evilrat
Feb 04, 2014
Jordi Sayol
Feb 07, 2014
Don
Feb 07, 2014
Rory McGuire
Feb 07, 2014
Don
Feb 07, 2014
Walter Bright
Feb 07, 2014
Lionello Lunesu
Feb 07, 2014
Martin Nowak
Feb 07, 2014
Jordi Sayol
Feb 10, 2014
extrawurst
Feb 11, 2014
Martin Nowak
Feb 11, 2014
extrawurst
Feb 12, 2014
Sönke Ludwig
February 03, 2014
Following are the changes incorporated since beta 2:

DMD
    Issue 10133 - ICE for templated static conditional lambda
    Issue 11993 - typeof(this) in constraint of member function template should reflect method qualifier
    Issue 11447 - Closure provide bogus values
    Issue 12016 - implicit immutable upcast becomes null in CTFE
    Issue 12008 - alias this and "unable to resolve forward reference"
    Issue 12023 - template mixin fails within template class
    Issue 12037 - Link-failure with std.numeric.CustomFloat
    Issue 12038 - alias this and &this cause ICE
    Issue 12017 - DDoc leaves out the majority of documentation
    Issue 12040 - Compiler segfault with circular reference in variable type

Phobos
    Issue 12024 - template instantiation for swap(SysTime, SysTime) fails
    Issue 11973 - Please use any instead

Installer
    Pull 45 - add alternative download for dmd.${Version2}.zip
    Pull 52 - disable Audio and USB in VirtualBox
    Pull 51 - use lib64 for phobo64.lib and gcstub64.obj on Windows
    Pull 50 - only copy explicitly listed files from phobos
    Pull 49 - Improved build automation using Vagrant
    Pull 46 - fix deb copyright typo
    Pull 48 - Update deb/rpm to new dmd versioning scheme.


Binaries have been published:

All Systems
    http://ftp.digitalmars.com/dmd.2.065.0-b3.zip

FreeBSD
    http://ftp.digitalmars.com/dmd.2.065.0-b3.freebsd-32.zip
    http://ftp.digitalmars.com/dmd.2.065.0-b3.freebsd-64.zip

Linux
    http://ftp.digitalmars.com/dmd.2.065.0-b3.linux.zip
    http://ftp.digitalmars.com/dmd_2.065.0-b3-0_amd64.deb
    http://ftp.digitalmars.com/dmd_2.065.0-b3-0_i386.deb
    http://ftp.digitalmars.com/libphobos2-65_2.065.0-b3-0_amd64.deb
    http://ftp.digitalmars.com/libphobos2-65_2.065.0-b3-0_i386.deb
    http://ftp.digitalmars.com/dmd-2.065.0~b3-0.openSUSE.x86_64.rpm
    http://ftp.digitalmars.com/dmd-2.065.0~b3-0.fedora.x86_64.rpm
    http://ftp.digitalmars.com/dmd-2.065.0~b3-0.openSUSE.i386.rpm
    http://ftp.digitalmars.com/dmd-2.065.0~b3-0.fedora.i386.rpm

OSX
    http://ftp.digitalmars.com/dmd.2.065.0-b3.osx.zip
    http://ftp.digitalmars.com/dmd.2.065.0-b3.dmg

Windows
    http://ftp.digitalmars.com/dmd.2.065.0-b3.exe
    http://ftp.digitalmars.com/dmd.2.065.0-b3.windows.zip

The list of current regressions may be accessed here:

http://d.puremagic.com/issues/buglist.cgi?query_format=advanced&bug_severity=regression&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED

Regards,
Andrew
February 03, 2014
Windows users, please give the new installer a try. It has been updated to facilitate proper installation.
February 03, 2014
On Monday, 3 February 2014 at 18:37:20 UTC, Andrew Edwards wrote:
> Windows users, please give the new installer a try. It has been updated to facilitate proper installation.

http://ftp.digitalmars.com/dmd.2.065.0-b3.exe returns 404
February 03, 2014
On 2/3/14, 1:34 PM, Andrew Edwards wrote:
> Binaries have been published:
>
> Linux
>      http://ftp.digitalmars.com/libphobos2-65_2.065.0-b3-0_amd64.deb
>      http://ftp.digitalmars.com/libphobos2-65_2.065.0-b3-0_i386.deb

Should be:
http://ftp.digitalmars.com/libphobos2-65_2.065.0~b3-0_amd64.deb
http://ftp.digitalmars.com/libphobos2-65_2.065.0~b3-0_i386.deb

>
> Windows
>      http://ftp.digitalmars.com/dmd.2.065.0-b3.exe

Should be
http://ftp.digitalmars.com/dmd-2.065.0-b3.exe
February 03, 2014
On Monday, 3 February 2014 at 18:37:20 UTC, Andrew Edwards wrote:
> Windows users, please give the new installer a try. It has been updated to facilitate proper installation.

vc2013/win 8.1/winsdk 8.1
detects visual studio correctly, path to win sdk correctly.

has wrong path to mspdb120.dll, current:
PATH=%PATH%;%VCINSTALLDIR%\bin\x86_amd64;%VCINSTALLDIR%\..\Common7\IDE
should be:
PATH=%PATH%;%VCINSTALLDIR%\bin;%VCINSTALLDIR%\..\Common7\IDE

has no path to libs dir for sdk 8.1, should be:
; Platform libraries (Windows SDK 8.1)
LIB=%LIB%;"%WindowsSdkDir%\Lib\winv6.3\um\x64"

after these changes all seems to be working.
February 03, 2014
On Monday, 3 February 2014 at 18:47:46 UTC, Andrew Edwards wrote:
> On 2/3/14, 1:34 PM, Andrew Edwards wrote:
>> Binaries have been published:
>>
>> Linux
>>     http://ftp.digitalmars.com/libphobos2-65_2.065.0-b3-0_amd64.deb
>>     http://ftp.digitalmars.com/libphobos2-65_2.065.0-b3-0_i386.deb
>
> Should be:
> http://ftp.digitalmars.com/libphobos2-65_2.065.0~b3-0_amd64.deb
> http://ftp.digitalmars.com/libphobos2-65_2.065.0~b3-0_i386.deb
>
>>
>> Windows
>>     http://ftp.digitalmars.com/dmd.2.065.0-b3.exe
>
> Should be
> http://ftp.digitalmars.com/dmd-2.065.0-b3.exe

it works fine for me - using the default settings
February 03, 2014
    http://ftp.digitalmars.com/dmd_2.065.0-b3-0_amd64.deb is 404 for me.


On Mon, Feb 3, 2014 at 8:34 PM, Andrew Edwards <ridimz@yahoo.com> wrote:

> Following are the changes incorporated since beta 2:
>
> DMD
>     Issue 10133 - ICE for templated static conditional lambda
>     Issue 11993 - typeof(this) in constraint of member function template
> should reflect method qualifier
>     Issue 11447 - Closure provide bogus values
>     Issue 12016 - implicit immutable upcast becomes null in CTFE
>     Issue 12008 - alias this and "unable to resolve forward reference"
>     Issue 12023 - template mixin fails within template class
>     Issue 12037 - Link-failure with std.numeric.CustomFloat
>     Issue 12038 - alias this and &this cause ICE
>     Issue 12017 - DDoc leaves out the majority of documentation
>     Issue 12040 - Compiler segfault with circular reference in variable
> type
>
> Phobos
>     Issue 12024 - template instantiation for swap(SysTime, SysTime) fails
>     Issue 11973 - Please use any instead
>
> Installer
>     Pull 45 - add alternative download for dmd.${Version2}.zip
>     Pull 52 - disable Audio and USB in VirtualBox
>     Pull 51 - use lib64 for phobo64.lib and gcstub64.obj on Windows
>     Pull 50 - only copy explicitly listed files from phobos
>     Pull 49 - Improved build automation using Vagrant
>     Pull 46 - fix deb copyright typo
>     Pull 48 - Update deb/rpm to new dmd versioning scheme.
>
>
> Binaries have been published:
>
> All Systems
>     http://ftp.digitalmars.com/dmd.2.065.0-b3.zip
>
> FreeBSD
>     http://ftp.digitalmars.com/dmd.2.065.0-b3.freebsd-32.zip
>     http://ftp.digitalmars.com/dmd.2.065.0-b3.freebsd-64.zip
>
> Linux
>     http://ftp.digitalmars.com/dmd.2.065.0-b3.linux.zip
>     http://ftp.digitalmars.com/dmd_2.065.0-b3-0_amd64.deb
>     http://ftp.digitalmars.com/dmd_2.065.0-b3-0_i386.deb
>     http://ftp.digitalmars.com/libphobos2-65_2.065.0-b3-0_amd64.deb
>     http://ftp.digitalmars.com/libphobos2-65_2.065.0-b3-0_i386.deb
>     http://ftp.digitalmars.com/dmd-2.065.0~b3-0.openSUSE.x86_64.rpm
>     http://ftp.digitalmars.com/dmd-2.065.0~b3-0.fedora.x86_64.rpm
>     http://ftp.digitalmars.com/dmd-2.065.0~b3-0.openSUSE.i386.rpm
>     http://ftp.digitalmars.com/dmd-2.065.0~b3-0.fedora.i386.rpm
>
> OSX
>     http://ftp.digitalmars.com/dmd.2.065.0-b3.osx.zip
>     http://ftp.digitalmars.com/dmd.2.065.0-b3.dmg
>
> Windows
>     http://ftp.digitalmars.com/dmd.2.065.0-b3.exe
>     http://ftp.digitalmars.com/dmd.2.065.0-b3.windows.zip
>
> The list of current regressions may be accessed here:
>
> http://d.puremagic.com/issues/buglist.cgi?query_format= advanced&bug_severity=regression&bug_status=NEW&bug_ status=ASSIGNED&bug_status=REOPENED
>
> Regards,
> Andrew
>


February 03, 2014
On 2/3/14, 2:12 PM, Rory McGuire wrote:
> http://ftp.digitalmars.com/__dmd_2.065.0-b3-0_amd64.deb is 404 for me.

Linux
    http://ftp.digitalmars.com/dmd_2.065.0~b3-0_amd64.deb
    http://ftp.digitalmars.com/dmd_2.065.0~b3-0_i386.deb

February 03, 2014
Thanks, ahh! its the tilde.

Cheers,


On Mon, Feb 3, 2014 at 9:20 PM, Andrew Edwards <ridimz@yahoo.com> wrote:

> On 2/3/14, 2:12 PM, Rory McGuire wrote:
>
>> http://ftp.digitalmars.com/__dmd_2.065.0-b3-0_amd64.deb is 404 for me.
>>
>
> Linux
>     http://ftp.digitalmars.com/dmd_2.065.0~b3-0_amd64.deb
>     http://ftp.digitalmars.com/dmd_2.065.0~b3-0_i386.deb
>
>


February 03, 2014
On 2/3/2014 10:34 AM, Andrew Edwards wrote:
> Following are the changes incorporated since beta 2:

Thank you!

« First   ‹ Prev
1 2 3 4