freeze tool like perl2exe?

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

    #1

    freeze tool like perl2exe?

    I am looking for a freeze tool for Python that is similar to perl2exe
    in that I can "compile" a script on one platform that is built for
    another. Basically, I would like to be able to build a Python script
    for Solaris using my Windows workstation. Is there any tool that fits
    the bill?

    Thanks,
    Jerry

  • Jarek Zgoda

    #2
    Re: freeze tool like perl2exe?

    Jerry napisal:
    [color=blue]
    > I am looking for a freeze tool for Python that is similar to perl2exe
    > in that I can "compile" a script on one platform that is built for
    > another. Basically, I would like to be able to build a Python script
    > for Solaris using my Windows workstation. Is there any tool that fits
    > the bill?[/color]

    AFAIK Python tools like py2exe tend to bundle together whole VM
    (interpreter + all needed library modules) along with your code. Anyway,
    I didn't use (nor even find) anything similar.

    --
    Jarek Zgoda

    Comment

    • utabintarbo

      #3
      Re: freeze tool like perl2exe?

      CX_Freeze?



      Comment

      • John Bokma

        #4
        Re: freeze tool like perl2exe?

        Jarek Zgoda <jzgoda@o2.usun .pl> wrote:
        [color=blue]
        > Jerry napisal:
        >[color=green]
        >> I am looking for a freeze tool for Python that is similar to perl2exe
        >> in that I can "compile" a script on one platform that is built for
        >> another. Basically, I would like to be able to build a Python script
        >> for Solaris using my Windows workstation. Is there any tool that fits
        >> the bill?[/color]
        >
        > AFAIK Python tools like py2exe tend to bundle together whole VM
        > (interpreter + all needed library modules) along with your code. Anyway,
        > I didn't use (nor even find) anything similar.[/color]

        Afaik perl2exe and the free PAR tool do this as well (I am sure about
        PAR).

        --
        John MexIT: http://johnbokma.com/mexit/
        personal page: http://johnbokma.com/
        Experienced programmer available: http://castleamber.com/
        Happy Customers: http://castleamber.com/testimonials.html

        Comment

        • Jerry

          #5
          Re: freeze tool like perl2exe?

          I did look at cx_Freeze at one point in time, but the documentation on
          their site is pretty sparse and doesn't actually mention being able to
          build for a different platform. I'll take another look. Thanks.

          --
          Jerry

          Comment

          Working...