Re: compile perl

2008-01-17 Thread Diego .
sorry it was a typo!! I wrote on shell: BIN = $HOME/perl without $ On Jan 17, 2008 4:57 AM, h3xx <[EMAIL PROTECTED]> wrote: > On Jan 16, 6:47 am, [EMAIL PROTECTED] (Diego .) wrote: > > That's what i do: > > $BIN = $HOME/perl > > sh Configure -de -Dlocincpth="$BIN" -Dloclibpth="$BIN" > > -Dpref

Re: compile perl

2008-01-17 Thread h3xx
On Jan 16, 6:47 am, [EMAIL PROTECTED] (Diego .) wrote: > That's what i do: > $BIN = $HOME/perl > sh Configure -de -Dlocincpth="$BIN" -Dloclibpth="$BIN" > -Dprefix="$BIN/perl5" -Dusethreads > make > make install > > Thanks for all Is this exactly what the shell interprets? If so, there is a simple

Re: compile perl

2008-01-17 Thread Diego .
Hi Tom. > Well, "works fine" is good for so long as it lasts. Still, I wonder: > How do you know your Perl programs do what they should, when you know > your perl binary doesn't do what it should? Could the test that failed > have been trying to do the same thing that you're having trouble > doing

Re: compile perl

2008-01-16 Thread Tom Phoenix
On Jan 16, 2008 8:23 AM, Diego . <[EMAIL PROTECTED]> wrote: > yes, make test reports all tests passed when compiling 5.8.8 on both ( > fedora 4 and 6 ) but when i compible 5.6.2 on fedora 6 y get some > errors on test but threads works fine even with some tests failed. Well, "works fine" is good

Re: compile perl

2008-01-16 Thread Diego .
yes, make test reports all tests passed when compiling 5.8.8 on both ( fedora 4 and 6 ) but when i compible 5.6.2 on fedora 6 y get some errors on test but threads works fine even with some tests failed. On Jan 16, 2008 4:50 PM, Tom Phoenix <[EMAIL PROTECTED]> wrote: > On Jan 16, 2008 4:47 AM, D

Re: compile perl

2008-01-16 Thread Tom Phoenix
On Jan 16, 2008 4:47 AM, Diego . <[EMAIL PROTECTED]> wrote: > i'm trying to compile perl 5.8.8 Does it pass all tests, when you run 'make test'? Cheers! --Tom Phoenix Stonehenge Perl Training -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http:

Re: Compile perl into binary code for speed increase?

2007-06-24 Thread [EMAIL PROTECTED]
On Jun 23, 12:04 pm, [EMAIL PROTECTED] (Howa) wrote: > > Are there any method to compile the perl script for performance > increase, sth similar to mod_perl? pperl -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: Compile perl into binary code for speed increase?

2007-06-23 Thread Tom Phoenix
On 6/23/07, howa <[EMAIL PROTECTED]> wrote: Are there any method to compile the perl script for performance increase, Certainly, dozens. Fortunately for everyone involved, all of these methods are applied automatically every time you run your program, so every Perl program always runs at top s

Re: Compile perl into binary code for speed increase?

2007-06-23 Thread Chas Owens
On 6/23/07, howa <[EMAIL PROTECTED]> wrote: Hello, Are there any method to compile the perl script for performance increase, sth similar to mod_perl? but my script is run from command line... thanks. Only in startup costs (and over the course of a long running program these are minimal). Ta

Re: Compile perl code/files via STDIN

2005-02-02 Thread Dave Gray
> yes that is exactly what i mean. i want to do somthing like this: > > $ perl - c > print "Test\n"; > > and now i want to get the infos of the compilation (sytax ok or errors...). > after that i want to put the next perl code into the > process, i don't want to close the

Re: Compile perl code/files via STDIN

2005-02-02 Thread Michael Seele
yes that is exactly what i mean. i want to do somthing like this: $ perl - c print "Test\n"; and now i want to get the infos of the compilation (sytax ok or errors...). after that i want to put the next perl code into the process, i don't want to close the process and reopen a new. i

Re: Compile perl code/files via STDIN

2005-02-01 Thread Dave Gray
> i want to open a perl process and enter the code/files to compile via > STDIN. i know it is possible. but how? > does somebody know a tutorial or something like this which explains how > i can compile perl code via STDIN? $ perl print "Hello from STDIN\n"; ^D Hello from STDIN $ If the answers

Re: Compile perl code/files via STDIN

2005-02-01 Thread JupiterHost.Net
Michael Seele wrote: hi, Hello, i want to open a perl process and enter the code/files to compile via STDIN. i know it is possible. but how? does somebody know a tutorial or something like this which explains how i can compile perl code via STDIN? Do you mean: perl -e 'print "Hi\n";' perl script