vote up 2 vote down star

Is there a tool available which will convert source code in Perl to source code in C? Any platform is fine.

flag

3 Answers

vote up 7 vote down check

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.

link|flag
1  
perlcc and corresponding B:: modules are maintained separately on CPAN by Reini Urban. – Alexandr Ciornii Jul 12 at 8:03
vote up 13 vote down

The canonical answer to this is MJD's "Why Not Translate Perl to C?".

link|flag
+1, enjoy your gold Perl expert badge. :) – Adam Bellaire Sep 10 at 13:44
vote up 7 vote down

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.

link|flag
Well, Perl has fixed data types, just not that many of them. The problem is that Perl is dynamic. It may compile differently depending on any number of factors, and that may change how the compiler acts for upcoming source code. – brian d foy Jul 13 at 21:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.