# New Ticket Created by Christoph Otto
# Please include the string: [perl #50186]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=50186 >
The Env PMC doesn't check whether integer indicies are smaller than the number
of ele
On Sat, Jan 19, 2008 at 12:24:37PM +0100, Klaas-Jan Stol wrote:
> as far as I could tell there's no support for goto statements in PCT (that
> is, special nodes or something).
> I don't know whether there are any plans to add special support for it, but
> here's an idea I was thinking about. It wou
Sorry if I'm missing something here, since I haven't dived into the
innards of Parrot, but I thought control flow in Parrot was based on
continuations? Presumably 'control exceptions' are really just
lexicaly-scoped exceptions, and exceptions are in turn just
outgoing-only continuations. If you h
On Thu, Jan 24, 2008 at 11:58:02AM -0500, Mark J. Reed wrote:
> Sorry if I'm missing something here, since I haven't dived into the
> innards of Parrot, but I thought control flow in Parrot was based on
> continuations? Presumably 'control exceptions' are really just
> lexicaly-scoped exceptions,
On Jan 24, 2008 9:02 AM, Patrick R. Michaud <[EMAIL PROTECTED]> wrote:
> On Thu, Jan 24, 2008 at 11:58:02AM -0500, Mark J. Reed wrote:
> > Sorry if I'm missing something here, since I haven't dived into the
> > innards of Parrot, but I thought control flow in Parrot was based on
> > continuations?
In addition to what Patrick said, which is all right on the mark,
I'd like to point out a few additional subtleties.
Perl borrows an important idea from Lisp and separates the notion
of stack unwinding from that of exception handling; when you throw
an exception (including a control exception) you
On Jan 23, 2008 11:15 PM, James Keenan via RT
<[EMAIL PROTECTED]> wrote:
> On Wed Feb 14 09:09:14 2007, coke wrote:
> > Trying to build with GMP support on OSX intel. I have libgmp in
> > /opt/local/bin/
> >
> > if I run:
> >
> > CC="ccache gcc-4.0"
> > CX="ccache g++-4.0"
> > perl Configure.pl --c
# New Ticket Created by Alan Rocker
# Please include the string: [perl #50212]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=50212 >
Using the "Strawberry Perl" installed on Windows XP resulted in the
following failure out
# New Ticket Created by [EMAIL PROTECTED]
# Please include the string: [perl #50218]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=50218 >
Hope this is helpful - I haven't been able to solve this but
03-revision.t and 04
# New Ticket Created by Cosimo Streppone
# Please include the string: [perl #50216]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=50216 >
Recently I've been working on the perl6 test suite
that lives in pugs/t/spec reposit
# New Ticket Created by Alan Rocker
# Please include the string: [perl #50214]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=50214 >
Using the "Strawberry Perl" on Windows XP to install Parrot resulted in the
attached warn
On Thu Jan 24 14:28:29 2008, cosimo wrote:
> On Gio. 24 Gen. 2008 14:13:20, cosimo wrote:
> > > So I wrote and tested this patch against r24953
> > > which adds approx() to languages/perl6/Test.pm.
> >
> > Applies also for r25206.
>
> Extended to provide also a `is_approx()'.
> This is also more
On Thu Jan 24 12:52:34 2008, ajr wrote:
> Using the "Strawberry Perl" installed on Windows XP resulted in the
> following failure output from the Configure step:
>
> Determining if your platform supports GMP...Can't spawn ".\test.exe": Bad
> file descriptor at lib/Parrot/Configure/Utils.pm line 85
Some data questions:
1. Are you working from a checkout from the repository or from a Parrot
monthly release tarball?
2. If the former, which VCS did you use to make the checkout? (By
implication, which VCS do you expect to be exercised in _analyze_sandbox()?)
I ask because if you are working
Hi, Alan! What kind of CPU do you have? If you have an AMD Athlon XP
(or something of similar lineage), I think I know what the problem is.
On Thu, 24 Jan 2008 12:52:35 -0800
Alan Rocker (via RT) <[EMAIL PROTECTED]> wrote:
> Determining if your platform supports GMP...Can't spawn ".\test.exe":
> On Thu Jan 24 10:31:46 2008, coke wrote:
>
> >
> > Here's my current Config script:
> >
> > CCACHE="ccache "
> > CC="${CCACHE}gcc-4.0"
> > CX="${CCACHE}g++-4.0"
> > perl Configure.pl --cc="$CC" --cxx="$CX" --link="$CX" --ld="$CX"
> > --ccflags="-L/opt/local/lib -I/opt/local/include"
> > --ldf
On Thu, 24 Jan 2008, James Keenan via RT wrote:
> Some data questions:
>
> 1. Are you working from a checkout from the repository or from a Parrot
> monthly release tarball?
>
> 2. If the former, which VCS did you use to make the checkout? (By
> implication, which VCS do you expect to be exer
On Thu Jan 24 17:43:06 2008, doughera wrote:
>
> This sounds like a problem in the hints file. I don't know what platform
> this is, but I'd look in the hints file to see if it unconditionally
> sets ccflags and ldflags without checking the command line options.
>
It's Darwin, whose hints file
On Thu Jan 24 17:38:33 2008, [EMAIL PROTECTED] wrote:
>
> Yeah, I get that on Strawberry Perl too. It surprised me, and it
> pauses the configure process until you click "Don't send report".
>
>
> > Might there be some obscure connection with
> > [perl #41508] [BUG] Configure losing flags... ?
From: Larry Wall <[EMAIL PROTECTED]>
Date: Thu, 24 Jan 2008 09:52:16 -0800
In addition to what Patrick said, which is all right on the mark,
I'd like to point out a few additional subtleties.
Perl borrows an important idea from Lisp and separates the notion
of stack unwinding fr
On Thursday 24 January 2008 19:11:37 [EMAIL PROTECTED] wrote:
> Author: petdance
> Date: Thu Jan 24 19:11:36 2008
> New Revision: 25208
>
> Modified:
>trunk/src/exceptions.c
>
> Log:
> Added missing break to switch statement (!!!). Added checks for NULL
> pointers
> --- trunk/src/exceptions.
21 matches
Mail list logo