diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2015-02-14 10:16:31 +0000 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2015-02-14 10:16:31 +0000 |
commit | f8a1725d8b64f6749151c53dae47b531f4e9084f (patch) | |
tree | 4ced6fd51b275d88308de454797672f8910331ff /devel/Makefile | |
parent | 27778962e708b3a6a6cf54188b32e50b21ee2d62 (diff) |
[NEW] devel/p5-B-C: Perl compiler's C backend
This compiler backend takes Perl source and generates C source
code corresponding to the internal structures that perl uses to
run your program. When the generated C source is compiled and
run, it cuts out the time which perl would have taken to load
and parse your program into its internal semi-compiled form.
That means that compiling with this backend will not help improve
the runtime execution speed of your program but may improve
the start-up time. Depending on the environment in which your
program runs this may be either a help or a hindrance.
WWW: http://search.cpan.org/dist/B-C/
PR: 196719
Submitted by: svysh.fbsd@gmail.com
Approved by: bapt marino (implicit)
Notes
Notes:
svn path=/head/; revision=378955
Diffstat (limited to 'devel/Makefile')
-rw-r--r-- | devel/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index d3ba6d946062..c038c6bb83c4 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1516,6 +1516,7 @@ SUBDIR += p5-Attribute-Persistent SUBDIR += p5-AutoLoader SUBDIR += p5-AutoXS-Header + SUBDIR += p5-B-C SUBDIR += p5-B-Compiling SUBDIR += p5-B-Deobfuscate SUBDIR += p5-B-Flags |