1PBC_TO_EXE(1) User Contributed Perl Documentation PBC_TO_EXE(1)
2
3
4
6 pbc_to_exe - Generate executables from Parrot bytecode
7
9 pbc_to_exe my.pbc
10
11 Will generate:
12
13 my.exe
14
15 And
16
17 pbc_to_exe my.pbc --install
18
19 Will generate:
20
21 installable_my.exe
22
24 This utility compiles bytecode to native executables. These are called
25 "fakecutables", because they are actually just the bytecode packaged up
26 as raw data inside a C skeleton.
27
29 pbc_to_exe [option] <file>
30
31 Command line Options
32 For help use :
33
34 -h
35 --help
36
37 To install use :
38
39 -i
40 --install
41
42 To runcore or to change runcore use :
43
44 -R
45 --runcore=slow|fast
46
47 For output file use :
48
49 -o
50 --output=FILE
51
52 To change garbage collector algorithm use :
53
54 --gc=ms2|gms
55
56 "gms" is default. "ms2" is older and slower
57
59 For more help or any other question you go to <http://parrot.org> or
60 <http://github.com/parrot/parrot>.Or you can send email to
61 'parrot-dev@parrot.org'. You are also invited to join the #parrot IRC
62 channel on irc.parrot.org.
63
64
65
66perl v5.30.1 2020-01-29 PBC_TO_EXE(1)