Re: Pie-thon state 4

2004-07-16 Thread Dan Sugalski
At 8:10 AM +0200 7/17/04, Leopold Toetsch wrote: 14.07.2004 *Dan's already starting with the Bytecode converter - SNCR* SNCR? Selective Non-catalytic Reaction? Erm... Okay... :) -- Dan --it's like this--- Dan Sugals

Pie-thon state 4

2004-07-16 Thread Leopold Toetsch
Another week's gone. One benchmark (b1.py) is running with Parrot. The code is produced by languages/python/pie-thon.pl. The speed is competitive :) More below. leo The Pie-thon state - 4 # date [- range ] title # description 10.07.2004 Pie-thon 45 - 47 Enhanced complex functionalit

Re: Parrot config - a small perl task

2004-07-16 Thread Leopold Toetsch
Timur Safin <[EMAIL PROTECTED]> wrote: > - Original Message - > From: "Leopold Toetsch" <[EMAIL PROTECTED]> >> On (AFAIK) all systems: opcode_type = intval_type = long. This size has >> to match the pointer size. And floatval_type = double. > It was not exactly true till recent (the count

Re: Parrot config - a small perl task

2004-07-16 Thread Timur Safin
- Original Message - From: "Leopold Toetsch" <[EMAIL PROTECTED]> To: "Perl 6 Internals" <[EMAIL PROTECTED]> Sent: Friday, July 16, 2004 9:42 AM Subject: Parrot config - a small perl task > On (AFAIK) all systems: opcode_type = intval_type = long. This size has > to match the pointer size.

Re: Perl script to .so file

2004-07-16 Thread Stéphane Payrard
RAD On Wed, Jul 14, 2004 at 10:03:43PM +0800, RaghavendraK 70574 wrote: > Hi, > > Am a hardcore C++ guy and don;t know much abt the Perl. But one > of my friend has proved that the fastest way to RAD is Perl. I > need to know if we can convert a Perl script to a dynamic link > library under unix

Thanks Brent and Leo

2004-07-16 Thread Joshua Gatcomb
Cygwin no longer requires --intval and --opcode size changes in the Configure process to work correctly. Additionally, the benchmarks appear to be running a bit faster too. Cheers Joshua Gatcomb a.k.a. Limbic~Region __ Do you Yahoo!? New

Re: Quick thing for the piethon interested

2004-07-16 Thread Leopold Toetsch
Togos <[EMAIL PROTECTED]> wrote: >> This is my first code patch EVAR, so here's to >> hoping I didn't mess it all up. Seems to work, > anyway. Thanks, applied. leo

Re: [perl #30711] [BUG] Cannot open include file pmc_default.h in py_func.c

2004-07-16 Thread Leopold Toetsch
Dennis Rieks <[EMAIL PROTECTED]> wrote: > Hi, > on my win32 tinderbox there is an missing file pmc_default.h while compiling > src/py_func.c, maybe an wrong -I include path? This file is located in > parrot/classes No missing dependency. Sorry. Fixed. leo

Re: Parrot config - a small perl task

2004-07-16 Thread Leopold Toetsch
Brent 'Dax' Royal-Gordon wrote: Leopold Toetsch wrote: On (AFAIK) all systems: opcode_type = intval_type = long. This size has to match the pointer size. And floatval_type = double. Very small, as it turns out: Great, thanks. The patch is smaller then my description ;) leo

Re: Python builtin namespace

2004-07-16 Thread Tim Bunce
On Fri, Jul 16, 2004 at 12:02:15AM -0400, Dan Sugalski wrote: > At 10:17 PM + 7/15/04, Steve Peters wrote: > >On Friday 16 July 2004 02:46 am, Dan Sugalski wrote: > >> And language builtin namespaces in general. We need a standard, and > >> now's as good a time as any, so... > >> > >> All langu

Re: Parrot config - a small perl task

2004-07-16 Thread Brent 'Dax' Royal-Gordon
Leopold Toetsch wrote: On (AFAIK) all systems: opcode_type = intval_type = long. This size has to match the pointer size. And floatval_type = double. Very small, as it turns out: - my $intval=$Config{ivtype} || 'long'; - my $floatval=$Config{nvtype} || 'double'; - my $opcode=$Config{ivtype}

Re: Quick thing for the piethon interested

2004-07-16 Thread TOGoS
--- TOGoS <[EMAIL PROTECTED]> wrote: > This is my first code patch EVAR, so here's to > hoping I didn't mess it all up. Seems to work, anyway. >:# Sorry. Did the diff wrong. Here it is, the right way. __ Do you Yahoo!? New and Improved Y

Re: Quick thing for the piethon interested

2004-07-16 Thread TOGoS
This is my first code patch EVAR, so here's to hoping I didn't mess it all up. Seems to work, anyway. __ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail python.ops-2004.07.16.diff De

[perl #30711] [BUG] Cannot open include file pmc_default.h in py_func.c

2004-07-16 Thread via RT
# New Ticket Created by Dennis Rieks # Please include the string: [perl #30711] # in the subject line of all future correspondence about this issue. # http://rt.perl.org:80/rt3/Ticket/Display.html?id=30711 > Hi, on my win32 tinderbox there is an missing file pmc_default.h while compiling sr

Parrot config - a small perl task

2004-07-16 Thread Leopold Toetsch
Our types configuration is still using perl5's type sizes. This breaks default Configure.pl runs on various architectures, that ship a perl with "long long" intvals. Using perl's was needed a long time ago, when packfiles were generated by perl. It's not needed any more. So the job is to fix t