forked from rurban/perl-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
43 lines (26 loc) · 949 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
The B::C, B::CC, B::Bytecode Perl Compiler Kit
Copyright (c) 1996, 1997, Malcolm Beattie
Copyright (c) 2008, 2009, 2010, 2011 Reini Urban
Copyright (c) 2012, 2013, 2014, 2019 cPanel Inc
http://github.com/cpanelinc/perl-compiler/
INSTALL
This doesn't work on windows any more as we removed threads support during a re-write. Every branch only supports a specific version of Perl.
perl Makefile.PL && make test && make install
USAGE
Bytecode and CC bakends have been removed as they were incomplete and unused.
To compile perl program foo.pl with the C backend, do
perlcc -ofoo foo.pl
./foo
STATUS
C is stable, CC is unstable.
Bytecode stable until 5.16
The Bytecode compiler is disabled for 5.6.2, use the default instead.
See STATUS for details.
BUGS
Bugs and Todo items can be found here: https://github.com/CpanelInc/perl-compiler/issues
cPanel, LLC
2012-01-01
Reini Urban
2011-01-01
Malcolm Beattie
2 September 1996