Makefile and Win slash

2003-10-07 Thread Nick Kostirya
Hello. lease, when write makefile template draw attention to slash is \ under Win For example, file config/gen/makefiles/root.in contain string IMCC_DIR_SL = $(IMCC_DIR)${slash} which converted to IMCC_DIR_SL = $(IMCC_DIR)\ :-) Maybe write so IMCC_DIR_SL = $(IMCC_DIR)${slash} # space need for

[perl #24131] [PATCH] Almost all tests for languages/perl6 are failing

2003-10-07 Thread via RT
# New Ticket Created by Bernhard Schmalhofer # Please include the string: [perl #24131] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt2/Ticket/Display.html?id=24131 Hi, I noticed that since couple of days the test for 'perl6' are failing.

Re: IMCC - calling convention syntax

2003-10-07 Thread Leopold Toetsch
Will Coleda [EMAIL PROTECTED] wrote: As I realize my example is incorrect. =-) Is there any reason not to make the .pcc_call _parse work also, rather than having to construct a .Sub? We probably could construct a Sub PMC under the hood. The reason for 2 stages is efficiency though: If you are

Binary MMD vtable fucntions are in

2003-10-07 Thread Dan Sugalski
I figured out why my MMD code was failing (off by one errors. D'oh!) and fixed it, with the fixes checked in. Two-arg multimethod dispatch now works. (More bizarrely, it's actually *faster* to use Integer PMCs, which do MMD, than it is to use PerlInt PMCs, which don't do MMD. Go figure :) I'll

Re: IMCC - calling convention syntax

2003-10-07 Thread Gregor N. Purdy
The optimizer could hoist the construct out of the loop... Assuming it can realize its possible to do that. Regards, -- Gregor On Tue, 2003-10-07 at 01:14, Leopold Toetsch wrote: Will Coleda [EMAIL PROTECTED] wrote: As I realize my example is incorrect. =-) Is there any reason not to

Re: [perl #24131] [PATCH] Almost all tests for languages/perl6 are failing

2003-10-07 Thread Leopold Toetsch
Bernhard Schmalhofer [EMAIL PROTECTED] wrote: Hi, I noticed that since couple of days the test for 'perl6' are failing. Applied, thanks. leo

Re: You too can direct the Attack of the Unicode Monster!

2003-10-07 Thread Jeff Clites
I've been poking at it a little bit--nothing finished yet, but I've been making some headway. JEff On Tuesday, October 7, 2003, at 08:51 AM, Dan Sugalski wrote: WHich ought ot be some sort of really bad '50s era black and white giant atomic monster movie. But anyway. ICU now configures and

[perl #24149] [PATCH] small Makefile patch (rm *.s in realclean instead of clean)

2003-10-07 Thread Aldo Calpini
# New Ticket Created by Aldo Calpini # Please include the string: [perl #24149] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt2/Ticket/Display.html?id=24149 make clean is currently doing an rm *.s, thus removing the asmfun.s which gets

Re: You too can direct the Attack of the Unicode Monster!

2003-10-07 Thread Michael Scott
On Tuesday, Oct 7, 2003, at 17:51 Europe/Berlin, Dan Sugalski wrote: WHich ought ot be some sort of really bad '50s era black and white giant atomic monster movie. But anyway. ICU now configures and builds on at least some platforms. That means it's time to build an encoding and chartype

Re: [RfC] new PMC compiler

2003-10-07 Thread Leopold Toetsch
Dan Sugalski [EMAIL PROTECTED] wrote: If it's clearer to read than pmc2c.pl, sure, go for it. That code's been stretched well beyond what it it it was originally intended to do and is getting kind of crufty. Ok, checked in. Almost all of the exceptions to code generation are handled in

More interface files

2003-10-07 Thread Dan Sugalski
While I'm having a heck of a time getting anything besides a connection to happen with it... I've checked in library/postgres.pasm. It's an interface to Posgres 7.3's libpq (the C interface to postgres) library. Have fun, folks. Dan

[perl #24155] [PATCH] pmc2c2 Makefile

2003-10-07 Thread via RT
# New Ticket Created by Leopold Toetsch # Please include the string: [perl #24155] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt2/Ticket/Display.html?id=24155 Attached is a patch for easier testing of the new pmc compiler. It probably

parrot stack and Z-machine

2003-10-07 Thread Amir Karger
Still working on the prelude to the preface to the Z-machine running natively on Parrot project, namely translating Z-code into a Perl executable. (My brother, who's a CS professor so he should know, says I'm actually *compiling* it. Compiling bytecode to an interpreted language? Weird!) I'm

Re: parrot stack and Z-machine

2003-10-07 Thread Luke Palmer
Amir Karger writes: Still working on the prelude to the preface to the Z-machine running natively on Parrot project, namely translating Z-code into a Perl executable. (My brother, who's a CS professor so he should know, says I'm actually *compiling* it. Compiling bytecode to an interpreted

Re: You too can direct the Attack of the Unicode Monster!

2003-10-07 Thread Robert Spier
Also, I'm working on OS X, so there is the library loading issue to be solved too. 10.3 should make this easier, as it has dlopen emulation. (While not necessarily the perfect long-term solution, it at least lets you get things done.) -R