Re: NCI, undef and structures

2005-02-06 Thread Leopold Toetsch
Ron Blaschke <[EMAIL PROTECTED]> wrote: > I see. Does this morphing work as designed? Creating an array out of > an undef feels somewhat wrong. Yes and yes ;) A longer answer is: all operators currently need an existing LHS. The canonical way is: lhs = new Undef lhs = a b While we AFAIK

Pugs 6.0.0 released.

2005-02-06 Thread Autrijus Tang
(Sorry for the cross-posting; announcement of future releases will appear only on the perl6-compiler list.) Quite appropriately, on Day 6 of Pugs, I have released Pugs 6.0.0. It should be on a CPAN near you in a few hours, under the Perl6::Pugs namespace. You may install it from the CPAN shell j

Re: [perl #34072] parrot build fails on Linux PPC

2005-02-06 Thread chromatic
On Sun, 2005-02-06 at 10:40 -0800, Jeff Dik wrote: > So, I just commented out line 14 of jit/ppc/core.jit [patch attached], > recompiled, and ran "make fulltest". Only one test failed (test 5 of > t/dynclass/pyclass.t). I'm guessing that merely commenting that line > out is *not* The Right Way(T

[perl #34072] parrot build fails on Linux PPC

2005-02-06 Thread via RT
# New Ticket Created by Jeff Dik # Please include the string: [perl #34072] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=34072 > Hi, Parrot's been failing to build on my ibook without a little help. Here's the error: C

[perl #34073] [PATCH] fix 'make hello'

2005-02-06 Thread via RT
# New Ticket Created by Bernhard Schmalhofer # Please include the string: [perl #34073] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=34073 > Hi, this patch repairs the creation of executables from Parrot bytecode files.

Re: NCI, undef and structures

2005-02-06 Thread Ron Blaschke
Leopold Toetsch wrote: > Ron Blaschke <[EMAIL PROTECTED]> wrote: >> assign nci_dlvar_float, nci_dlvar_float_decl > This calls Undef::assign, which morphs the Undef to the RHS type. So the > Undef becomes an array and >> N2 = nci_dlvar_float[0] > this succeeds. I see. Does this morphing

Re: NCI, undef and structures

2005-02-06 Thread Leopold Toetsch
Ron Blaschke <[EMAIL PROTECTED]> wrote: > assign nci_dlvar_float, nci_dlvar_float_decl This calls Undef::assign, which morphs the Undef to the RHS type. So the Undef becomes an array and > N2 = nci_dlvar_float[0] this succeeds. leo

Re: [perl #34059] [PATCH][MSWin32] Add NCI test symbols

2005-02-06 Thread Leopold Toetsch
Ron Blaschke <[EMAIL PROTECTED]> wrote: > This patch adds all missing export symbols to libnci_test.dll that are > needed by t/pmc/nci.t. Thanks, applied. leo