Thread Exe-/binary-Erstellung mit Perl 6 möglich? (36 answers)
Opened by schwabi at 2008-08-20 12:30

moritz
 2009-05-05 10:16
#121184 #121184
User since
2007-05-11
923 Artikel
HausmeisterIn
[Homepage]
user image
2008-08-20T10:47:48 moritz
Wobei rakudo bisher noch keine lauffähigen .pbc-Dateien für Perl 6-Quelldateien ausspuckt. Ist aber nicht so wahnsinnig schwer das dazuzubasteln.


Inzwischen geht das, wenn auch nicht in einem Schritt:

Code: (dl )
1
2
3
4
5
6
7
8
9
$ cat foo.pl
say 2+3;
$ ./perl6 --target=PIR foo.pl > foo.pir
$ ./parrot/parrot --output-pbc foo.pir > foo.pbc
$ ./parrot/parrot foo.pbc
5
$ ./parrot/pbc_to_exe foo.pbc
$ ./foo
5

View full thread Exe-/binary-Erstellung mit Perl 6 möglich?