Leopold Toetsch sent the following bits through the ether:

> No PASM1 is the one-line assembler PDB_compile in debug.c. If you want 
> the whole thing, you have to run imcc instead of parrot and with the 
> PASM compiler, just as the comment states.

Oops, I was confused. ook's 'make test' runs with parrot, so it
doesn't work. I've attached a patch to config/gen/makefiles/ook.in to
make it work with imcc, although I assume we'd want $(IMCC) to work at
some point.

Leon
-- 
Leon Brocard.............................http://www.astray.com/
scribot.................................http://www.scribot.com/

... Freedom defined is freedom denied
Index: config/gen/makefiles/ook.in
===================================================================
RCS file: /cvs/public/parrot/config/gen/makefiles/ook.in,v
retrieving revision 1.1
diff -u -r1.1 ook.in
--- config/gen/makefiles/ook.in 1 Jan 2003 00:34:15 -0000       1.1
+++ config/gen/makefiles/ook.in 19 Jan 2003 18:02:38 -0000
@@ -7,9 +7,7 @@
 all: build
 
 test: build
-       $(PARROT) ook.pbc hello.ook > foo.pasm
-       $(ASSEMBLE) foo.pasm > foo.pbc
-       $(PARROT) foo.pbc
+       ../imcc/imcc -r ook.pasm test.ook
 
 build: ook.pasm
        $(ASSEMBLE) ook.pasm > ook.pbc

Reply via email to