Chavez12 has asked for the wisdom of the Perl Monks concerning the following question:

I tried compiling a Perl/Tk program with perlcc...but I never get an executable any suggestions?
perlcc -I/h/COE/Comp/PERL/lib/perl5/5.6.0:/h/COE/Comp/PERL/lib/perl5/s +ite_perl/5.6.0/sun4-solaris -MO=CC COMDACRunPrepare.pl

Edit by tye, add CODE tags

Replies are listed 'Best First'.
Re: Compiling Perl/Tk with perlcc
by strat (Canon) on Mar 13, 2003 at 11:15 UTC
    perlcc ist somehow still experimental. For compiling perl code, I use PAR which works fine in the most cases.

    If you want to write Tk-Scripts using Scrolled or the like, sometimes there comes an errormessage like:

    Can't locate Tk/AddScrollbars.pm in @INC (...
    The reason is that the Module Module::ScanDeps doesn't find the .al-Files yet. Either require them or copy the code from these files to one of your Modules.

    Best regards,
    perl -e "s>>*F>e=>y)\*martinF)stronat)=>print,print v8.8.8.32.11.32"

      Sorry for the composition of my question! I'm a newbie at the arts of the camel! Thanks for your replies! Rich