Is there a tool available which will convert source code in Perl to source code in C? Any platform is fine.
|
|
Once upon a time, there was perlcc which "translates" Perl to C. It's not really a Perl to C compiler; its output is simply a bundle of the Perl interpreter and the parsed bytecode of your program. It never worked very reliably, either, and has been removed altogether from Perl 5.10. |
||||
|
|
|
The canonical answer to this is MJD's "Why Not Translate Perl to C?". |
||
|
|
|
The answer is going to be pretty much "No". Perl is an extremely dynamic language. C is a language for statically-sized data types. Any translation of Perl to C will likely be pretty much "execute this subroutine call to simulate what Perl does" repeatedly. And there's little point in building such a translator, as it is unlikely to execute Perl much faster than Perl does. |
|||
|
