April 08, 2005
Ouch. Looks as if there's no "make theReleaseZip" target at Digital Mars?

Walter wrote:
> Stupidly, I seem to have put the wrong libphobos.a into the zip file. I'll
> fix it. -Walter
> 
> "Dawid Ciê¿arkiewicz" <arael@fov.pl> wrote in message
> news:d34bt0$qam$1@digitaldaemon.com...
> 
>>FILE: main.d
>>---START---
>>import std.socketstream;
>>
>>int main(){
>>    return 0;
>>}
>>---END---
>>
>>$ dmd *.d
>>gcc main.o -o main -lphobos -lpthread -lm
>>/usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../../libphobos.a(socketstream.o
>>(.rodata+0x180): undefined reference to `_D3std6stream6Stream6writefFYv'
>>/usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../../libphobos.a(socketstream.o
>>(.rodata+0x184): undefined reference to `_D3std6stream6Stream8writeflnFYv'
>>/usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../../libphobos.a(socketstream.o
>>(.rodata+0x18c): undefined reference to
>>`_D3std6stream6Stream8copyFromFC3std6stream6StreamkZv'
>>collect2: ld returned 1 exit status
>>--- errorlevel 1
>>
>>Anybody got this problem too?
>>-- 
>>Dawid Ciê¿arkiewicz | arael
>>jid: arael@fov.pl
> 
> 
> 
April 08, 2005
>>I'm not inside the wall. The digitalmars.com server is in another state!
> 
> Our company's main servers are 600 miles away, but I'm still inside the
> company's firewall.

My server is 2 feet away, and I'm outside the firewall. :-)
April 08, 2005
Walter wrote:
> Focus is on fixing compiler issues.
> 
> http://www.digitalmars.com/d/changelog.html

"Fixed bit array append."

Could you please supply an example of this working?  My simplest testcases still fail just as miserably.

Stewart.

-- 
My e-mail is valid but not my primary mailbox.  Please keep replies on the 'group where everyone may benefit.
April 08, 2005
Walter wrote:
> Focus is on fixing compiler issues.
> 
> http://www.digitalmars.com/d/changelog.html

Please see also

http://www.digitalmars.com/drn-bin/wwwnews?digitalmars.D.bugs/3170

et seq. if you haven't already.

Stewart.

-- 
My e-mail is valid but not my primary mailbox.  Please keep replies on the 'group where everyone may benefit.
April 08, 2005
"Georg Wrede" <georg.wrede@nospam.org> wrote in message news:425641F9.3020409@nospam.org...
> Ouch. Looks as if there's no "make theReleaseZip" target at Digital Mars?

There is. I just have to collect files from multiple machines <g>.


April 08, 2005
"Stewart Gordon" <smjg_1998@yahoo.com> wrote in message news:d35ho9$206h$1@digitaldaemon.com...
> Walter wrote:
> > Focus is on fixing compiler issues.
> >
> > http://www.digitalmars.com/d/changelog.html
>
> "Fixed bit array append."
>
> Could you please supply an example of this working?  My simplest testcases still fail just as miserably.

Can you point me to the message(s) with your test cases in it? Also, are you using linux? If so, try the 0.120.2 with the updated libphobos.a. -Walter


April 08, 2005
Walter wrote:
> "Stewart Gordon" <smjg_1998@yahoo.com> wrote in message
> news:d35ho9$206h$1@digitaldaemon.com...
> 
>> Walter wrote:
>> 
>>> Focus is on fixing compiler issues.
>>> 
>>> http://www.digitalmars.com/d/changelog.html
>> 
>> "Fixed bit array append."
>> 
>> Could you please supply an example of this working?  My simplest testcases still fail just as miserably.
> 
> Can you point me to the message(s) with your test cases in it?

I thought I'd posted a testcase here before, but apparently not.

Just try something like

----------
void main() {
    bit[] a = [ 1, 1, 0, 1, 0 ];
    bit[] b = [ 1, 0, 0, 1 ];
    bit[] c = a ~ b;

    c ~= a;
    c ~= 0;
    c ~= 1;
}
----------

with some code to display the result after each modification.  (This is just a quick hack - my usual testcase is at home with my DMD installation....)

> Also, are you using linux? If so, try the 0.120.2 with the updated
> libphobos.a. -Walter

No.  I do my stuff in Windows.

Stewart.

-- 
My e-mail is valid but not my primary mailbox.  Please keep replies on the 'group where everyone may benefit.
April 08, 2005
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Stewart Gordon schrieb am Fri, 08 Apr 2005 18:47:28 +0100:
> Walter wrote:
>> "Stewart Gordon" <smjg_1998@yahoo.com> wrote in message news:d35ho9$206h$1@digitaldaemon.com...
>> 
>>> Walter wrote:
>>> 
>>>> Focus is on fixing compiler issues.
>>>> 
>>>> http://www.digitalmars.com/d/changelog.html
>>> 
>>> "Fixed bit array append."
>>> 
>>> Could you please supply an example of this working?  My simplest testcases still fail just as miserably.
>> 
>> Can you point me to the message(s) with your test cases in it?
>
> I thought I'd posted a testcase here before, but apparently not.
>
> Just try something like
>
> ----------
> void main() {
>      bit[] a = [ 1, 1, 0, 1, 0 ];
>      bit[] b = [ 1, 0, 0, 1 ];
>      bit[] c = a ~ b;
>
>      c ~= a;
>      c ~= 0;
>      c ~= 1;
> }
> ----------
>
> with some code to display the result after each modification.  (This is just a quick hack - my usual testcase is at home with my DMD installation....)

Added to DStress as
http://dstress.kuehne.cn/run/opCat_04.d
http://dstress.kuehne.cn/run/opCat_05.d
http://dstress.kuehne.cn/run/opCat_06.d
http://dstress.kuehne.cn/run/opCatAssign_14.d

fails allready at compile time:
# static bit[] a = [true, false];
# bit[] b = a~true;

Thomas


-----BEGIN PGP SIGNATURE-----

iD4DBQFCVtPv3w+/yD4P9tIRAiMHAJ4wO6YHkCOeGFq85vgpf6JG3DcxwACYzbA7
eThLZdtV7CZ+xHpLDRKz5g==
=Xe+b
-----END PGP SIGNATURE-----
April 09, 2005
"Stewart Gordon" <smjg_1998@yahoo.com> wrote in message news:d36g3g$31ec$1@digitaldaemon.com...
> I thought I'd posted a testcase here before, but apparently not.
>
> Just try something like

You're right. I have it fixed now. Thanks, -Walter


April 11, 2005
Thomas Kuehne wrote:
<snip>
> Added to DStress as
> http://dstress.kuehne.cn/run/opCat_04.d
<snip>

	assert(c[6]==0);
	assert(c[6]==0);
	assert(c[8]==1);

Typo?

Stewart.

-- 
My e-mail is valid but not my primary mailbox.  Please keep replies on the 'group where everyone may benefit.
1 2 3 4
Next ›   Last »