Jump to page: 1 24  
Page
Thread overview
[dmd-beta] dmd 2.051 beta
Dec 15, 2010
Walter Bright
Dec 15, 2010
Don Clugston
Dec 15, 2010
Sean Kelly
Dec 15, 2010
Walter Bright
Jan 02, 2011
Brad Roberts
Jan 15, 2011
Sean Kelly
Dec 16, 2010
Walter Bright
Dec 16, 2010
Walter Bright
Dec 15, 2010
Walter Bright
Dec 16, 2010
Walter Bright
Dec 15, 2010
Stephan Dilly
Dec 16, 2010
Walter Bright
Dec 16, 2010
Stephan Dilly
Dec 17, 2010
Stephan Dilly
Dec 17, 2010
Don Clugston
Dec 17, 2010
Don Clugston
Dec 17, 2010
Stephan Dilly
Dec 17, 2010
Stephan Dilly
Dec 18, 2010
Don Clugston
Dec 19, 2010
Walter Bright
Dec 19, 2010
Walter Bright
Dec 20, 2010
Walter Bright
Dec 20, 2010
Walter Bright
Dec 20, 2010
Stephan Dilly
Dec 20, 2010
Walter Bright
Dec 20, 2010
Stephan Dilly
Dec 20, 2010
Walter Bright
Dec 21, 2010
Don Clugston
Dec 21, 2010
Walter Bright
December 15, 2010
Tip from Brad got it working.

http://ftp.digitalmars.com/dmd2beta.zip
December 15, 2010
On 15 December 2010 10:38, Walter Bright <walter at digitalmars.com> wrote:
> Tip from Brad got it working.
>
> http://ftp.digitalmars.com/dmd2beta.zip

I found some minor issues with the ddoc for druntime. I've fixed them in svn. Also,  html/phobos/std_iterator.html should be deleted from the download.

These fixes only affect the documentation.
December 15, 2010
Without even running it, I noticed that the executable bits are not correctly set for Linux

-Steve



----- Original Message ----
> From: Walter Bright <walter at digitalmars.com>
> To: Discuss the dmd beta releases for D <dmd-beta at puremagic.com>
> Sent: Wed, December 15, 2010 4:38:07 AM
> Subject: [dmd-beta] dmd 2.051 beta
> 
> Tip from Brad got it  working.
> 
> http://ftp.digitalmars.com/dmd2beta.zip
> _______________________________________________
> dmd-beta  mailing list
> dmd-beta at puremagic.com
> http://lists.puremagic.com/mailman/listinfo/dmd-beta
> 



December 15, 2010
I have a fix for bug 5353, should I check it in or wait until beta is released?

-Steve



----- Original Message ----
> From: Walter Bright <walter at digitalmars.com>
> To: Discuss the dmd beta releases for D <dmd-beta at puremagic.com>
> Sent: Wed, December 15, 2010 4:38:07 AM
> Subject: [dmd-beta] dmd 2.051 beta
> 
> Tip from Brad got it  working.
> 
> http://ftp.digitalmars.com/dmd2beta.zip
> _______________________________________________
> dmd-beta  mailing list
> dmd-beta at puremagic.com
> http://lists.puremagic.com/mailman/listinfo/dmd-beta
> 



December 15, 2010
I'd love the fix to be part of the release. Walter?

Andrei

On 12/15/10 8:25 AM, Steve Schveighoffer wrote:
> I have a fix for bug 5353, should I check it in or wait until beta is released?
>
> -Steve
>
>
>
> ----- Original Message ----
>> From: Walter Bright<walter at digitalmars.com>
>> To: Discuss the dmd beta releases for D<dmd-beta at puremagic.com>
>> Sent: Wed, December 15, 2010 4:38:07 AM
>> Subject: [dmd-beta] dmd 2.051 beta
>>
>> Tip from Brad got it  working.
>>
>> http://ftp.digitalmars.com/dmd2beta.zip
>> _______________________________________________
>> dmd-beta  mailing list
>> dmd-beta at puremagic.com
>> http://lists.puremagic.com/mailman/listinfo/dmd-beta
>>
>
>
>
> _______________________________________________
> dmd-beta mailing list
> dmd-beta at puremagic.com
> http://lists.puremagic.com/mailman/listinfo/dmd-beta
December 15, 2010
On Dec 15, 2010, at 4:43 AM, Don Clugston wrote:

> On 15 December 2010 10:38, Walter Bright <walter at digitalmars.com> wrote:
>> Tip from Brad got it working.
>> 
>> http://ftp.digitalmars.com/dmd2beta.zip
> 
> I found some minor issues with the ddoc for druntime. I've fixed them in svn. Also,  html/phobos/std_iterator.html should be deleted from the download.
> 
> These fixes only affect the documentation.

Can you explain the change on line 172 of core.atomic?  Is that really correct?

December 15, 2010
This beta contains a regression in phobos i guess. The following code used to build up to 2.050 but stops working in the beta when compiled WITH "-noboundscheck -release -inline":

import std.string;

char* toCString(string _str)
{
  return cast(char*)toStringz(_str);
}

void main(){

  auto foo = toCString("fooo");
}

The compiler chokes:

\src\phobos\std\range.d(287): Error: static assert  "Cannot put a char[]
into a Appender!(string)"
\src\phobos\std\format.d(985):        instantiated from here:
put!(Appender!(string),char[])
\src\phobos\std\format.d(1579):        instantiated from here:
formatValue!(Appender!(string),uint,immutable(char))
\src\phobos\std\format.d(306):        instantiated from here:
formatGeneric!(Appender!(string),uint,immutable(char))
\src\phobos\std\process.d(339):        instantiated from here:
formattedWrite!(Appender!(string),immutable(char),uint)

Can this please be fixed b4 release, it is used throughout my whole codebase.

Regards,
Stephan


On 15.12.2010 10:38, Walter Bright wrote:
> Tip from Brad got it working.
>
> http://ftp.digitalmars.com/dmd2beta.zip
> _______________________________________________
> dmd-beta mailing list
> dmd-beta at puremagic.com
> http://lists.puremagic.com/mailman/listinfo/dmd-beta
>
December 15, 2010
might as well check it in

Andrei Alexandrescu wrote:
> I'd love the fix to be part of the release. Walter?
>
> Andrei
>
> On 12/15/10 8:25 AM, Steve Schveighoffer wrote:
>> I have a fix for bug 5353, should I check it in or wait until beta is released?
>>
>> -Steve
>>
>>
>>
>> ----- Original Message ----
>>> From: Walter Bright<walter at digitalmars.com>
>>> To: Discuss the dmd beta releases for D<dmd-beta at puremagic.com>
>>> Sent: Wed, December 15, 2010 4:38:07 AM
>>> Subject: [dmd-beta] dmd 2.051 beta
>>>
>>> Tip from Brad got it  working.
>>>
>>> http://ftp.digitalmars.com/dmd2beta.zip
>>> _______________________________________________
>>> dmd-beta  mailing list
>>> dmd-beta at puremagic.com
>>> http://lists.puremagic.com/mailman/listinfo/dmd-beta
>>>
>>
>>
>>
>> _______________________________________________
>> dmd-beta mailing list
>> dmd-beta at puremagic.com
>> http://lists.puremagic.com/mailman/listinfo/dmd-beta
> _______________________________________________
> dmd-beta mailing list
> dmd-beta at puremagic.com
> http://lists.puremagic.com/mailman/listinfo/dmd-beta
>
>
December 15, 2010

Sean Kelly wrote:
> On Dec 15, 2010, at 4:43 AM, Don Clugston wrote:
>
> 
>> On 15 December 2010 10:38, Walter Bright <walter at digitalmars.com> wrote:
>> 
>>> Tip from Brad got it working.
>>>
>>> http://ftp.digitalmars.com/dmd2beta.zip
>>> 
>> I found some minor issues with the ddoc for druntime. I've fixed them in svn. Also,  html/phobos/std_iterator.html should be deleted from the download.
>>
>> These fixes only affect the documentation.
>> 
>
> Can you explain the change on line 172 of core.atomic?  Is that really correct?
>
>
> 

Looks like a typo. I'll fix.
December 15, 2010
All set: http://www.dsource.org/projects/druntime/changeset/451

-Steve



----- Original Message ----
> From: Walter Bright <walter at digitalmars.com>
> To: Discuss the dmd beta releases for D <dmd-beta at puremagic.com>
> Sent: Wed, December 15, 2010 2:23:25 PM
> Subject: Re: [dmd-beta] dmd 2.051 beta
> 
> might as well check it in
> 
> Andrei Alexandrescu wrote:
> > I'd love the  fix to be part of the release. Walter?
> >
> > Andrei
> >
> > On  12/15/10 8:25 AM, Steve Schveighoffer wrote:
> >> I have a fix for bug  5353, should I check it in or wait until beta is
> >>  released?
> >>
> >>  -Steve
> >>
> >>
> >>
> >> ----- Original Message  ----
> >>> From: Walter Bright<walter at digitalmars.com>
> >>>  To: Discuss the dmd beta releases for D<dmd-beta at puremagic.com>
> >>>  Sent: Wed, December 15, 2010 4:38:07 AM
> >>> Subject: [dmd-beta] dmd  2.051 beta
> >>>
> >>> Tip from Brad got it   working.
> >>>
> >>>  http://ftp.digitalmars.com/dmd2beta.zip
> >>>  _______________________________________________
> >>> dmd-beta   mailing list
> >>> dmd-beta at puremagic.com
> >>>  http://lists.puremagic.com/mailman/listinfo/dmd-beta
> >>>
> >>
> >>
> >>
> >>  _______________________________________________
> >> dmd-beta mailing  list
> >> dmd-beta at puremagic.com
> >> http://lists.puremagic.com/mailman/listinfo/dmd-beta
> >  _______________________________________________
> > dmd-beta mailing  list
> > dmd-beta at puremagic.com
> > http://lists.puremagic.com/mailman/listinfo/dmd-beta
> >
> >
> _______________________________________________
> dmd-beta  mailing list
> dmd-beta at puremagic.com
> http://lists.puremagic.com/mailman/listinfo/dmd-beta
> 



« First   ‹ Prev
1 2 3 4