Perl and EXE-Files

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jan

    Perl and EXE-Files

    Hi!
    I tested Perl2Exe and PerlApp, but the full versions are too expensive
    for me...
    Is there any cheap way to convert source code and modules to one
    freestanding .EXE-File (Win32)?
    Jan
  • Andrew Shitov

    #2
    Re: Perl and EXE-Files

    > Is there any cheap way to convert source code and modules to one[color=blue]
    > freestanding .EXE-File (Win32)?[/color]


    There is no such a compiler. Even if it is very expencive noone can be
    sure that .exe code will work properly. Perl is dinamic language and it
    is almost unpossible to convert it to executable without havin an
    interpreter core in resulting code.

    By the way, Perl 6 may be considered as a exe-compiler if your main goal
    of convertiong perl->exe is to increase speed of the programme.

    Comment

    • Alan Stewart

      #3
      Re: Perl and EXE-Files

      On Mon, 20 Oct 2003 10:21:34 +0400, Andrew Shitov <andy@shitov.ru >
      wrote:
      [color=blue][color=green]
      >> Is there any cheap way to convert source code and modules to one
      >> freestanding .EXE-File (Win32)?[/color]
      >
      >
      >There is no such a compiler. Even if it is very expencive noone can be
      >sure that .exe code will work properly. Perl is dinamic language and it[/color]

      True, there is no such reliable compiler.
      [color=blue]
      >is almost unpossible to convert it to executable without havin an
      >interpreter core in resulting code.
      >[/color]

      however, neither Perl2Exe or PerlApp is a compiler. They both package
      the source and modules and an interpreter core into one .exe that runs
      just as the original source does.

      And the Perl Archive Toolkit (PAR) which is on CPAN also does the same
      for the low, low price of $0.

      Alan Stewart

      PS. why do these questions always come in waves??? Obviously some
      readers don't even read the last few days before posting.


      Comment

      • beetle

        #4
        Re: Perl and EXE-Files

        On Mon, 20 Oct 2003 18:00:54 -0700, Alan Stewart wrote:
        [color=blue]
        > On Mon, 20 Oct 2003 10:21:34 +0400, Andrew Shitov <andy@shitov.ru >
        > wrote:
        >[color=green][color=darkred]
        >>> Is there any cheap way to convert source code and modules to one
        >>> freestanding .EXE-File (Win32)?[/color]
        >>
        >>
        >>There is no such a compiler. Even if it is very expencive noone can be
        >>sure that .exe code will work properly. Perl is dinamic language and it[/color]
        >
        > True, there is no such reliable compiler.
        >[color=green]
        >>is almost unpossible to convert it to executable without havin an
        >>interpreter core in resulting code.
        >>[/color]
        >
        > however, neither Perl2Exe or PerlApp is a compiler. They both package
        > the source and modules and an interpreter core into one .exe that runs
        > just as the original source does.
        >
        > And the Perl Archive Toolkit (PAR) which is on CPAN also does the same
        > for the low, low price of $0.
        >
        > Alan Stewart
        >
        > PS. why do these questions always come in waves??? Obviously some
        > readers don't even read the last few days before posting.[/color]

        There is also PerlBin. However it doesn't package the script into
        one file. It copies all the needed files into a folder.

        Comment

        Working...