Re: Parrot 0.7.1 Manu Aloha released

2008-09-17 Thread Francois Perrad
Patrick R. Michaud a écrit : On behalf of the Parrot team, I'm proud to announce Parrot 0.7.1 Manu Aloha. Parrot (http://parrotcode.org/) is a virtual machine aimed at running all dynamic languages. As usual, the Windows setup is available on http://parrotwin32.sourceforge.net/ François.

Re: Parrot 0.7.0 Severe Macaw

2008-08-20 Thread Francois Perrad
Bob Rogers a écrit : On behalf of the Parrot team, I'm proud to announce Parrot 0.7.0 Severe Macaw. Parrot (http://parrotcode.org/) is a virtual machine aimed at running all dynamic languages. As usual, the Windows setup is available on http://parrotwin32.sourceforge.net/ François. Parrot

Re: [perl #55670] [BUG] cannot build perl6

2008-06-12 Thread Francois Perrad
Klaas-Jan Stol (via RT) a écrit : # New Ticket Created by Klaas-Jan Stol # Please include the string: [perl #55670] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=55670 hi, I'm having trouble when building perl6:

Re: [perl #52894] [CAGE] use more File::Temp to avoid permission issues

2008-06-09 Thread Francois Perrad
James Keenan via RT a écrit : On Mon Jun 09 05:00:17 2008, [EMAIL PROTECTED] wrote: Determining whether perldoc is installed... step auto::perldoc died during execution: The fchmod function is unimplemented at config/auto/perldoc.pm line 42. On Windows, the Perl function 'chmod' works with

Re: [perl #51756] [BUG]: config/auto/crypto.pm causes build failure on Darwin

2008-03-17 Thread Francois PERRAD
Andy Dougherty wrote: On Sat, 15 Mar 2008, James Keenan via RT wrote: On Sat Mar 15 10:50:04 2008, doughera wrote: Ah, I think this one is easy: If I recall correctly, the SHA256_CTX stuff was added in openssl version 0.9.8; I'll bet your system has 0.9.7. Yes. OpenSSL version OpenSSL

Re: Performance (was Re: Problem with lexical scoping)

2008-02-13 Thread Francois PERRAD
Will Coleda wrote: On Feb 13, 2008 1:41 PM, chromatic [EMAIL PROTECTED] wrote: On Wednesday 13 February 2008 06:21:32 [EMAIL PROTECTED] wrote: Should we perhaps add a performance benchmark to the tests? Normalising it to account for hardware variations might be a problem. That's somewhat

Re: What goes in the API?

2008-02-06 Thread Francois PERRAD
Andy Lester wrote: I had removed the PARROT_API from ld() in list.c because we don't need to offer as a public function to the user a function that computes logs base 2. fperrad reverted that because it broke make hello. It seems to me that this is backwards, just like my PARROT_APIing some

Re: vtable entries still have double underscore?

2007-12-19 Thread Francois PERRAD
Klaas-Jan Stol wrote: in PIR you can override (or implement) a vtable method using the :vtable flag. before that, in the past, this was done by prefixing the vtable name with 2 underscores. While ack'ing for .constant (to be replaced with .macro_const), I found that the following file defines

Re: [perl #47011] [DEPRECATED] VTABLE entry 'new_from_string'

2007-12-03 Thread Francois PERRAD
Will Coleda via RT wrote: On Mon Oct 29 11:11:03 2007, bernhard wrote: In pdd17_pmc.pod it is stated that 'new_from_string' is deprecated. The existing use of 'new_from_string' can probably be achieved with 'init' or 'set_string_native'. TODO: Hunt down existing use of 'new_i_s' and either

Re: NEWS and PLATFORMS Updates Requested

2007-11-20 Thread Francois PERRAD
At 09:25 18/11/2007 -0800, chromatic wrote: The next release will be on Tuesday evening. Committers, please review your checkins and update NEWS appropriately. Everyone, please submit updates to PLATFORMS. languages/LANGUAGES_STATUS.pod could be updated too. with a special constraint : the

Re: Some feedbacks from Lua experience

2007-10-04 Thread Francois PERRAD
At 23:48 03/10/2007 -0700, chromatic wrote: On Wednesday 03 October 2007 12:55:54 François PERRAD wrote: 3) garbage collection How write code without GC problems ? How track down and fix GC problems ? I'm happy to help, but I have difficulty running Lua programs from the command line. I

Re: Side effect between exit .HLL

2006-12-17 Thread Francois PERRAD
At 08:46 12/12/2006 +0100, François PERRAD wrote: With the following code : .sub main print reached\n exit 1 print not reached\n .end I obtain : reached But after adding a .HLL directive .HLL 'Lua', 'lua_group' .sub main print reached\n exit 1

Re: [PROPOSED PATCH] Add Parrot::Embed to Repository

2006-08-17 Thread Francois PERRAD
At 15:48 15/08/2006 -0700, chromatic wrote: Here's a proposed patch that seems to work okay for me on Linux. It's not great or beautiful, mostly because of the Makefile hackery. It's a starting point though. I suspect Windows might complain. I try it on Win2000 with MinGW. 1)

Global not found between PIR and PMC

2006-03-10 Thread Francois PERRAD
In a library (languages/lua/lib/luastring.pir), I declare a global variable (mt_string): .namespace [ Lua ] .HLL Lua, lua_group .sub init :load, :anon ... .local pmc _lua_mt_string _lua_mt_string = new .LuaTable global mt_string = _lua_mt_string ... In a PMC method, I

Re: add methods in dynpmc

2006-02-07 Thread Francois PERRAD
At 13:53 07/02/2006 +0100, Leopold Toetsch wrote: François PERRAD wrote: Hi all, With the following patch, I try to add two methods (tostring tonumber) at each Lua PMC. With the first new test, I obtain : Method 'tostring' not found current instr.: '_main' pc 13

Re: [perl #37651] [PATCH] Add $LINK_DYNAMIC when linking pbc_merge

2005-11-15 Thread Francois PERRAD
At 08:08 10/11/2005 -0800, you wrote: # New Ticket Created by Nick Glencross # Please include the string: [perl #37651] # in the subject line of all future correspondence about this issue. # URL: https://rt.perl.org/rt3/Ticket/Display.html?id=37651 This patch is required for pbc_merge on

Re: [perl #37455] make hello fails

2005-10-18 Thread Francois PERRAD
At 07:03 17/10/2005 -0700, you wrote: François PERRAD (via RT) [EMAIL PROTECTED] wrote: $ ./parrot -V This is parrot version 0.3.0-devel (r9493) built for i386-linux. $ make hello ./parrot -o examples/assembly/hello.o examples/assembly/hello.pbc make EXEC=examples/assembly/hello exec

Re: [perl #36862] [RESOLVED] [PATCH] m4 tests compatible with Win32

2005-08-12 Thread Francois PERRAD
At 10:42 11/08/2005 -0700, you wrote: According to our records, your request regarding [PATCH] m4 tests compatible with Win32 has been resolved. the patch wasn't correctly applied. the test fails on Win32 : # Failed test (m4\t\builtins\010_sysval.t at line 26) # got: ''$true'

Re: [perl #36843] [PATCH] m4 with MinGW

2005-08-10 Thread Francois PERRAD
At 12:56 09/08/2005 -0700, you wrote: Thanks a lot, I think this is the first large patch for 'm4', that I received. Tests are still completing here on my Linux box. Sorry, but I forgot this part : Index: languages/m4/t/freezing/001_freeze.t

Re: [perl #34625] [PATCH] make setup on MSWin32

2005-04-06 Thread Francois PERRAD
At 09:50 06/04/2005 +, you wrote: François PERRAD [EMAIL PROTECTED] wrote: I rename too the new script to mk_inno.pl Sorry for bothering you again. But with the recent ICU changes, installing any ICU stuff is obsolete. ICU will be removed from the source tree soon (when we switch to SVN). OK,

Re: [perl #34605] [PATCH] t/pmc/sys.t failure with MinGW32

2005-03-30 Thread Francois PERRAD
At 08:07 30/03/2005 +, you wrote: François PERRAD [EMAIL PROTECTED] wrote: --- data.pl.orig 2005-02-21 11:56:08.0 +0100 +++ data.pl 2005-03-19 11:53:30.0 +0100 ^^^ Please provide one patch for #34605 and #34606, diffed from Parrot root directory one directory