Re: [perl #55164] [BUG] segmentation fault in rakudo's test

2008-06-02 Thread Moritz Lenz
Will Coleda via RT wrote: > On Sun Jun 01 11:06:10 2008, [EMAIL PROTECTED] wrote: >> Hi, >> >> parrot + perl6 as of r28017 segfault for me while running >> t/spec/S29-array/push.rakudo. >> Attached is a reduced test case that produces an assertion failure with >> --runcore=gcdebug: >> >> $ ../../

Re: Parrot Blogs

2008-06-02 Thread Will Coleda
On Wed, Mar 5, 2008 at 9:31 PM, James E Keenan <[EMAIL PROTECTED]> wrote: > From #parrotsketch yesterday, I learned of the existence of > http://www.parrotblog.org/. I also learned (or, perhaps, re-learned) of the > existence of http://planet.parrotcode.org/. > > What are the purpose and intended

[perl #54148] [NEW] Add tools/util/dump-pbc.pl (weave PIR source and PBC disassembly)

2008-06-02 Thread Will Coleda via RT
On Mon Jun 02 13:19:16 2008, bernhard wrote: > > > > > The previous version of the patch didn't work on Windows, because pipe > > open doesn't work there, grrr. Please try the attached version of the > > patch. > > > > It looks like the current version of the patch has been applied. > In r28

[perl #55040] [TODO] Remove hcf opcode

2008-06-02 Thread Will Coleda via RT
On Sun Jun 01 01:33:10 2008, [EMAIL PROTECTED] wrote: > On Thursday 29 May 2008 06:21:03 Will Coleda wrote: > > > While this may have served a pedagogical purpose some time ago*, > it's > > better left in the docs as an example of what not to do (and that > even > > if core parrot is safe, we need

Re: [perl #54372] fresh co of parrot trunk has many failures on win32/msvc

2008-06-02 Thread Will Coleda
On Mon, Jun 2, 2008 at 11:38 PM, chromatic <[EMAIL PROTECTED]> wrote: > On Monday 02 June 2008 20:25:28 Will Coleda via RT wrote: > >> And these are at least in part covered by other tickets (esp. the ones >> referring to -0). We should separate out the remaining ones listed here >> (assuming you a

Re: [perl #54868] [PATCH] [OpenGL] Autogen sigs/funcs; Win32/MSVC support; make clean; docs

2008-06-02 Thread Will Coleda
On Fri, May 30, 2008 at 6:46 PM, Geoffrey Broadwell <[EMAIL PROTECTED]> wrote: > On Fri, 2008-05-30 at 15:01 -0700, Geoffrey Broadwell wrote: >> The most recent version of the patch got sent to the wrong mail alias; >> I've reattached it below. > > ... And now regenerated, because I've broken out a

Re: [perl #54372] fresh co of parrot trunk has many failures on win32/msvc

2008-06-02 Thread chromatic
On Monday 02 June 2008 20:25:28 Will Coleda via RT wrote: > And these are at least in part covered by other tickets (esp. the ones > referring to -0). We should separate out the remaining ones listed here > (assuming you agree with the list). (and I just fixed the trailing space > error, so discou

[perl #53394] [BUG] Divide-by-zero error in test on Windows

2008-06-02 Thread Will Coleda via RT
On Sat Apr 26 13:54:01 2008, ajr wrote: > > On Windows XP Home Edition, using gcc, the following test error is > occurring: > > Divide by zero^M > current instr.: 'life' pc 175 (examples\pir\life.pir:102) > I am unable to duplicate this error. Can you provide more information about your config

Re: [perl #54562] [TODO] DEVELOPING should stop lagging reality

2008-06-02 Thread chromatic
On Monday 02 June 2008 20:05:22 Bob Rogers wrote: > Agreed, but doesn't this info really belong in README? Then DEVELOPING > really only needs the middle paragraph, which is unchanging, and there > would be one less file to have to update when cutting a new release. > >Or is there some purpos

[perl #55164] [BUG] segmentation fault in rakudo's test

2008-06-02 Thread Will Coleda via RT
On Sun Jun 01 11:06:10 2008, [EMAIL PROTECTED] wrote: > Hi, > > parrot + perl6 as of r28017 segfault for me while running > t/spec/S29-array/push.rakudo. > Attached is a reduced test case that produces an assertion failure with > --runcore=gcdebug: > > $ ../../parrot --runcore=gcdebug perl6.pbc p

[perl #54372] fresh co of parrot trunk has many failures on win32/msvc

2008-06-02 Thread Will Coleda via RT
Jerry, I am unable to duplicate all the errors with a more recent checkout on my windows box. I think I might be defaulting to the compiler that came with strawberry perl, however, so I'm not willing to simply close out the ticket. Are you still seeing these errors with r28040? I'm getting th

[perl #54562] [TODO] DEVELOPING should stop lagging reality

2008-06-02 Thread Bob Rogers
From: "Will Coleda via RT" <[EMAIL PROTECTED]> Date: Mon, 02 Jun 2008 19:31:15 -0700 On Tue May 20 20:53:06 2008, japhb wrote: > What a developer might want to know is exactly the info described in the > notes at the bottom of the file -- what was the last release, how long > ha

[perl #54930] [BUG] PGE build fails in pdd25cx branch

2008-06-02 Thread Will Coleda via RT
On Tue May 27 10:57:50 2008, coke wrote: > make[1]: Entering directory `/home/coke/sandbox/parrot- > pdd25cx/compilers/tge' > ../../parrot ../../runtime/parrot/library/PGE/Perl6Grammar.pbc > --output=TGE/Parser.pir TGE/Parser.pg > ../../parrot -o TGE/Parser.pbc --output-pbc TGE/Parser.pir > Error r

[perl #54562] [TODO] DEVELOPING should stop lagging reality

2008-06-02 Thread Will Coleda via RT
On Tue May 20 20:53:06 2008, japhb wrote: > Here's the current DEVELOPING file: > > > # $Id$ > > THIS RELEASE: Parrot 0.6.2 2008.05.20 > PREVIOUS RELEASE: Parrot 0.6.1 2008.04.15 > > This file should only exist in development distributions. Delete it > (and its entry in

[perl #54992] [CAGE] Add a 'codetest' make target

2008-06-02 Thread James Keenan via RT
No complaints, so I'm resolving the ticket. As a reminder, once you have run Configure.pl, you can now call: make codetest or perl t/harness --code-tests

Re: [perl #55196] 'print' and 'say' format a number register differently

2008-06-02 Thread chromatic
On Monday 02 June 2008 12:27:17 Bernhard Schmalhofer wrote: > The behavior of > > .sub main > > $N0 = 3.14159 > say $N0 > print $N0 > print "\n" > .end > > surprised me, as I got: > > > [EMAIL PROTECTED]:~/devel/Parrot/trunk$ uname -a > Linux heist 2.6.24-17-generic #1 SMP Thu May 1 14:31:

[perl #55196] 'print' and 'say' format a number register differently

2008-06-02 Thread via RT
# New Ticket Created by Bernhard Schmalhofer # Please include the string: [perl #55196] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=55196 > The behavior of .sub main $N0 = 3.14159 say $N0 print $N0 print "\n" .

[perl #55170] [BUG] "make perl6" fails with an optimized parrot

2008-06-02 Thread via RT
# New Ticket Created by Andrew Whitworth # Please include the string: [perl #55170] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=55170 > I'm not sure if this issue has been brought up before, and I'm also not sure if it's

Re: [perl #54986] [PATCH] gcc4.0 darwin ppc doesnt like -bundle as the 1rst argument

2008-06-02 Thread Paco Linux
Hi: Both patches tested in 10.3/ppc and 10.4/intel and works OK for me Paco On Sun, Jun 1, 2008 at 4:29 PM, Seneca Cunningham via RT < [EMAIL PROTECTED]> wrote: > On Thu May 29 04:18:35 2008, [EMAIL PROTECTED] wrote: > > We have another patch pending to config/init/hints/darwin.pm from > > tetr

Re: [PATCH] Help catching gc errors in HLL

2008-06-02 Thread chromatic
On Monday 02 June 2008 07:58:57 NotFound wrote: > Previous version generates a warning when building with C, fixed now. I like the general idea, but I wonder if there's something cleaner than an environment variable. Nothing really comes to mind at the moment besides making argument processing

Re: [PATCH] Help catching gc errors in HLL

2008-06-02 Thread NotFound
Previous version generates a warning when building with C, fixed now. -- Salu2 Index: src/runops_cores.c === --- src/runops_cores.c (revisión: 28033) +++ src/runops_cores.c (copia de trabajo) @@ -242,13 +242,28 @@ opcode_t * runo

Parrot Bug Summary

2008-06-02 Thread Parrot Bug Summary
Parrot Bug Summary http://rt.perl.org/rt3/NoAuth/parrot/Overview.html Generated at Mon Jun 2 13:00:04 2008 GMT --- * Numbers * New Issues * Overview of Open Issues * Ticket Status By Version * Requestors with mo