Usage of Perlcc

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kriz4321
    New Member
    • Jan 2007
    • 48

    #1

    Usage of Perlcc

    Hi all,
    I have a simple .pl program which I need to convert to EXE... It has no modules used but when I try to use perlcc it gives following error.. Iam trying the same in windows machine... The main purpse of doing the same is others should not have option to see my code.. Anyother way of achieving the same without using perlcc also will be helpfull.

    c:\perl\bin\per lcc.bat -o get getcall.pl
    Note (probably harmless): No library found for 'oldnames.lib'
    Note (probably harmless): No library found for 'kernel32.lib'
    Note (probably harmless): No library found for 'user32.lib'
    Note (probably harmless): No library found for 'gdi32.lib'
    Note (probably harmless): No library found for 'winspool.lib'
    Note (probably harmless): No library found for 'comdlg32.lib'
    Note (probably harmless): No library found for 'advapi32.lib'
    Note (probably harmless): No library found for 'shell32.lib'
    Note (probably harmless): No library found for 'ole32.lib'
  • mohanprasadgutta
    New Member
    • Dec 2007
    • 33

    #2
    You can make use of perl2exe utility to convert a perl script to an executable.
    Below link will be helpful for you.
    http://www.indigostar. com/perl2exe.htm

    Comment

    Working...