Re: [PATCH] Re: [perl #50684] String Failures with -O2 (GCC 4.1.3, 32-bit x86 Linux)

2008-03-12 Thread Andy Dougherty
On Wed, 12 Mar 2008, chromatic wrote: > On Wednesday 12 March 2008 15:07:08 Andy Lester wrote: > > > On Mar 12, 2008, at 4:50 PM, Andy Dougherty via RT wrote: > > > The problem is twofold: > > > > I'm not sure what you're saying is a problem. Are you saying that the > > use of __attribute__nonnu

Re: tutorial, blog, hackathon

2008-03-12 Thread Andy Lester
On Mar 12, 2008, at 6:43 PM, Allison Randal wrote: Also, we're planning a hackathon the weekend before YAPC::NA, June 14-15, for core hacking, language implementation, and cage cleaning. Excellent. Where? On the IIT campus? xao -- Andy Lester => [EMAIL PROTECTED] => www.petdance.com =>

[perl #51622] [TODO]: Parrot not detecting GMP

2008-03-12 Thread James Keenan via RT
On Wed Mar 12 12:09:05 2008, ambs wrote: > At the moment GMP is being detected. > > I just copied some code from the detection of readline. Probably we will > want a macports.pm module under auto to reuse these functions. > > ambs I will work on this over the next week. kid51

Re: [svn:parrot] r26337 - trunk/src/io

2008-03-12 Thread chromatic
On Wednesday 12 March 2008 12:36:08 [EMAIL PROTECTED] wrote: > Modified: >trunk/src/io/io.c > > Log: > Not sure of this fix, but one more test passing (test 16 from t/src/io.t) > > > Modified: trunk/src/io/io.c > === >===

tutorial, blog, hackathon

2008-03-12 Thread Allison Randal
The first of Klaas-Jan Stol's tutorials on writing compilers with the Parrot Compiler Toolkit went up this week on http://parrotblog.org. Also, we're planning a hackathon the weekend before YAPC::NA, June 14-15, for core hacking, language implementation, and cage cleaning. Allison

Re: [PATCH] Re: [perl #50684] String Failures with -O2 (GCC 4.1.3, 32-bit x86 Linux)

2008-03-12 Thread chromatic
On Wednesday 12 March 2008 15:07:08 Andy Lester wrote: > On Mar 12, 2008, at 4:50 PM, Andy Dougherty via RT wrote: > > The problem is twofold: > > I'm not sure what you're saying is a problem. Are you saying that the > use of __attribute__nonnull__ is a problem? Or just that we don't > have it s

Re: [PATCH] Re: [perl #50684] String Failures with -O2 (GCC 4.1.3, 32-bit x86 Linux)

2008-03-12 Thread Andy Lester
On Mar 12, 2008, at 4:50 PM, Andy Dougherty via RT wrote: The problem is twofold: I'm not sure what you're saying is a problem. Are you saying that the use of __attribute__nonnull__ is a problem? Or just that we don't have it set correctly everywhere? When we DO get it fixed right, i

Re: [PATCH] Re: [perl #50684] String Failures with -O2 (GCC 4.1.3, 32-bit x86 Linux)

2008-03-12 Thread Andy Dougherty
On Wed, 12 Mar 2008, Andy Lester wrote: > > On Mar 12, 2008, at 2:33 PM, Andy Dougherty via RT wrote: > > > +#ifdef HASATTRIBUTE_NONNULL_AND_I_REALLY_WANT_TO_USE_IT > > # define __attribute__nonnull__(a) __attribute__((__nonnull__(a))) > > #endif > > #ifdef HASATTRIBUTE_NORETURN > > >

[perl #51662] [TODO] Remove 'classname' rule in imcc.y

2008-03-12 Thread via RT
# New Ticket Created by Bernhard Schmalhofer # Please include the string: [perl #51662] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=51662 > In RT#41237 it was decided: P0 = new 'Integer' # correct $P0 = new .Integer # d

Re: [perl #49762] parrot 0.5.2 make fails on mac ppc with leopard 10.5.1

2008-03-12 Thread Will Coleda
On Wed, Mar 12, 2008 at 10:48 AM, Jim Brandt <[EMAIL PROTECTED]> wrote: > > Arcady Goldmints-Orlov via RT wrote: > > Check the output of ps when it hangs. I think Configure.pl might be > > trying to run SVK, which is apparently included with 10.5.2, and if > > you've never used SVK, it asks you

[perl #51658] [PATCH] to support lexical self, some pair parsing and printing, preceded by test file

2008-03-12 Thread via RT
# New Ticket Created by Stephane Payrard # Please include the string: [perl #51658] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=51658 > # use v6-alpha; # use Test; # plan 3; # test for lexical self. # and for some pair p

Re: [perl #49762] parrot 0.5.2 make fails on mac ppc with leopard 10.5.1

2008-03-12 Thread Jim Brandt
Arcady Goldmints-Orlov via RT wrote: Check the output of ps when it hangs. I think Configure.pl might be trying to run SVK, which is apparently included with 10.5.2, and if you've never used SVK, it asks you to set it up and waits for some input, which you can't see. I've had the same probl

Re: [PATCH] Re: [perl #50684] String Failures with -O2 (GCC 4.1.3, 32-bit x86 Linux)

2008-03-12 Thread Andy Lester
On Mar 12, 2008, at 2:33 PM, Andy Dougherty via RT wrote: +#ifdef HASATTRIBUTE_NONNULL_AND_I_REALLY_WANT_TO_USE_IT # define __attribute__nonnull__(a) __attribute__((__nonnull__(a))) #endif #ifdef HASATTRIBUTE_NORETURN and "suddenly" (for some value of suddenly that is more like an

[PATCH] Re: [perl #50684] String Failures with -O2 (GCC 4.1.3, 32-bit x86 Linux)

2008-03-12 Thread Andrew Dougherty
[various thoughts on attribute_nonnull] On a lark, I applied this patch: --- parrot-current/include/parrot/compiler.hTue Mar 11 07:19:23 2008 +++ parrot-andy/include/parrot/compiler.h Wed Mar 12 13:22:42 2008 @@ -44,7 +44,7 @@ #ifdef HASATTRIBUTE_MALLOC # define __attribute__malloc__

Re: [svn:parrot] r26321 - in trunk/languages/perl6: config/makefiles src/classes src/pmc

2008-03-12 Thread jerry gay
On Wed, Mar 12, 2008 at 10:36 AM, chromatic <[EMAIL PROTECTED]> wrote: > On Tuesday 11 March 2008 22:59:11 [EMAIL PROTECTED] wrote: > > > Modified: > >trunk/languages/perl6/config/makefiles/root.in > >trunk/languages/perl6/src/classes/Bool.pir > >trunk/languages/perl6/src/pmc/perl6b

Re: [svn:parrot] r26321 - in trunk/languages/perl6: config/makefiles src/classes src/pmc

2008-03-12 Thread chromatic
On Tuesday 11 March 2008 22:59:11 [EMAIL PROTECTED] wrote: > Modified: >trunk/languages/perl6/config/makefiles/root.in >trunk/languages/perl6/src/classes/Bool.pir >trunk/languages/perl6/src/pmc/perl6bool.pmc > > Log: > [rakudo] implement auto{increment,decrement} semantics as per S03 >

[perl #51634] docs/parrotbyte.pod && docs/pdds/pdd13_bytecode.pod are either incorrect/unclear

2008-03-12 Thread Jesse Taylor
# New Ticket Created by "Jesse Taylor" # Please include the string: [perl #51634] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=51634 > fixup_unpack() in src/packfile.c contains the following code: for (i = 0; i < self->f

[perl #51652] [PATCH] Possible alignment issues with new STRING structures

2008-03-12 Thread via RT
# New Ticket Created by Andy Dougherty # Please include the string: [perl #51652] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=51652 > There might be a possible alignment issue lurking in the new streamlined PMC and STRI

Re: [perl #51622] [TODO]: Parrot not detecting GMP

2008-03-12 Thread Alberto Simões
Hi, James. I'll try to figure out the problem and apply a patch soon. I just complaint before just to be sure if I was not editing other people work :) Cheers ambs James Keenan (via RT) wrote: # New Ticket Created by James Keenan # Please include the string: [perl #51622] # in the subject